Last active
May 26, 2021 22:43
-
-
Save ducin/d0dbaec7069c1e79114f97f93eaea2af to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
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
Machine({ | |
id: 'AuthorizeDevice', | |
initial: 'chooseMethod', | |
states: { | |
chooseMethod: { | |
on: { | |
CHOOSE_ADD_DEVICE: 'addDeviceForm', | |
} | |
}, | |
addDeviceForm: { | |
on: { | |
SUBMIT_DEVICE_NAME: "addDeviceToken" | |
} | |
}, | |
addDeviceToken: { | |
on: { | |
CANCEL_CHOICE: 'chooseMethod', | |
RESET_TOKEN: "addDeviceToken", | |
SUBMIT: "addDeviceConfirmation" | |
} | |
}, | |
addDeviceConfirmation: { | |
on: { | |
CONFIRM_DEVICE_ADDED: "addDeviceSuccess" | |
} | |
}, | |
addDeviceSuccess: { | |
type: 'final', | |
}, | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment