Skip to content

Instantly share code, notes, and snippets.

@eszterkv
Last active April 20, 2021 16:25
Show Gist options
  • Save eszterkv/9e5ecb1141e1f3cfe1186be3953a71cb to your computer and use it in GitHub Desktop.
Save eszterkv/9e5ecb1141e1f3cfe1186be3953a71cb to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
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