Created
March 23, 2022 23:04
-
-
Save maxarias-io/341d86e35ccebbfa85896020697296c7 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