Skip to content

Instantly share code, notes, and snippets.

@legrego
Created March 23, 2020 18:04
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 legrego/3ab63eb95c4528546c83e05c21fbf019 to your computer and use it in GitHub Desktop.
Save legrego/3ab63eb95c4528546c83e05c21fbf019 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: {
ACCESS_RESOURCE: 'check_auth'
}
},
check_auth: {
on: {
SESSION_EXISTS: 'check_user',
SESSION_MISSING: 'check_user',
}
},
check_user: {
on: {
USER_AUTH_SUCCESS: 'success',
USER_AUTH_FAILURE: 'failure'
}
},
success: {
type: 'final'
},
failure: {
on: {
RETRY: {
target: 'check_auth',
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