Created
February 25, 2021 20:46
-
-
Save vignestion/9dbaa44cc00cf9cbe92e1ff59fcda17a 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 pizzaStateMachine = Machine({ | |
| id:'pizzaStateMachine', | |
| initial:'setType', | |
| context:{ | |
| statue:'Decideing', | |
| type:'Peperoni', | |
| toppings: 'Lotsa toppings', | |
| address:'My home address' | |
| }, | |
| states: { | |
| setType: { | |
| on: { | |
| NEXT: "setToppings" | |
| } | |
| }, | |
| setToppings: { | |
| on: { | |
| PREV:"setType", | |
| NEXT: "setAddress" | |
| } | |
| }, | |
| setAddress: { | |
| on: { | |
| PREV:"setToppings", | |
| NEXT: "setBaking" | |
| } | |
| }, | |
| setBaking: {}, | |
| } | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment