Skip to content

Instantly share code, notes, and snippets.

@farskid
Created July 27, 2021 16:11
Show Gist options
  • Save farskid/e04f2d377f0916412d27158bfaca3164 to your computer and use it in GitHub Desktop.
Save farskid/e04f2d377f0916412d27158bfaca3164 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const fileMachine = Machine({
id: "file",
type: "parallel",
states: {
upload: {
initial: "idle",
states: {
idle: {
on: {
INIT_UPLOAD: { target: "pending" },
},
},
pending: {
on: {
UPLOAD_COMPLETE: { target: "success" },
},
},
success: {},
},
},
download: {
initial: "idle",
states: {
idle: {
on: {
INIT_DOWNLOAD: { target: "pending" },
},
},
pending: {
on: {
DOWNLOAD_COMPLETE: { target: "success" },
},
},
success: {},
},
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment