Skip to content

Instantly share code, notes, and snippets.

@yoyoys
Created April 27, 2021 13:16
Show Gist options
  • Save yoyoys/e430747555d42e583b1037f89aeb572b to your computer and use it in GitHub Desktop.
Save yoyoys/e430747555d42e583b1037f89aeb572b to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine({
id: 'cartroom-view',
initial: '3D_VIEW',
context: {
retries: 0
},
states: {
'3D_VIEW': {
on: {
'2d-button': {
target: '2D_VIEW',
actions: ['TOP_VIEW_RESET']
},
'reset-button': {
target: '3D_VIEW',
actions: ['WALKING_RESET']
},
// '45deg-button': {
// target: '3D_VIEW',
// actions: ['FRONT_VIEW']
// }
}
},
'2D_VIEW': {
on: {
'2d-button': {
target: '3D_VIEW',
actions: ['WALKING']
},
'reset-button': {
target: '2D_VIEW',
actions: ['TOP_VIEW_RESET']
},
// '45deg-button': {
// target: '3D_VIEW',
// actions: ['FRONT_VIEW']
// }
}
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment