Skip to content

Instantly share code, notes, and snippets.

@TheDutchCoder
Last active September 22, 2020 17:08
Show Gist options
  • Save TheDutchCoder/79206a1456c91f19724e3beff1fd13c2 to your computer and use it in GitHub Desktop.
Save TheDutchCoder/79206a1456c91f19724e3beff1fd13c2 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const signupMachine = Machine({
id: 'signup',
initial: 'ready',
states: {
ready: {
initial: 'email',
states: {
email: {
on: {
SUBMIT: '#signup.awaitingResponse.email',
},
type: 'parallel',
initial: 'email',
states: {
email: {},
first: {},
last: {},
},
},
code: {
on: {
SUBMIT: '#signup.awaitingResponse.code'
}
},
},
},
awaitingResponse: {
initial: 'email',
states: {
email: {
on: {
SUCCESS: '#signup.ready.code',
ERROR: '#signup.ready.email',
}
},
code: {
on: {
SUCCESS: '#signup.dashboard',
ERROR: '#signup.ready.code',
}
},
},
},
dashboard: { type: 'final' }
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment