Skip to content

Instantly share code, notes, and snippets.

@vunguyentuan
Created October 18, 2020 12:05
Show Gist options
  • Save vunguyentuan/ad56460bdea2edf8f16491f4fdf56042 to your computer and use it in GitHub Desktop.
Save vunguyentuan/ad56460bdea2edf8f16491f4fdf56042 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const taskMachine = Machine({
id: 'toggle',
initial: 'todo',
context: {
deleted: false,
},
states: {
todo: {
on: {
START: 'inProgress',
DELETE: 'deleted',
},
},
inProgress: {
on: {
DONE: 'done',
CANCEL: 'canceled',
},
},
done: {
on: { DELETE: 'deleted' },
},
canceled: {
on: { DELETE: 'deleted' },
},
deleted: {
entry: assign({ deleted: true }),
type: 'final',
},
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment