Skip to content

Instantly share code, notes, and snippets.

@musikele
Created July 17, 2020 08:33
Show Gist options
  • Save musikele/afd33222b68a53bb7386af09642b1438 to your computer and use it in GitHub Desktop.
Save musikele/afd33222b68a53bb7386af09642b1438 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 fetchMachine = Machine({
id: 'soundManager',
initial: 'stop',
context: {
timer: 0
},
states: {
stop: {
on: {
PLAY: 'play'
}
},
play: {
on: {
STOP: 'stop',
PAUSE: 'pause',
SEEK: 'play'
}
},
pause: {
on: {
STOP: 'stop',
PLAY: 'play',
SEEK: {
target: 'pause',
actions: ['seek']
}
}
},
},
},{
actions: {
seek: (context, event) => {
context = event.second
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment