Skip to content

Instantly share code, notes, and snippets.

@nk1tz
Last active August 17, 2021 23:21
Show Gist options
  • Save nk1tz/46308bf2c8703ed9029db2190d266b77 to your computer and use it in GitHub Desktop.
Save nk1tz/46308bf2c8703ed9029db2190d266b77 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: 'lightningInvoice',
initial: 'idle',
context: {
amount: 0
},
states: {
idle: {
on: {
CREATE: 'creating'
}
},
creating: {
on: {
RESOLVE: 'qr',
REJECT: 'failure'
}
},
qr: {
type: 'final'
},
failure: {
on: {
RETRY: {
target: 'creating',
actions: assign({
amount: (context, event) => context.retries + 1
})
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment