Last active
July 31, 2020 15:00
-
-
Save bholmesdev/5934da5961fc0105563cc35a57335032 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 submissionErrorEvent = { | |
target: '#idle.errorBannerShowing', | |
actions: assign({ | |
error: (_, event) => ({ | |
message: event.message, | |
type: 'submissionFailure' | |
}) | |
}) | |
} | |
const checkoutMachine = Machine({ | |
id: 'checkoutMachine', | |
initial: 'idle', | |
context: { | |
error: { | |
type: 'formIncomplete', | |
message: 'Complete this form, or so help me!' | |
} | |
}, | |
states: { | |
idle: { | |
id: 'idle', | |
initial: 'normal', | |
states: { | |
normal: {}, | |
errorBannerShowing: {} | |
}, | |
on: { | |
ERRORS_FOUND: { | |
// don't transition to errorBannerShowing yet; wait for user to attempt submission | |
actions: assign({ | |
error: (_, event) => ({ | |
message: event.message, | |
type: "formIncomplete" | |
}) | |
}) | |
}, | |
ERRORS_CLEARED: { | |
target: '.normal', | |
actions: assign({ | |
error: { | |
message: '', | |
type: '' | |
} | |
}) | |
}, | |
SUBMIT: [{ | |
target: 'submitting', | |
cond: 'formIsComplete' | |
}, { | |
target: '.errorBannerShowing', | |
}] | |
}, | |
}, | |
submitting: { | |
initial: 'creatingToken', | |
states: { | |
creatingToken: { | |
invoke: { | |
src: 'createToken', | |
onDone: 'checkingOut', | |
onError: submissionErrorEvent | |
} | |
}, | |
checkingOut: { | |
invoke: { | |
src: 'checkOut', | |
onDone: '#success', | |
onError: submissionErrorEvent | |
} | |
} | |
} | |
}, | |
success: { | |
id: 'success', | |
type: 'final' | |
} | |
} | |
}, | |
{ | |
guards: { | |
formIsComplete: ctx => ctx.error.type !== 'formIncomplete' | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment