Last active
November 1, 2020 21:16
-
-
Save davidkpiano/bbcb4379b36edea0458f597e5eec2f91 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
Machine({ | |
id: 'Dog API', | |
initial: 'idle', | |
context: { | |
dog: null | |
}, | |
states: { | |
idle: { | |
on: { | |
FETCH: 'loading' | |
} | |
}, | |
loading: { | |
invoke: { | |
id: 'fetchDog', | |
src: (context, event) => fetch('https://dog.ceo/api/breeds/image/random') | |
.then(data => data.json()), | |
onDone: { | |
target: 'resolved', | |
actions: assign({ | |
dog: (_, event) => event.data | |
}) | |
}, | |
onError: 'rejected' | |
}, | |
on: { | |
CANCEL: 'idle' | |
} | |
}, | |
resolved: { | |
type: 'final' | |
}, | |
rejected: { | |
on: { | |
FETCH: 'loading' | |
} | |
} | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On line 16, is the site
.co
or.dev
? The docs say.dev