Skip to content

Instantly share code, notes, and snippets.

@thaerlabs
Created June 28, 2021 16:10
Show Gist options
  • Save thaerlabs/dd0f5704581ab809b398e73908af42d0 to your computer and use it in GitHub Desktop.
Save thaerlabs/dd0f5704581ab809b398e73908af42d0 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 draw = Machine({
id: 'draw',
initial: 'init',
context: {
points: []
},
states: {
init: {
on: {
LOAD: 'loading'
}
},
loading: {
on: {
LOADED: 'idle'
}
},
idle: {
on: {
START_DRAWING: 'drawing.ready'
}
},
drawing: {
initial: 'ready',
states: {
ready: {
on: {
ADD_POINT: {
target: 'active',
actions: 'addPoint'
}
}
},
active: {
on: {
ADD_POINT: [
{
target: 'complete',
actions: 'addPoint',
cond: 'drawingComplete'
},
{
actions: 'addPoint'
}
]
}
},
complete: {}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment