Last active
April 30, 2020 17:24
-
-
Save plugboy/18029be835fa8f17a411cdc0d3c558cf to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains 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 stateMachine = Machine( | |
{ | |
id: 'stateMachine', | |
initial: 'idle', | |
context: { | |
file: undefined, | |
svg: undefined, | |
error: undefined | |
}, | |
states: { | |
idle: { | |
on: { | |
click: { | |
target: 'idle', | |
}, | |
change: { | |
target: 'filePicked', | |
} | |
} | |
}, | |
filePicked: { | |
}, | |
readFile: { | |
}, | |
wrongFileType: { | |
}, | |
fileLoaded: { | |
}, | |
loadFailed: { | |
} | |
} | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment