Last active
June 8, 2021 21:16
-
-
Save j0hnm4r5/158725702c0fd537f16ea91bbf217c58 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 fetchMachine = Machine({ | |
id: 'a101', | |
initial: 'm_1', | |
states: { | |
m_1: { | |
on: { | |
OKAY: 'm_2', | |
} | |
}, | |
m_2: { | |
on: { | |
SAY_YES: 'm_3', | |
SAY_NO: 'm_4', | |
DO_NOT_RESPOND: 'm_2', | |
} | |
}, | |
m_3: { | |
after: { | |
// after 2 seconds, transition | |
2000: { target: 'm_4' } | |
} | |
}, | |
m_4: { | |
on: { | |
QUESTION_WHY: 'm_5', | |
YELL_AT_THEM: 'm_6', | |
} | |
}, | |
m_5: { | |
type: 'final', | |
}, | |
m_6: { | |
type: 'final', | |
}, | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment