Skip to content

Instantly share code, notes, and snippets.

@tiagonevestia
Created October 4, 2019 20:26
Show Gist options
  • Save tiagonevestia/e1a4130d849885bca206ea9a8eaff588 to your computer and use it in GitHub Desktop.
Save tiagonevestia/e1a4130d849885bca206ea9a8eaff588 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const videoMachine = Machine({
id: 'videoMachine',
initial: 'loading',
states: {
loading:{
on: {
LOADED: 'ready',
FAIL: 'failure'
}
},
ready:{
initial: 'paused',
states:{
paused: {
on: {
PLAY: 'playing'
}
},
playing: {
on:{
PAUSE: 'paused',
END: 'ended',
TIMING: 'playing'
}
},
ended: {
on: {
PLAY: 'playing'
}
}
}
},
failure: {
type: 'final'
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment