Skip to content

Instantly share code, notes, and snippets.

@bmeck
Last active February 20, 2020 16:40
Show Gist options
  • Save bmeck/5518b15e70cec84df94074328dc24b1e to your computer and use it in GitHub Desktop.
Save bmeck/5518b15e70cec84df94074328dc24b1e to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const workflow = Machine({
id: "workflow",
initial: "running",
states: {
running: {
id: "file",
type: "parallel",
states: {
upload: {
initial: "idle",
states: {
idle: {
on: {
INIT_UPLOAD: "pending"
}
},
pending: {
on: {
UPLOAD_COMPLETE: "success"
}
},
success: {
type: 'final'
}
}
},
download: {
initial: "idle",
states: {
idle: {
on: {
INIT_DOWNLOAD: "pending"
}
},
pending: {
on: {
DOWNLOAD_COMPLETE: "success"
}
},
success: {
type: 'final'
}
}
}
},
onDone: "done"
},
done: {}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment