Created
December 17, 2019 10:56
-
-
Save Lucas-Geitner/0a83fbfe682ddd449154c3fbc749e07b to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or 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
const createDonationMachine = Machine({ | |
id: "createDonation", | |
initial: "inactive", | |
states: { | |
inactive: { on: { TOGGLE: "not_normalize" } }, | |
not_normalize: { on: { TOGGLE: "send_slack_notification" } }, | |
send_slack_notification: { on: { TOGGLE: "send_email_notification" } }, | |
send_email_notification: { on: { TOGGLE: "send_to_identity" } }, | |
send_to_identity: { on: { TOGGLE: "updatePetition" } }, | |
updatePetition: { on: { TOGGLE: "active" } }, | |
active: { on: { TOGGLE: "inactive" } } | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment