Skip to content

Instantly share code, notes, and snippets.

@dremekie
Last active January 31, 2020 16:20
Show Gist options
  • Save dremekie/a82b3c74f26e3fd7509a02000d2950dc to your computer and use it in GitHub Desktop.
Save dremekie/a82b3c74f26e3fd7509a02000d2950dc to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const fetchMachine = Machine({
id: 'fetch',
initial: 'draft',
context: {
retries: 0
},
states: {
draft: {
on: {
SUBMIT: 'submitted'
}
},
submitted: {
on: {
APPROVED: 'approved',
REJECT: 'rejected'
}
},
approved: {
//type: 'final'
on: {
PUBLISH: 'published'
}
},
rejected: {
on: {
EDIT: {
target: 'draft'
}
}
},
published: {
on: {
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment