Skip to content

Instantly share code, notes, and snippets.

@afbroman
Created August 3, 2020 23:19
Show Gist options
  • Save afbroman/4fbbbf3767412486c8d745dd883fb8a9 to your computer and use it in GitHub Desktop.
Save afbroman/4fbbbf3767412486c8d745dd883fb8a9 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const displayMachine = Machine({
initial: "hidden",
states: {
hidden: {
on: {
TURN_ON: "visible",
},
},
visible: {
type: "parallel",
states: {
on: {
TURN_OFF: "hidden",
},
mode: {
initial: "light",
states: {
light: {
on: {
SWITCH: "dark",
},
},
dark: {
on: {
SWITCH: "light",
},
},
},
},
brightness: {
initial: "bright",
states: {
bright: {
after: {
TIMEOUT: "dim",
},
},
dim: {
on: {
SWITCH: "bright",
},
},
},
},
},
},
},
delays: {
TIMEOUT: 5000,
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment