Skip to content

Instantly share code, notes, and snippets.

@lvdang
Last active May 12, 2020 06:09
Show Gist options
  • Save lvdang/c7875c48ebc5bd84e7b70d2be82f4532 to your computer and use it in GitHub Desktop.
Save lvdang/c7875c48ebc5bd84e7b70d2be82f4532 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: 'echo',
initial: 'listening',
states: {
listening: {
on: {
SPEAK: {actions: send('ECHO')}, // send to 'ECHO' event
ECHO: {
actions: () => {
console.log('echo')
},
type: 'stop'
}
}
},
stop: {
on: {
ECHO: {
actions: () => {
console.log('second echo')
}
}
}
}
}
}, {
actions: {
logBroken: (context, event) => {console.log(`yo I am broken in ${event.location}`)}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment