Skip to content

Instantly share code, notes, and snippets.

@MoonTahoe
Last active November 13, 2019 20:23
Show Gist options
  • Save MoonTahoe/db7465c3b8ead4c02f13f4ef848e264f to your computer and use it in GitHub Desktop.
Save MoonTahoe/db7465c3b8ead4c02f13f4ef848e264f to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const lightBulbMachine = Machine({
id: 'light',
initial: 'unlit',
context: {
color: "blue"
},
states: {
lit: {
on: {
TOGGLE:'unlit',
BREAK:'broken'
}
},
unlit: {
on: {
TOGGLE:'lit',
BREAK:'broken'
}
},
broken: {
entry: [
() => {
alert('ya basic')
window.location.refresh();
}
],
type: 'final'
}
},
on: {
CHANGE_COLOR: {
actions: [
assign({
color: (ctx, e) => e.color || 'green'
})
]
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment