Skip to content

Instantly share code, notes, and snippets.

@fdjones
Created April 13, 2020 12:44
Show Gist options
  • Save fdjones/b46888462683498cd63f55a4ceae6c24 to your computer and use it in GitHub Desktop.
Save fdjones/b46888462683498cd63f55a4ceae6c24 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
function isAuthenticated() {
return Promise.resolve(true);
}
const appMachine = Machine({
id: 'app',
initial: 'idle',
context: {
retries: 0
},
states: {
idle: {
entry: isAuthenticated,
on: {
FETCH: 'loading'
}
},
loading: {
on: {
RESOLVE: 'success',
REJECT: '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