Skip to content

Instantly share code, notes, and snippets.

@RafalFilipek
Last active December 25, 2019 21:22
Show Gist options
  • Save RafalFilipek/abe24f8f111907c28a55c6654db8a658 to your computer and use it in GitHub Desktop.
Save RafalFilipek/abe24f8f111907c28a55c6654db8a658 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const m = Machine({
id: 'error',
context: {
list: null,
currentItem: null,
},
initial: 'init',
states: {
init: {
on: {
'SELECT': {
actions: assign({
// THIS WILL FAIL
currentItem: (c) => c.list[2]
})
},
// 'SELECT2': {
// // THIS WILL FAIL HARD
// cond: (c) => c.list.length > 2
// actions: assign({
// currentItem: true
// })
// }
}
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment