Skip to content

Instantly share code, notes, and snippets.

@dorelljames
Last active August 26, 2022 05:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dorelljames/b38d3102dfc573ce1d9c8699aff92ecb to your computer and use it in GitHub Desktop.
Save dorelljames/b38d3102dfc573ce1d9c8699aff92ecb 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 subscribeMachine = Machine({
id: "subscribe",
initial: "ready",
states: {
ready: {
on: {
SUBSCRIBE: "subscribe_success"
}
},
subscribe_success: {
entry: sendParent('SUBSCRIBE_DONE')
}
}
})
const downloadMachine = Machine({
id: 'download',
initial: 'idle',
context: {
retries: 0
},
states: {
idle: {
on: {
DOWNLOAD: 'loading'
}
},
loading: {
on: {
RESOLVE: 'success',
REJECT: 'failure.subscribing'
}
},
success: {
type: 'final'
},
failure: {
states: {
subscribing: {
entry: assign({
subscriptionRef: () => spawn(subscribeMachine)
})
},
},
on: {
SUBSCRIBE_DONE: "loading",
RETRY: {
target: 'loading',
actions: assign({
retries: (context, event) => context.retries + 1
})
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment