Last active
November 23, 2020 14:24
-
-
Save magnus513/2ca8dd654448b1bb871170afc299976d to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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