Last active
October 2, 2019 12:50
-
-
Save tiagonevestia/d1e2e31c68d81d1c3304e65903a73bcd to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or 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 fetchMachine = Machine({ | |
initial: 'fechado', | |
states: { | |
fechado: { | |
on: { | |
ABRINDO: 'abrindo', | |
}, | |
}, | |
abrindo: { | |
invoke: { | |
src: "Menu Aberto", | |
onDone: { target: "aberto" }, | |
}, | |
on: { | |
FECHANDO: 'fechando', | |
}, | |
}, | |
aberto: { | |
on: { | |
FECHANDO: 'fechando', | |
}, | |
}, | |
fechando: { | |
invoke: { | |
src: "Menu Fechado", | |
onDone: { target: "fechado" }, | |
}, | |
on: { | |
ABRINDO: 'abrindo', | |
}, | |
}, | |
}, | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment