Created
February 12, 2020 09:39
-
-
Save ajaychandran/e765536da44d0f87996481b9589f24c6 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 accountMachine = Machine( | |
{ | |
id: 'account', | |
initial: 'opened', | |
context: { | |
id: "1", | |
bank: 0 | |
}, | |
states: { | |
opened: { | |
on: { | |
BANK_CLOSED: { target: 'closed', actions: 'close' }, | |
BANK_LOCKED: { target: 'locked', actions: 'lock' }, | |
BANK_CREDITED: { actions: 'credit' } | |
} | |
}, | |
locked: { | |
on : { | |
BANK_UNLOCKED: 'opened' | |
} | |
}, | |
closed: { | |
type: 'final' | |
} | |
} | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment