Created
October 18, 2020 12:05
-
-
Save vunguyentuan/ad56460bdea2edf8f16491f4fdf56042 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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