Skip to content

Instantly share code, notes, and snippets.

@ivorpad
Last active February 27, 2020 18:32
Show Gist options
  • Save ivorpad/18867cf7a575a59879b6fdcd4f4c5c3e to your computer and use it in GitHub Desktop.
Save ivorpad/18867cf7a575a59879b6fdcd4f4c5c3e to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const actionSheet = Machine({
id: 'actionSheet',
initial: 'idle',
context: {
results: []
},
states: {
idle: {
on: {
SELECT: 'loading',
DELETE: 'loading'
}
},
loading: {
on: {
RESOLVE: 'success',
REJECT: 'failure'
}
},
success: {
type: 'final'
},
failure: {
on: {
RETRY: {
target: 'loading',
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment