Created
April 29, 2020 15:33
-
-
Save jmreidy/f0ec44108e1a669debae17ff4f412af0 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const wordMachine = Machine({ | |
id: 'word', | |
type: 'parallel', | |
states: { | |
bold: { | |
initial: 'off', | |
states: { | |
on: { | |
on: { TOGGLE_BOLD: 'off' } | |
}, | |
off: { | |
on: { TOGGLE_BOLD: 'on' } | |
} | |
} | |
}, | |
underline: { | |
initial: 'off', | |
states: { | |
on: { | |
on: { TOGGLE_UNDERLINE: 'off' } | |
}, | |
off: { | |
on: { TOGGLE_UNDERLINE: 'on' } | |
} | |
} | |
}, | |
italics: { | |
initial: 'off', | |
states: { | |
on: { | |
on: { TOGGLE_ITALICS: 'off' } | |
}, | |
off: { | |
on: { TOGGLE_ITALICS: 'on' } | |
} | |
} | |
}, | |
list: { | |
initial: 'none', | |
states: { | |
none: { | |
on: { BULLETS: 'bullets', NUMBERS: 'numbers' } | |
}, | |
bullets: { | |
on: { NONE: 'none', NUMBERS: 'numbers' } | |
}, | |
numbers: { | |
on: { BULLETS: 'bullets', NONE: 'none' } | |
} | |
} | |
} | |
} | |
}); | |
const boldState = wordMachine.transition('bold.off', 'TOGGLE_BOLD').value; | |
// { | |
// bold: 'on', | |
// italics: 'off', | |
// underline: 'off', | |
// list: 'none' | |
// } | |
const nextState = wordMachine.transition( | |
{ | |
bold: 'off', | |
italics: 'off', | |
underline: 'on', | |
list: 'bullets' | |
}, | |
'TOGGLE_ITALICS' | |
).value; | |
// { | |
// bold: 'off', | |
// italics: 'on', | |
// underline: 'on', | |
// list: 'bullets' | |
// } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment