Skip to content

Instantly share code, notes, and snippets.

@njdancer
Last active March 2, 2021 01:17
Show Gist options
  • Save njdancer/263e53bae869c0cb886ff435fab3d9cb to your computer and use it in GitHub Desktop.
Save njdancer/263e53bae869c0cb886ff435fab3d9cb to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const machine = Machine({
id: 'categoryList',
initial: 'loading',
context: {
},
states: {
loading: {
invoke: {
src: "loadData",
onDone: "categoryList"
}
},
categoryList: {
on: {
"NEW_CATEGORY": {
target: "categoryEdit",
actions: "createDraftCategory"
},
}
},
categoryEdit: {
on: {
"SAVE": {
target: "categoryList",
actions: "saveDraftCategory"
},
"CANCEL": {
actions: "resetDraftCategory"
}
}
},
// activityList: {
// on: {
// "EDIT_CATEGORY": {
// target: "categoryEdit",
// actions: "copyAsDraftCategory"
// }
// }
// },
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment