Last active
November 2, 2019 18:44
-
-
Save agzamovr/8695f937f52a2a150c16988391aa6bfd to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions | |
// - XState (all XState exports) | |
const fetchMachine = Machine({ | |
id: 'order', | |
initial: 'new', | |
context: { | |
retries: 0 | |
}, | |
states: { | |
'new': { | |
on: { | |
SEND_OFFER: 'pending', | |
REMOVE: 'inactive', | |
} | |
}, | |
canceled: { | |
on: { | |
SEND_OFFER: 'pending', | |
REMOVE: 'inactive' | |
} | |
}, | |
pending: { | |
on: { | |
ACCEPTED_BY_CARRIER: 'accepted', | |
DECLINED_BY_CARRIER: 'declined', | |
CANCEL: 'canceled' | |
} | |
}, | |
declined: { | |
on: { | |
SEND_OFFER: 'pending' | |
} | |
}, | |
accepted: { | |
on: { | |
PICK_UP: 'picked_up', | |
CANCEL: 'canceled', | |
} | |
}, | |
picked_up: { | |
on: { | |
DELIVER: 'delivered', | |
CANCEL: 'canceled', | |
} | |
}, | |
delivered: { | |
on: { | |
CANCEL: 'canceled', | |
INVOICED_BY_CARRIER: 'invoiced', | |
PAID: 'paid', | |
CANCEL: 'canceled', | |
} | |
}, | |
invoiced: { | |
on: { | |
PAID: 'paid', | |
CANCEL: 'canceled' | |
} | |
}, | |
paid: { | |
on: { | |
CANCEL: 'canceled' | |
} | |
}, | |
inactive: { | |
on: { | |
RESTORE: 'new' | |
} | |
} | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment