Created
June 19, 2020 06:40
-
-
Save me7/47bc26a071618951a465d9f24ed026e6 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains 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 garageDoorMachine = Machine( | |
{ | |
id: "garageDoor", | |
initial: "idle", | |
context: { | |
pctOpen: 100, | |
interval: 250, | |
isOpen: true, | |
}, | |
states: { | |
idle: { | |
initial: "waiting", | |
on: { | |
PRESS_DOWN: { | |
target: "#garageDoor.idle.lowering", | |
cond: ({ pctOpen }) => pctOpen > 0, | |
}, | |
PRESS_UP: { | |
target: "#garageDoor.idle.rising", | |
cond: ({ pctOpen }) => pctOpen < 100, | |
}, | |
}, | |
states: { | |
waiting: {}, | |
lowering: { | |
initial: "moving", | |
states: { | |
moving: { | |
type: "atomic", | |
invoke: { | |
src: ({ interval }) => (callBack) => { | |
const intervalID = setInterval(() => { | |
callBack("DECREASE_OPEN_PCT") | |
}, interval) | |
return () => clearInterval(intervalID) | |
}, | |
}, | |
on: { | |
PRESS_DOWN: "#garageDoor.idle", | |
DECREASE_OPEN_PCT: { | |
actions: "closing", | |
}, | |
"": { | |
target: "closed", | |
cond: "isClosed", | |
}, | |
}, | |
activities: ["beeping"], | |
}, | |
closed: { | |
type: "final", | |
}, | |
}, | |
}, | |
rising: { | |
initial: "moving", | |
states: { | |
moving: { | |
invoke: { | |
src: ({ interval }) => (callBack) => { | |
const intervalID = setInterval(() => { | |
callBack("INCREASE_OPEN_PCT") | |
}, interval) | |
return () => clearInterval(intervalID) | |
}, | |
}, | |
on: { | |
PRESS_UP: "#garageDoor.idle", | |
INCREASE_OPEN_PCT: { | |
actions: "opening", | |
}, | |
"": { | |
target: "open", | |
cond: "isOpen", | |
}, | |
}, | |
activities: ["beeping"], | |
}, | |
open: { | |
type: "final", | |
}, | |
}, | |
}, | |
}, | |
}, | |
}, | |
}, | |
{ | |
guards: { | |
isOpen: ({ pctOpen }) => pctOpen >= 100, | |
isClosed: ({ pctOpen }) => pctOpen <= 0, | |
}, | |
actions: { | |
setMoving: assign((context) => ({ ...context, isOpen: "moving" })), | |
opening: assign({ | |
pctOpen: ({ pctOpen, interval }) => { | |
// console.log("opening", pctOpen) | |
// should rise are a rate of 25% per second | |
return pctOpen + 25 / (1000 / interval) | |
}, | |
}), | |
closing: assign({ | |
pctOpen: ({ pctOpen, interval }) => { | |
// console.log("closing ", pctOpen) | |
// should close are a rate of 25% per second | |
return pctOpen - 25 / (1000 / interval) | |
}, | |
}), | |
}, | |
activities: { | |
beeping: (context, ...args) => { | |
// Start the beeping activity | |
const interval = setInterval(() => { | |
console.log("BEEP!") | |
}, 1000) | |
// Return a function that stops the beeping activity | |
return () => clearInterval(interval) | |
}, | |
}, | |
}, | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment