Skip to content

Instantly share code, notes, and snippets.

@lozandier
Last active October 17, 2020 09:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lozandier/1298a8e91d8ffd9bd4abdc7c34c09892 to your computer and use it in GitHub Desktop.
Save lozandier/1298a8e91d8ffd9bd4abdc7c34c09892 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const fetchMachine = Machine({
id: 'ColorPickerStateMachine',
initial: 'initializing',
context: {
colors: [],
selectedColor: null,
noColorSelectedAllowed: false,
colorsPickedPriorToLastCancellation: [],
colorsPickedPriorToLastSubmission: []
},
states: {
initializing: {
on: {
'': [{target: 'idle', cond: 'colorsAreDefined'}],
INITIALIZED: 'idle'
}
},
idle: {
id: 'idle',
on: {
CANCEL: {target: 'idle', actions: ['processCancellation']},
SUBMIT: {
target: 'idle',
actions: ['processSubmisison'],
cond: 'validColorSelected'
},
},
}
}
}, {
guards: {
colorsAreDefined: () => true,
validColorSelected: () => false,
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment