Created
August 28, 2020 05:58
-
-
Save Sydney-o9/1e371597a872fb7205571150ed133367 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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions | |
// - XState (all XState exports) | |
const fetchMachine = Machine({ | |
id: 'task status', | |
initial: 'NotStarted', | |
states: { | |
NotStarted: { | |
on: { | |
Start: 'Running' | |
} | |
}, | |
Running: { | |
on: { | |
Pause: 'Paused', | |
Finish: 'Done' | |
} | |
}, | |
Paused: { | |
on: { | |
Resume: 'Running', | |
Finish: 'Done' | |
} | |
}, | |
Done: { | |
type: 'final' | |
}, | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment