Skip to content

Instantly share code, notes, and snippets.

@ddamico
Last active August 3, 2021 02:25
Show Gist options
  • Save ddamico/7e35a13188c8a7cb62cfc5dd02f0f16c to your computer and use it in GitHub Desktop.
Save ddamico/7e35a13188c8a7cb62cfc5dd02f0f16c to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const multiColoredBulbMachine = Machine({
id: 'multiColoredBulb',
initial: 'unlit',
context: {
color: '#fff'
},
states: {
lit: {
on: {
BREAK: 'broken',
TOGGLE: 'unlit',
CHANGE_COLOR: {
actions: ['changeColor']
}
}
},
unlit: {
on: {
BREAK: 'broken',
TOGGLE: 'lit'
}
},
broken: {
type: 'final'
}
},
strict: true
}, {
actions: {
changeColor: assign({
color: (context, event) => ({
color: event.color
})
})
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment