Skip to content

Instantly share code, notes, and snippets.

@apucacao
Last active July 20, 2020 01:21
Show Gist options
  • Save apucacao/c4ecd1f5afc558dceae0f52d1252b9b3 to your computer and use it in GitHub Desktop.
Save apucacao/c4ecd1f5afc558dceae0f52d1252b9b3 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: {
entry: 'load',
on: {
LOAD_START: 'loading',
}
},
loading: {
entry: 'loadLibrary',
on: {
LOAD_DONE: 'ready',
LOAD_FAILED: 'failed'
}
},
failed: {},
ready: {
entry: 'register',
on: {
SIGN_IN: 'authenticated',
SIGN_OUT: 'unauthenticated'
}
},
unauthenticated: {
on: {
SIGN_IN: 'authenticated'
}
},
authenticated: {
on: {
SIGN_OUT: 'unauthenticated',
}
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment