Skip to content

Instantly share code, notes, and snippets.

@sfarthin
Created October 14, 2021 20:37
Show Gist options
  • Save sfarthin/a1822c6a35bf36185420e7aa60ddd5b7 to your computer and use it in GitHub Desktop.
Save sfarthin/a1822c6a35bf36185420e7aa60ddd5b7 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const fetchCuteAnimals = () => {
return fetch('https://www.reddit.com/r/aww.json')
.then(res => res.json())
.then(data => data.data.children.map(child => child.data))
}
const cuteAnimalMachine = Machine({
id: 'cuteAnimals',
initial: 'idle',
context: {
cuteAnimals: null,
error: null,
},
states: {
idle: {
on: { FETCH: 'loading' },
},
loading: {
invoke: {
id: 'fetchCuteAnimals',
src: fetchCuteAnimals,
onDone: {
target: 'success',
actions: [
assign({
cuteAnimals: (context, event) => event.data,
}),
],
},
onError: {
target: 'failure',
actions: [
assign({
error: (context, event) => event.data,
}),
],
},
},
},
success: {
type: 'final',
},
failure: {
on: {
RETRY: 'loading',
},
},
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment