Created
August 15, 2020 17:45
-
-
Save whs/f375627998cd36b444b76cfba19d4f5f 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
Machine({ | |
id: 'loading', | |
initial: 'hide', | |
states: { | |
hide: { | |
on: { | |
SHOW_NOW: 'show', | |
SHOW: { | |
actions: send('SHOW_NOW', { delay: 50, id: 'show' }), | |
}, | |
HIDE: { | |
actions: actions.cancel('show'), | |
}, | |
}, | |
}, | |
show: { | |
on: { | |
HIDE_NOW: 'hide', | |
HIDE: { | |
actions: send('HIDE_NOW', { delay: 1000, id: 'hide' }), | |
}, | |
SHOW: { | |
actions: actions.cancel('hide'), | |
}, | |
}, | |
}, | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment