Skip to content

Instantly share code, notes, and snippets.

@gerzhan
Created October 10, 2023 12:42
Show Gist options
  • Save gerzhan/43d8bb4db370bc4b7b02709ee3970b78 to your computer and use it in GitHub Desktop.
Save gerzhan/43d8bb4db370bc4b7b02709ee3970b78 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: 'commeted',
initial: 'draft',
context: {
retries: 0
},
states: {
draft: {
on: {
COMMIT: 'commited'
}
},
commited: {
on: {
toReviewEDC: 'reviewEDC',
toReview: 'review'
}
},
reviewEDC: {
on: {
declideEDC: 'declineEDC',
approveEDC: 'approvedEDC'
}
},
declineEDC:{
on:{
edit: 'draft'
}
},
approvedEDC:{
on:{
edit: 'draft',
toReview: 'review'
}
},
review: {
on:{
decline: 'declined',
approve: 'approved'
}
},
approved:{
on:{
tag: 'tagged'
}
},
declined:{
on:{
edit: 'draft'
}
},
tagged:{
on: {
publish: 'published',
}
},
published:{
on:{
publish: 'wasPublished'
}
},
wasPublished:{
on:{
publish: 'published'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment