Created
September 16, 2020 18:49
-
-
Save grahamb/0eb8ca79fcabaa3b015bdc2e404f8f76 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
const initialContext = { | |
username: null, | |
}; | |
/* | |
USER STATES | |
A user can be in one of the following states. | |
These states are calculated as a result of the `enrolledTOTP` and `registration` properties on the user record. | |
- enrolledRegistered: is enrolled (in the maillist) and registered (has registration record in DB) | |
- not enrolledRegistered: is not enrolled (not in the maillist) and not registered (no reg record in DB) | |
- enrolledOnly: is enrolled (in the maillist) but not registered (no reg record) | |
- registeredOnly: is not enrolled (in the maillist) but is registered (has reg record in DB) -- unlikely but possible | |
*/ | |
const userStates = { | |
initial: 'display', | |
states: { | |
display: {}, | |
enrolledRegistered: { | |
on: { | |
REMOVE_REGISTRATION: { target: 'unregistering' }, | |
REMOVE_ENROLLMENT: { target: 'unenrolling' }, | |
}, | |
}, | |
notEnrolledRegistered: { | |
on: { | |
ENROLL: { | |
target: 'enrolling', | |
}, | |
}, | |
}, | |
enrolledOnly: { | |
on: { | |
REMOVE_ENROLLMENT: { target: 'unenrolling' }, | |
}, | |
}, | |
registeredOnly: { | |
on: { | |
ENROLL: { | |
target: 'enrolling', | |
}, | |
}, | |
}, | |
// remove enrollment and registration | |
unenrolling: {}, | |
// remove registration record | |
unregistering: {}, | |
enrolling: {}, | |
}, | |
}; | |
const adminMachine = Machine({ | |
id: 'ADMIN_APP', | |
initial: 'ready', | |
context: { | |
...initialContext, | |
}, | |
states: { | |
ready: { | |
on: { | |
SEARCH: { | |
target: 'searching', | |
}, | |
}, | |
}, | |
searching: { | |
on: { | |
SEARCH_SUCCESS: { | |
target: 'display', | |
}, | |
ERROR_INVALID_USER: { | |
target: 'invalidUser', | |
}, | |
ERROR_SERVER_ERROR: { | |
target: 'serverError', | |
}, | |
}, | |
}, | |
invalidUser: { | |
on: { | |
RESET: 'ready', | |
}, | |
}, | |
serverError: { | |
on: { | |
SEARCH: 'searching', | |
RESET: 'ready', | |
}, | |
}, | |
display: { | |
on: { | |
RESET: 'ready', | |
}, | |
...userStates, | |
}, | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment