Skip to content

Instantly share code, notes, and snippets.

@magnus513
Last active November 23, 2020 14:24
Show Gist options
  • Save magnus513/2ca8dd654448b1bb871170afc299976d to your computer and use it in GitHub Desktop.
Save magnus513/2ca8dd654448b1bb871170afc299976d to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: 'ProCheck',
initial: 'pending',
context: {
dog: null
},
states: {
pending: {
on: {
START: 'poa'
}
},
poa: {
on: {
CREATE_LEAD: 'sale_lead'
}
},
sale_lead: {
on: {
CHECK_LEAD: 'status'
}
},
status: {
on: {
STATUS_CHECK: 'verification'
}
},
verification: {
on: {
ACCEPTED: 'accepted',
REJECTED: 'status'
}
},
accepted: {
on: {
ACCEPTED: 'supplier_change'
}
},
supplier_change: {
on: {
CHANGE_SUPPLIER: 'create_customer'
}
},
create_customer: {
type: 'final'
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment