Skip to content

Instantly share code, notes, and snippets.

@laurazenc
Created June 27, 2022 10:54
Show Gist options
  • Save laurazenc/9a532474680f57f89d3228157e7f3016 to your computer and use it in GitHub Desktop.
Save laurazenc/9a532474680f57f89d3228157e7f3016 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: 'updateStatusMachine',
initial: 'idle',
context: {
retries: 0
},
states: {
idle: {
on: {
UPDATE: 'loading'
}
},
loading: {
invoke: 'updateStatusUseCase',
on: {
RESOLVE: 'success',
REJECT: 'failure'
}
},
success: {
target: 'idle',
actions: ['optimisticUpdate', 'showNotification'],
on: {
UPDATE: 'loading'
}
},
failure: {
actions: ['showNotification'],
on: {
RETRY: {
target: 'loading',
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment