Skip to content

Instantly share code, notes, and snippets.

@porfidev
Last active May 4, 2022 23:03
Show Gist options
  • Save porfidev/a3f5ad00dec02fdc5eb527419a92e19e to your computer and use it in GitHub Desktop.
Save porfidev/a3f5ad00dec02fdc5eb527419a92e19e 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 userLogStatus = Machine({
id: 'retryMachine',
initial: 'waiting',
context: {
retries: 0
},
states: {
waiting: {
on: {INTENT: 'trying'}
},
trying: {
entry: ['addRetries'],
on: {
'': [
{target: 'denied', cond: 'hasEnoughTries'},
{target: 'waiting'}
]
}
},
denied: {}
}
}, {
actions: {
addRetries: assign((context, event) => {
return {retries: context.retries += 1};
})
},
guards: {
hasEnoughTries: (context, event) => {
return context.retries > 5;
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment