Skip to content

Instantly share code, notes, and snippets.

@robertpenner
Created January 4, 2022 20:36
Show Gist options
  • Save robertpenner/d0a03b1a23aff2adf714409d330ee735 to your computer and use it in GitHub Desktop.
Save robertpenner/d0a03b1a23aff2adf714409d330ee735 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const machine = Machine({
id: "Planning Poker",
initial: "playing",
states: {
playing: {
initial: "discussing story",
states: {
"discussing story": {
on: {
"REVEAL ESTIMATES": {
target: "comparing estimates",
},
},
},
"comparing estimates": {
on: {
"ESTIMATES DIFFER": {
target: "discussing story",
},
"ESTIMATES AGREE": {
target: "story estimated",
},
},
},
"story estimated": {
on: {
"NEXT STORY": {
target: "discussing story",
},
"NO MORE STORIES": {
target: "#Planning Poker.done",
},
},
},
},
},
done: {},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment