Skip to content

Instantly share code, notes, and snippets.

@alizbazar
Created August 9, 2019 12:26
Show Gist options
  • Save alizbazar/54229b2f52861004ffc8a70017189391 to your computer and use it in GitHub Desktop.
Save alizbazar/54229b2f52861004ffc8a70017189391 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 load = () => new Promise(resolve => {})
const fetchMachine = Machine({
id: 'fetch',
initial: 'idle',
context: {
retries: 0
},
states: {
idle: {
on: {
FETCH: 'loading'
}
},
loading: {
invoke: {
src: load,
onDone: 'success',
onError: '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