Last active
May 31, 2021 03:57
-
-
Save alexreardon/e8a08f5510816fb2ca389543424e7eda 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: 'save-button', | |
| initial: 'hiding', | |
| states: { | |
| hiding: { | |
| on: { | |
| SHOW: 'waiting', | |
| }, | |
| }, | |
| waiting: { | |
| // while waiting we can jump straight to the confirmation | |
| on: { | |
| SAVED: 'showing-confirmation', | |
| }, | |
| after: { | |
| // using this approach for the timer as it works nicer with the xstate visualizer devtool | |
| 2000: 'showing-invitation', | |
| }, | |
| }, | |
| 'showing-invitation': { | |
| on: { | |
| SAVED: 'showing-confirmation', | |
| }, | |
| }, | |
| 'showing-confirmation': {}, | |
| }, | |
| on: { | |
| HIDE: 'hiding', | |
| }, | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment