Skip to content

Instantly share code, notes, and snippets.

@pckilgore
Last active May 12, 2020 18:39
Show Gist options
  • Save pckilgore/c57abd68f61f83b9d3e0efaa2e7b4129 to your computer and use it in GitHub Desktop.
Save pckilgore/c57abd68f61f83b9d3e0efaa2e7b4129 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 publicationState = Machine({
id: 'pubState',
initial: 'neverPublished',
context: {
retries: 0
},
states: {
neverPublished: {
on: {
Publish: "publishing"
}
},
unpublished: {
on: {
Publish: 'publishing'
}
},
publishing: {
on: {
ReportFailure: 'failure',
ReportSuccess: 'published'
}
},
published: {
on: {
Unpublish: 'unpublished'
}
},
failure: {
on: {
Publish: {
target: 'publishing',
actions: assign({
retries: (context, event) => context.retries + 1
})
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment