Created
November 14, 2019 03:17
-
-
Save MoonTahoe/7e0937ec3032fe0747ff8c720d210ed1 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 seedToSale = Machine({ | |
id: "canabis-regulation", | |
initial: "idle", | |
states: { | |
idle: { | |
on: { | |
TAG_RECEIVED: "seed" | |
} | |
}, | |
seed: { | |
on: { | |
PLANT: "planted", | |
DESTROY: "destroyed" | |
} | |
}, | |
planted: { | |
on: { | |
SPROUT: "sprouted", | |
NO_SPROUT: "dead" | |
} | |
}, | |
sprouted: { | |
on: { | |
MOVED: "vegitation" | |
} | |
}, | |
vegitation: { | |
on: { | |
MOVED: "flowering", | |
DIED: "dead" | |
} | |
}, | |
flowering: { | |
on: { | |
CUT: "harvested", | |
DIED: "dead" | |
} | |
}, | |
harvested: { | |
on: { | |
TRIM: "trimmed", | |
DESTROY: "destroyed" | |
} | |
}, | |
trimmed: { | |
on: { | |
PACK: "packaged", | |
DESTROY: "destroyed" | |
} | |
}, | |
packaged: { | |
on: { | |
SALE: "sold", | |
DESTROY: "destroyed" | |
} | |
}, | |
sold: { | |
type: "final" | |
}, | |
dead: { | |
type: "final" | |
}, | |
destroyed: { | |
type: "final" | |
} | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment