Skip to content

Instantly share code, notes, and snippets.

@goleary
Created December 23, 2020 03:33
Show Gist options
  • Save goleary/96a3bc72fce16392950a19c3c51f5b0f to your computer and use it in GitHub Desktop.
Save goleary/96a3bc72fce16392950a19c3c51f5b0f to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const swipeBlockMachine = Machine({
id: 'swipeBlock',
initial: 'idle',
context: {
retries: 0
},
states: {
idle: {
on: {
TOUCH_START: 'touching'
}
},
touching: {
on:{
scrolling: 'blocking'
}
},
blocking: {
on: {
TOUCH_END: 'idle',
}
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment