Last active
June 17, 2021 11:29
-
-
Save ruff3d/78d1e8722f187305ef3e5eab5dc7f079 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or 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: 'booking-state', | |
initial: 'new', | |
states: { | |
new: { | |
on: { 'Reserved': 'Reserved' }, | |
}, | |
'Reserved': { | |
on: { | |
'Booked': 'Booked', | |
'Offline': 'Offline', | |
'Deleted': 'Deleted', | |
}, | |
}, | |
'Booked': { | |
on: { | |
'Processing': 'Processing', | |
'Rejected': 'Rejected', | |
}, | |
}, | |
'Processing': { | |
on: { 'Approved': 'Approved' }, | |
}, | |
'Approved': { | |
on: { 'Sent': 'Sent' }, | |
}, | |
'Sent': { | |
on: { 'Canceled': 'Canceled' }, | |
}, | |
'Offline': { | |
on: { 'Done': 'Done' }, | |
}, | |
'Deleted': { | |
on: { 'Done': 'Done' }, | |
}, | |
}, | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment