Created
October 24, 2020 14:50
-
-
Save sarahdayan/c53b38ec9b456ddc2d1b15996183430d 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 editor = Machine({ | |
type: 'parallel', | |
states: { | |
sidebar: { | |
initial: 'expanded', | |
states: { | |
expanded: { | |
on: { | |
TOGGLE_SIDEBAR: 'collapsed', | |
}, | |
}, | |
collapsed: { | |
on: { | |
TOGGLE_SIDEBAR: 'expanded' | |
} | |
}, | |
} | |
}, | |
preview: { | |
initial: 'visible', | |
states: { | |
visible: { | |
on: { | |
TOGGLE_PREVIEW: 'hidden' | |
}, | |
initial: 'rendered', | |
states: { | |
rendered: { | |
on: { | |
TOGGLE_PREVIEW_MODE: 'html' | |
} | |
}, | |
html: { | |
on: { | |
TOGGLE_PREVIEW_MODE: 'rendered' | |
} | |
}, | |
memo: { | |
type: 'history' | |
} | |
} | |
}, | |
hidden: { | |
on: { | |
TOGGLE_PREVIEW: 'visible.memo' | |
} | |
}, | |
} | |
} | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment