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 radioItem = Machine( | |
{ | |
id: 'checkbox', | |
initial: 'nix', | |
states: { | |
nix: { | |
on: { | |
DISABLE: 'nixDisabled', | |
SELECT: 'aver', | |
}, |
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 radioGroup = Machine( | |
{ | |
id: "radioGroup", | |
initial: "emptied", | |
context: { | |
selected: "", | |
}, | |
states: { | |
emptied: { | |
on: { |
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 spinnerMachine = Machine({ | |
id: 'spinner', | |
initial: 'stopped', | |
states: { | |
stopped: { | |
on: { | |
FOOT_DOWN: 'running', | |
}, | |
}, | |
running: { |
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 spinnerMachine = Machine({ | |
id: 'spinner', | |
initial: 'powerStripOff', | |
states: { | |
powerStripOff: { | |
on: { | |
SWITCH_ON: 'powerStripOn', | |
}, | |
}, | |
powerStripOn: { |
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
// source: https://egghead.io/lessons/xstate-simplify-state-explosion-in-xstate-through-hierarchical-states | |
const door = Machine({ | |
id: 'door', | |
initial: 'locked', | |
states: { | |
locked: { | |
id: 'locked', | |
on: { | |
UNLOCK: 'unlocked' | |
} |
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
// orig: https://github.com/eggheadio/eggheadio-course-notes/blob/6a4bcc537c0aa6c301d26e0c929921c18de59ef9/introduction-to-state-machines-using-xstate/notes/15_xstate-simplify-state-explosion-in-xstate-through-hierarchical-states.md | |
const powerstrip = Machine({ | |
id: 'powerstrip', | |
initial: 'powerstripOff', | |
states: { | |
powerstripOff: { | |
id: 'basementPowerstriphOff', | |
on: { | |
SWITCH_ON: 'poweredOn' | |
} |
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
// orig: https://xstate.js.org/viz/?gist=41fb3365af80efff10afb782e9cf9e61 | |
const powerstrip = Machine({ | |
id: 'powerstrip', | |
initial: 'powerstripOff', | |
states: { | |
powerstripOff: { | |
id: 'basementPowerstriphOff', | |
on: { | |
SWITCH_ON: 'poweredOn' | |
} |
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
// visulizer will not show child machine :( | |
const childMachine = Machine({ | |
id: "child", | |
initial: "step1", | |
states: { | |
step1: { | |
on: { STEP: "step2" } | |
}, | |
step2: { |
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
// Demostrate `raise` action | |
const stubbornMachine = Machine({ | |
id: 'raisedmo', | |
initial: 'entry', | |
states: { | |
entry: { | |
on: { | |
STEP: { | |
target: 'middle', | |
}, |
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 verifyChoice = Machine({ | |
id: 'vc', | |
type: 'parallel', | |
states: { | |
choiceA: { | |
initial: 'empty', | |
states: { | |
empty: { | |
on: { | |
CLICK: 'selected', |