Last active
February 27, 2020 18:32
-
-
Save ivorpad/18867cf7a575a59879b6fdcd4f4c5c3e 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 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