Skip to content

Instantly share code, notes, and snippets.

@vladimir-e
Created March 31, 2020 16:19
Show Gist options
  • Save vladimir-e/36710d6914bf550ef8236274d7fcb3fb to your computer and use it in GitHub Desktop.
Save vladimir-e/36710d6914bf550ef8236274d7fcb3fb 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 painterMachine = Machine({
id: 'Painter',
initial: 'new-painter',
context: {
retries: 0
},
states: {
"new-painter": {
on: {
APPROVE: 'approved',
DECLINE: 'archived'
}
},
approved: {
on: {
"SUBMIT-BG-CHECK": 'background-check'
}
},
"background-check": {
on: {
PASS: 'ready',
DENY: 'archived',
CANCEL: 'archived'
}
},
ready: {
type: 'final'
},
archived: {
type: 'final'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment