Last active
April 20, 2021 16:25
-
-
Save eszterkv/9e5ecb1141e1f3cfe1186be3953a71cb 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 signUp = Machine({ | |
id: 'signup', | |
initial: 'init', | |
context: { | |
retries: 0 | |
}, | |
states: { | |
init: { | |
on: { | |
WITH_EMAIL_SUCCESS: 'verify', | |
WITH_OAUTH_SUCCESS: 'searchCompany', | |
FAILURE: 'failure', | |
}, | |
}, | |
verify: { | |
on: { | |
SUCCESS: 'searchCompany', | |
FAILURE: 'failure' | |
} | |
}, | |
searchCompany: { | |
on: { | |
COMPANIES_FOUND: 'selectCompany', | |
FAILURE: 'failure' | |
}, | |
}, | |
selectCompany: { | |
on: { | |
COMPANY_SELECTED: 'confirmCompanyDetails', | |
FAILURE: 'failure', | |
}, | |
}, | |
confirmCompanyDetails: { | |
on: { | |
SUCCESS: 'success', | |
FAILURE: 'failure', | |
}, | |
}, | |
success: { | |
type: 'final' | |
}, | |
failure: { | |
} | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment