Skip to content

Instantly share code, notes, and snippets.

@h-jennings
Last active November 7, 2019 21:09
Show Gist options
  • Save h-jennings/f520be8c786531e4ba364e7129fe95a8 to your computer and use it in GitHub Desktop.
Save h-jennings/f520be8c786531e4ba364e7129fe95a8 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const sliderMachine = new Machine({
id: 'sliderMachine',
initial: 'idle',
context: {},
states: {
idle:{
on: {
CLICK_RIGHT: {
target: 'nextSlide'
},
CLICK_LEFT: {
target: 'prevSlide'
},
COMPLETE: 'idle',
}
},
nextSlide: {
invoke: {
src: "handleSlideFn",
onDone: { target: 'idle'},
}
},
prevSlide: {
invoke: {
src: "handleSlideFn",
onDone: { target: 'idle'},
}
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment