Skip to content

Instantly share code, notes, and snippets.

@joelhooks
Last active May 28, 2020 00:39
Embed
What would you like to do?
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