Created
October 10, 2023 12:42
-
-
Save gerzhan/43d8bb4db370bc4b7b02709ee3970b78 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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