Skip to content

Instantly share code, notes, and snippets.

@whs
Created August 15, 2020 17:45
Show Gist options
  • Save whs/f375627998cd36b444b76cfba19d4f5f to your computer and use it in GitHub Desktop.
Save whs/f375627998cd36b444b76cfba19d4f5f to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
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