Skip to content

Instantly share code, notes, and snippets.

@bryanjswift
Last active March 12, 2020 19:28
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 bryanjswift/c4ae3c000e9dd58523f040ead3022f70 to your computer and use it in GitHub Desktop.
Save bryanjswift/c4ae3c000e9dd58523f040ead3022f70 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: 'bid',
initial: 'pending',
context: {
status: 'open'
},
states: {
pending: {
on: {
ACCEPT: 'accepted',
REJECT: 'rejected',
EXPIRE: 'expired',
COUNTER: 'countered',
}
},
accepted: {
type: 'final',
entry: assign({ status: () => 'closed' })
},
rejected: {
type: 'final',
entry: assign({ status: () => 'closed' })
},
expired: {
type: 'final',
entry: assign({ status: () => 'closed' })
},
countered: {
on: {
ACCEPT: 'accepted',
REJECT: 'rejected',
EXPIRE: 'expired',
}
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment