Skip to content

Instantly share code, notes, and snippets.

@njdancer
Last active October 8, 2019 00:36
Show Gist options
  • Save njdancer/9e269fa35dea454be5452fd2185cb7ad to your computer and use it in GitHub Desktop.
Save njdancer/9e269fa35dea454be5452fd2185cb7ad to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const sessionMachine = Machine({
states: {
check: {
},
onboarding: {
entry: "navigateToOnboarding",
on: {
"AGREE": {
actions: ["assignOnboarding"],
cond: "isVersionProvided",
target: "check"
},
},
},
termsAndConditions: {
entry: "navigateToTermsAndConditions",
on: {
"AGREE.TERMS_AND_CONDITIONS": {
actions: ["assignTermsAndConditions", "persistSession"],
cond: "isVersionProvided",
target: "termsAndConditionsAccepted",
},
},
},
locationServices: {
},
pushNotifications: {
}
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment