Skip to content

Instantly share code, notes, and snippets.

@Ichag
Created December 2, 2020 15:46
Show Gist options
  • Save Ichag/c5fde8d658f39d923f12b54310193dd8 to your computer and use it in GitHub Desktop.
Save Ichag/c5fde8d658f39d923f12b54310193dd8 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: 'pairing wizard',
initial: 'idle',
context: {
retries: 0
},
states: {
idle: {
on: {
START_PROCESS: 'enter_fabricationNr'
}
},
enter_fabricationNr: {
on: {
FIND_DEVICE: 'enter_tan',
ERROR_TIMEOUT: 'failure',
ERROR_CLOUD: 'failure'
}
},
enter_tan: {
on: {
PAIRING_DEVICE: 'success',
ERROR_TIMEOUT: 'enter_tan',
ERROR_CLOUD: 'failure'
}
},
success: {
type: 'final'
},
failure: {
on: {
RETRY: {
target: 'enter_fabricationNr',
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment