Skip to content

Instantly share code, notes, and snippets.

@tomByrer
Last active February 8, 2021 04:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomByrer/f6aabba3ef4581972b20e4a3b0b18587 to your computer and use it in GitHub Desktop.
Save tomByrer/f6aabba3ef4581972b20e4a3b0b18587 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// volume contrll
/*
{
"type": "VOL_CHANGE",
"value": 0.9
}
*/
function mute(){
console.log('🔇 muted')
}
function unmute(vol){
console.log('👂 unmuted, vol: '+ vol)
}
const volumeMachine = Machine({
id: 'volume',
initial: 'heard',
context: {
volume: 0.5
},
states: {
heard: { // idle
entry: (context)=>{
console.log('vol: '+ context.volume)
},
on: {
MUTE_TOGGLE: 'muted',
VOL_CHANGE: {
actions: assign((context, event) => {
console.log('assign volume: '+ event.volume)
return {
volume: event.value
}
}),
target: 'heard'
},
},
},
muted: {
entry: ()=> mute(),
on: {
MUTE_TOGGLE: 'heard',
VOL_CHANGE: {
actions: assign((context, event) => {
console.log('assign volume: '+ event.volume)
return {
volume: event.value
}
}),
target: 'heard'
},
},
exit: context=> unmute(context.volume),
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment