Skip to content

Instantly share code, notes, and snippets.

@chuanqisun
Last active September 9, 2019 17:37
Show Gist options
  • Save chuanqisun/8f2c9f0ed5e697c95b36af2cbc2bdbfb to your computer and use it in GitHub Desktop.
Save chuanqisun/8f2c9f0ed5e697c95b36af2cbc2bdbfb to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const fetchMachine = Machine({
id: 'fetch',
initial: 'Start',
states: {
"Start": {
on: {
CREATE: 'Private editing',
}
},
"Private editing": {
on: {
"DONE EDIT": 'Private saved',
EDIT: 'Private editing',
DISCARD: 'Private saved',
}
},
"Private saved": {
on: {
"BEGIN EDIT": 'Private editing',
PUBLISH: 'Public saved',
}
},
"Public saved": {
on: {
"BEGIN EDIT": 'Public editing',
PUBLISH: 'Public saved',
UNPUBLISH: 'Private saved',
}
},
"Public editing": {
on: {
"DONE EDIT": 'Public saved',
EDIT: 'Public editing',
DISCARD: 'Public saved',
}
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment