Skip to content

Instantly share code, notes, and snippets.

@tunesmith
Last active April 26, 2021 00:33
Show Gist options
  • Save tunesmith/a4fa62ad3fa1b04a09e782fc7dff3a16 to your computer and use it in GitHub Desktop.
Save tunesmith/a4fa62ad3fa1b04a09e782fc7dff3a16 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const fetchMachine = Machine({
id: 'ShowPost',
initial: 'visit',
states: {
visit: {
on: {
SSR: 'ssr',
}
},
ssr: {
on: {
SUCCESS: 'ssrSuccess',
FAILURE: 'ssrFailed',
}
},
ssrSuccess: {
on: {
MOUNT: 'mounting',
}
},
ssrFailed: {
on: {
MOUNT: 'mounting',
}
},
mounting: {
on: {
MOUNTED: 'renderDialogs',
UNMOUNT: 'unmounting',
}
},
unmounting: {
on: {
UNMOUNTED: 'cleanup'
}
},
cleanup: {
type: 'final',
},
renderDialogs: {
type: 'final',
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment