Skip to content

Instantly share code, notes, and snippets.

@RafalFilipek
Created May 5, 2020 19:29
Show Gist options
  • Save RafalFilipek/9da10999c917c1e1add641c183391466 to your computer and use it in GitHub Desktop.
Save RafalFilipek/9da10999c917c1e1add641c183391466 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const stepTransitions = Machine({
initial: "idle",
states: {
idle: {
id: "idle",
on: {
START: { target: "inProgress" },
},
},
inProgress: {
type: "parallel",
onDone: {
target: "#idle",
},
states: {
delay: {
initial: "active",
states: {
active: {
after: {
1000: { target: "ready" },
},
},
ready: { type: "final" },
},
},
stepState: {
initial: "loading",
states: {
loading: {
on: {
READY: { target: "ready" },
},
},
ready: { type: "final" },
},
},
},
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment