Skip to content

Instantly share code, notes, and snippets.

@joelhooks
Last active May 28, 2020 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joelhooks/6d91786e869a47c7a38820700cdd2038 to your computer and use it in GitHub Desktop.
Save joelhooks/6d91786e869a47c7a38820700cdd2038 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 customer = Machine({
id: 'customer',
initial: 'anonymous',
context: {
retries: 0
},
states: {
anonymous: {
on: {
REGISTER: 'registered'
}
},
registered: {
on: {
TRIAL_START: 'trying',
PURCHASE: 'purchased'
}
},
trying: {
on: {
PURCHASE: 'purchased'
}
},
purchased: {
on: {
CANCEL: 'cancelled'
}
},
cancelled: {
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment