Skip to content

Instantly share code, notes, and snippets.

@maxarias-io
Created March 24, 2022 13:16
Show Gist options
  • Save maxarias-io/987157ad42430d673800b761e3974d67 to your computer and use it in GitHub Desktop.
Save maxarias-io/987157ad42430d673800b761e3974d67 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
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