Skip to content

Instantly share code, notes, and snippets.

@Platekun
Created July 21, 2019 16:59
Show Gist options
  • Save Platekun/b1c3a9dcfaf78e9d77f118f6cf8a3f0a to your computer and use it in GitHub Desktop.
Save Platekun/b1c3a9dcfaf78e9d77f118f6cf8a3f0a to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: 'Cats Fetcher',
initial: 'idle',
context: {
cats: null,
error: null
},
states: {
idle: {
on: {
QUERY_UPDATED: {
actions: 'updateQuery'
},
SEARCH: 'searching'
}
},
searching: {
invoke: {
id: 'catsRequest',
src: () => Promise.resolve([]),
onDone: {
target: 'idle',
actions: 'saveCats'
},
onError: {
taret: 'searchFailure',
actions: 'saveCats'
}
}
},
searchFailure: {
on: {
RETRY: {
target: 'searching',
actions: 'clearError'
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment