Created
January 4, 2022 20:36
-
-
Save robertpenner/d0a03b1a23aff2adf714409d330ee735 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or 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 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