Skip to content

Instantly share code, notes, and snippets.

@tiagonevestia
Created October 4, 2019 15:51
Show Gist options
  • Save tiagonevestia/202d154c843e9a3257886add13b22c89 to your computer and use it in GitHub Desktop.
Save tiagonevestia/202d154c843e9a3257886add13b22c89 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const machineState = Machine({
id: 'datamachine',
initial: 'loading',
context: {
data: [],
},
states: {
loading: {
on: {
DONE_MORE: 'more',
DONE_COMPLETE: 'complete',
FAIL: 'failure'
}
},
more: {
on: {
LOAD: 'loading',
ADD_SET_ITENS: 'setperpage',
}
},
setperpage: {
on: {
ADD_SET: 'more'
}
},
complete: {
type: "final"
},
failure: {
type: "final"
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment