Skip to content

Instantly share code, notes, and snippets.

@MoonTahoe
Created November 14, 2019 03:17
Show Gist options
  • Save MoonTahoe/7e0937ec3032fe0747ff8c720d210ed1 to your computer and use it in GitHub Desktop.
Save MoonTahoe/7e0937ec3032fe0747ff8c720d210ed1 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
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