Skip to content

Instantly share code, notes, and snippets.

@bierlingm
Created May 22, 2020 11:33
Show Gist options
  • Save bierlingm/b3fecc816e80539af1d4959d99048a58 to your computer and use it in GitHub Desktop.
Save bierlingm/b3fecc816e80539af1d4959d99048a58 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const politicalPreference = Machine({
id: 'polPref',
initial: 'idiot',
context: {
retries: 0
},
states: {
idiot: {
on: {
HATING_MOMMY: 'libertarian',
HATING_DADDY: 'liberal',
GROWING_UP: 'conservative'
}
},
liberal: {
on: {
MUGGED: 'conservative',
START_A_BUSINESS: 'libertarian'
}
},
libertarian: {
on: {
FIRED: 'liberal',
HAS_KIDS: 'conservative'
}
},
conservative: {
on: {
MEDICAL_BILLS: 'liberal',
ARRESTED: 'libertarian'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment