Last active
May 5, 2020 14:41
-
-
Save lifedraft/a55aeb565f3fe6dd8aea1cde3ab5d932 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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