Skip to content

Instantly share code, notes, and snippets.

@banderon1
Last active February 24, 2022 22:50
Show Gist options
  • Save banderon1/6256c3f27d683e266b0ebd6a5a5d2048 to your computer and use it in GitHub Desktop.
Save banderon1/6256c3f27d683e266b0ebd6a5a5d2048 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: 'meet',
initial: 'created',
context: {
retries: 0
},
states: {
created: {
on: {
SCHEDULED: 'pending',
MEETNOW: 'started'
}
},
pending: {
on: {
RESOLVE: 'started',
REJECT: 'error'
}
},
started: {
on: {
CANCELED: 'success',
CONFIRMED: 'success',
VERIFIED: 'success',
UNVERIFIED: 'success',
AUTHENTICATED: 'success',
EXPIRED: 'success',
REJECT: 'error'
}
},
success: {
type: 'final'
},
error: {
on: {
RETRY: {
target: 'pending',
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