Skip to content

Instantly share code, notes, and snippets.

@altaywtf
Created October 13, 2020 06:03
Show Gist options
  • Save altaywtf/48a657568f6b2dc35fb023fdf25dd225 to your computer and use it in GitHub Desktop.
Save altaywtf/48a657568f6b2dc35fb023fdf25dd225 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const paymentMachine = Machine({
id: 'payment',
initial: 'init',
context: {
paymentToken: null,
},
states: {
init: {
on: {
CREATE_PAYMENT: 'creation',
VERIFY_PAYMENT: 'verification',
},
},
creation: {
on: {
CREATE_PAYMENT_SUCCESS: 'verification',
CREATE_PAYMENT_FAILURE: 'error',
},
},
verification: {
on: {
VERIFY_PAYMENT: 'verification',
VERIFY_PAYMENT_SUCCESS: 'success',
VERIFY_PAYMENT_FAILURE: 'error',
},
},
success: {
type: 'final',
},
error: {
type: 'final',
},
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment