Skip to content

Instantly share code, notes, and snippets.

@shussekaido
Last active August 16, 2020 01:15
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 shussekaido/ec46c4e9280528275d8eb3b55b21e75f to your computer and use it in GitHub Desktop.
Save shussekaido/ec46c4e9280528275d8eb3b55b21e75f to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
/*
Retrying logic for https://egghead.io/lessons/xstate-use-xstate-null-events-and-transient-transitions-to-immediately-transition-states
*/
const fetchMachine = Machine({
id: 'fetch',
initial: 'idle',
context: {
tries: 0
},
states: {
idle: {
on: { TRY: 'trying' }
},
trying: {
entry: ['incTries'],
on: {
'': [
{ target: 'success', cond: 'triedEnough' },
{ target: 'idle' }
]
}
},
success: {}
}
},
{
actions: {
incTries: assign({
tries: ctx => ctx.tries + 1
})
},
guards: {
triedEnough: ctx => ctx.tries > 2
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment