Last active
November 13, 2019 20:23
-
-
Save MoonTahoe/db7465c3b8ead4c02f13f4ef848e264f to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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