Skip to content

Instantly share code, notes, and snippets.

@ryanflorence
Created June 20, 2021 14:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanflorence/de144e72caa88a4842529c6da6ca6b08 to your computer and use it in GitHub Desktop.
Save ryanflorence/de144e72caa88a4842529c6da6ca6b08 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: 'transition',
initial: 'idle',
context: {
location: {},
nextLocation: {},
loaderData: {},
actionData: {},
pendingSubmits: {},
pendingRefs: {},
},
states: {
idle: {
on: {
GET: 'loading',
POST: 'posting'
}
},
loading: {
on: {
COMPLETE: 'idle',
REDIRECT: 'loading',
GET: 'loading',
POST: 'posting'
}
},
posting: {
on: {
COMPLETE: 'loading',
REDIRECT: 'loading',
GET: 'loading',
POST: 'posting'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment