Skip to content

Instantly share code, notes, and snippets.

@janczizikow
Created January 6, 2020 10:49
Show Gist options
  • Select an option

  • Save janczizikow/a096f1f7e8d5194a4348a7317091c077 to your computer and use it in GitHub Desktop.

Select an option

Save janczizikow/a096f1f7e8d5194a4348a7317091c077 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const registerMachine = Machine({
id: 'intercomLogin',
initial: 'unregistered',
context: {
retries: 0
},
states: {
unregistered: {
on: {
confirmEmail: 'isConfirmed'
}
},
isConfirmed: {
on: {
updateEmail: 'isUpdating',
}
},
isUpdating: {
on: {
confirmEmail: 'emailUpdated'
}
},
emailUpdated: {
on: {
updateIntercomInfo: 'isConfirmed',
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment