Skip to content

Instantly share code, notes, and snippets.

@lbdremy
Last active September 15, 2021 16:36
Show Gist options
  • Save lbdremy/365ae55ab3e7b3fa4f001f15d929ceb9 to your computer and use it in GitHub Desktop.
Save lbdremy/365ae55ab3e7b3fa4f001f15d929ceb9 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const operatorMachine = Machine({
id: 'operator',
initial: 'inactive',
states: {
inactive: {
on: {
SET_AS_VISIBLE: 'visible',
ONBOARD: 'onboarded'
}
},
disabled: {
end: 'final'
},
hidden: {
on: {
ONBOARD: 'onboarded',
SET_AS_VISIBLE: 'visible',
DISABLE: 'disabled'
}
},
visible: {
on: {
ONBOARD: 'onboarded',
HIDE: 'hidden'
}
},
onboarded: {
on: {
SET_AS_VISIBLE: 'visible',
HIDE: 'hidden'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment