Skip to content

Instantly share code, notes, and snippets.

@aldulea
Created April 2, 2020 14:50
Show Gist options
  • Save aldulea/c244087d88acd1ab74206cc11104427b to your computer and use it in GitHub Desktop.
Save aldulea/c244087d88acd1ab74206cc11104427b 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({
"initial": "Achivments",
"states": {
"Achivments": {
on: { "Continue": "Reasons", "Stay": "Exit" },
},
"Reasons": {
on: {
"Technical": "Support",
"Time": "Pause",
"DifferentSolution": "Reward",
"Stay": "Exit"
},
},
"Pause": {
on: { "Continue": "Bummer", "PauseSubsciption": "Exit" },
},
"Support": {
on: { "Continue": "Bummer", "ContactSupport": "Exit" },
},
"Reward": {
on: { "Continue": "Bummer", "Redeem": "Exit" },
},
"Bummer": {
on: { "Continue": "Exit", "Stay": "Exit" },
},
"Exit": {
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment