Skip to content

Instantly share code, notes, and snippets.

@byronmejia
Created April 28, 2020 06:35
Show Gist options
  • Save byronmejia/f1c1580c048fe2988ec58c57bc7311bb to your computer and use it in GitHub Desktop.
Save byronmejia/f1c1580c048fe2988ec58c57bc7311bb 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 fetchMachine = Machine({
id: 'changePayment',
initial: 'idle',
context: {
retries: 0
},
states: {
idle: {
on: {
UPDATE_PAYPAL: 'loadingPaypal',
UPDATE_CARD: 'loadingCard'
}
},
loadingPaypal: {
on: {
SUCCESS: 'success',
FAILURE: 'failure'
}
},
loadingCard: {
on :{
SUCCESS: 'success',
FAILURE: '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