Skip to content

Instantly share code, notes, and snippets.

@lifedraft
Last active May 5, 2020 14:41
Show Gist options
  • Save lifedraft/a55aeb565f3fe6dd8aea1cde3ab5d932 to your computer and use it in GitHub Desktop.
Save lifedraft/a55aeb565f3fe6dd8aea1cde3ab5d932 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine({
id: 'fetch',
initial: 'query',
states: {
query: {
initial: 'loading',
states: {
loading: {
on: {
REJECT: 'failed',
RESOLVE: 'loaded',
},
},
failed: {
type: 'final',
},
loaded: {
on: {
SUBMIT: '#mutationLoading',
},
},
}
},
mutation: {
states: {
loading: {
id: 'mutationLoading',
on: {
RESOLVE: '#success',
REJECT: 'failed',
},
},
failed: {
on: {
SUBMIT: '#mutationLoading',
},
},
}
},
success: {
id: 'success',
type: 'final',
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment