Skip to content

Instantly share code, notes, and snippets.

@dolbex
Last active December 19, 2019 21:54
Show Gist options
  • Save dolbex/179763bc7c5b7911f170f854da22235c to your computer and use it in GitHub Desktop.
Save dolbex/179763bc7c5b7911f170f854da22235c 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: 'idle',
context: {
retries: 0,
},
states: {
idle: {
on: {
FETCH_DATA_REQUEST: 'fetchingData',
},
},
fetchingData: {
onEntry: ['requestOperations', 'showLoading'],
on: {
SUCCESS: 'idle',
FAILURE: 'failure',
},
onExit: ['hideLoading'],
},
failure: {
on: {
RETRY: [
{
target: 'fetchingData',
actions: assign({
retries: context => context.retries + 1,
}),
cond: context => {
return context < 3;
},
},
{
target: 'tooManyRetries',
},
],
},
},
tooManyRetries: {
final: true,
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment