Created
May 21, 2020 15:54
-
-
Save signaes/82be2d526ec0f96f00468a3ce704f115 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 fetchAccount = () => { | |
return Promise.resolve() | |
} | |
const assignAccount = () => {} | |
const handleFetchAccountError = () => {} | |
const financesDashboardMachineConfig = { | |
initial: 'dashboard', | |
context: {}, | |
states: { | |
dashboard: { | |
type: 'parallel', | |
states: { | |
idle: {}, | |
loading: { | |
invoke: { | |
id: 'fetchAccount', | |
src: 'fetchAccount', | |
onDone: { | |
target: 'idle', | |
actions: 'assignAccount' | |
}, | |
onError: { | |
target: 'idle', | |
actions: 'handleFetchAccountError', | |
}, | |
} | |
}, | |
}, | |
} | |
} | |
} | |
const financesDashboardMachineOptions = { | |
actions: { | |
fetchAccount, | |
assignAccount, | |
handleFetchAccountError, | |
}, | |
} | |
const financesDashboardMachine = Machine( | |
financesDashboardMachineConfig, | |
financesDashboardMachineOptions, | |
); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment