Skip to content

Instantly share code, notes, and snippets.

@csellis
Created July 15, 2021 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save csellis/7cd621b378a876fddf5810d348180c0b to your computer and use it in GitHub Desktop.
Save csellis/7cd621b378a876fddf5810d348180c0b to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const stripeMachine = Machine({
id: 'stripe',
initial: 'fresh',
context: {
retries: 0
},
states: {
fresh: {
on: {
SELECTPLAN: 'loading'
}
},
loading: {
on: {
RESOLVE: 'make_payment',
REJECT: 'failure'
}
},
make_payment: {
on: {
SUBMIT: 'submitting_payment',
CANCEL: 'fresh'
}
},
submitting_payment: {
on: {
SUCCESS: 'success',
REJECT: 'failure'
}
},
success: {
type: "final"
},
failure: {
on: {
RETRY: {
target: 'loading',
actions: assign({
retries: (context, event) => context.retries + 1
})
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment