Skip to content

Instantly share code, notes, and snippets.

@zanthrash
Last active June 23, 2020 21:18
Show Gist options
  • Save zanthrash/87ccbc893b9e5d1e8f9bfce042b208b1 to your computer and use it in GitHub Desktop.
Save zanthrash/87ccbc893b9e5d1e8f9bfce042b208b1 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: 'fetch',
initial: "init",
states: {
init: {
on: {
CLICK: "fetch",
}
},
fetch: {
on: {
SUCCESS: "roomOptions",
ERROR: "showError",
}
},
showError: {
on: {
RETRY: "fetch",
}
},
roomOptions: {
on: {
ADDROOM: "addRoom",
DETAILS: "roomDetails",
}
},
addRoom: {
on: {
CANCEL: "roomOptions",
SUBMIT: "submitRoom",
}
},
roomDetails: {
on: {
EDIT: "edit",
}
},
edit: {
on: {
SAVE: "submitRoom",
}
},
submitRoom: {}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment