Skip to content

Instantly share code, notes, and snippets.

@Lantianyou
Last active April 10, 2021 07:46
Show Gist options
  • Save Lantianyou/af22307e6e26446d96fb329f4369c142 to your computer and use it in GitHub Desktop.
Save Lantianyou/af22307e6e26446d96fb329f4369c142 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: 'fetch',
initial: 'creating',
context: {
retries: 0
},
states: {
creating: {
on: {
SEND: 'dealing',
SUBMIT: 'finished'
}
},
waitToDistribute: {},
waitToDeal: {},
dealing: {
on: {
RESOLVE: 'finished',
REJECT: 'failure'
}
},
finished: {
type: 'final'
},
failure: {
on: {
RETRY: {
target: 'dealing',
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