Last active
September 15, 2021 16:36
-
-
Save lbdremy/365ae55ab3e7b3fa4f001f15d929ceb9 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or 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 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