Skip to content

Instantly share code, notes, and snippets.

@maxarias-io
Created March 23, 2022 23:04
Show Gist options
  • Save maxarias-io/341d86e35ccebbfa85896020697296c7 to your computer and use it in GitHub Desktop.
Save maxarias-io/341d86e35ccebbfa85896020697296c7 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