Created
October 29, 2020 00:18
-
-
Save bholmesdev/2dec07bedc22b9a9460b57f4369cd1b6 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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions | |
// - XState (all XState exports) | |
const multiStepCheckoutMachine = Machine({ | |
id: 'multiStepDigitalCheckout', | |
initial: 'incomplete', | |
context: { | |
step: 1, | |
showErrorBanner: false, | |
errorMessage: '', | |
}, | |
states: { | |
incomplete: { | |
on: { | |
ERRORS_CLEARED: 'complete', | |
SUBMIT: { | |
actions: ['touchAll', 'scrollToErrors'] | |
}, | |
} | |
}, | |
complete: { | |
on: { | |
ERRORS_FOUND: 'incomplete', | |
SUBMIT: [ | |
{ | |
cond: ({step}) => step === 1, | |
target: 'validating', | |
actions: 'validateUser' | |
}, | |
{ | |
cond: ({step}) => step === 2, | |
target: 'checkingOut', | |
actions: 'requestCheckout' | |
}, | |
] | |
} | |
}, | |
validating: { | |
entry: assign({ | |
showErrorBanner: false, | |
}), | |
on: { | |
VALID: { | |
target: 'incomplete', | |
actions: assign({ | |
step: 2, | |
}) | |
}, | |
INVALID: { | |
target: 'complete', | |
actions: assign({ | |
showErrorBanner: true, | |
errorMessage: 'contentfulKey.invalid' | |
}) | |
}, | |
} | |
}, | |
checkingOut: { | |
entry: assign({ | |
showErrorBanner: false, | |
}), | |
on: { | |
SUCCESS: { | |
target: 'success', | |
actions: assign({ | |
step: 3, | |
}) | |
}, | |
FAIL: { | |
target: 'complete', | |
actions: assign({ | |
showErrorBanner: true, | |
errorMessage: 'contentfulKey.apiFailure' | |
}) | |
} | |
} | |
}, | |
success: { type: 'final' } | |
}, | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment