Created
March 24, 2022 13:16
-
-
Save maxarias-io/987157ad42430d673800b761e3974d67 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({ | |
"id":"extensionView", | |
"initial":"idle", | |
"states":{ | |
"idle":{ | |
"on":{ | |
"SHOW_SMV":{ | |
"target":"singleMerchantView" | |
}, | |
"SHOW_FTB":{ | |
"target":"firstTouchBannerView" | |
}, | |
"SHOW_HOME":{ | |
"target":"homeView" | |
}, | |
"SHOW_PROFILE":{ | |
"target":"profileView" | |
}, | |
"SHOW_SEARCH":{ | |
"target":"searchView" | |
} | |
} | |
}, | |
"singleMerchantView":{ | |
"on":{ | |
"CLOSE":{ | |
"target":"idle" | |
}, | |
"SHOW_HOME":{ | |
"target":"homeView" | |
}, | |
"SHOW_PROFILE":{ | |
"target":"profileView" | |
}, | |
"SHOW_SEARCH":{ | |
"target":"searchView" | |
} | |
} | |
}, | |
"firstTouchBannerView":{ | |
"on":{ | |
"CLOSE":{ | |
"target":"idle" | |
}, | |
"SHOW_CODES" : { | |
"target":"singleMerchantView" | |
} | |
} | |
}, | |
"floatingActionButtonView":{ | |
"on":{ | |
"CLOSE":{ | |
"target":"idle" | |
}, | |
"SHOW_CODES" : { | |
"target":"singleMerchantView" | |
} | |
} | |
}, | |
"homeView":{ | |
"on":{ | |
"CLOSE":{ | |
"target":"idle" | |
} | |
} | |
}, | |
"profileView":{ | |
"on":{ | |
"CLOSE":{ | |
"target":"idle" | |
} | |
} | |
}, | |
"searchView":{ | |
"on":{ | |
"CLOSE":{ | |
"target":"idle" | |
} | |
} | |
} | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment