Created
November 23, 2019 21:56
-
-
Save sesteva/79a02616542538d964b081de5ff377d0 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 emailStates = { | |
initial: "noError", | |
states: { | |
noError: {}, | |
error: { | |
initial: "empty", | |
states: { | |
empty: {}, | |
badFormat: {}, | |
noAccount: {} | |
}, | |
onEntry: "focusEmailInput" | |
} | |
} | |
}; | |
const passwordStates = { | |
initial: "noError", | |
states: { | |
noError: {}, | |
error: { | |
initial: "empty", | |
states: { | |
empty: {}, | |
tooShort: {}, | |
incorrect: {} | |
}, | |
onEntry: "focusPasswordInput" | |
} | |
} | |
}; | |
const authServiceStates = { | |
initial: "noError", | |
states: { | |
noError: {}, | |
error: { | |
initial: "communication", | |
states: { | |
communication: { | |
on: { | |
SUBMIT: "#signInForm.waitingResponse" | |
} | |
}, | |
internal: {} | |
} | |
} | |
} | |
}; | |
const machineConfig = { | |
id: "signInForm", | |
context: { | |
email: "", | |
password: "" | |
}, | |
initial: "ready", | |
states: { | |
ready: { | |
type: "parallel", | |
on: { | |
INPUT_EMAIL: { | |
actions: "cacheEmail", | |
target: "ready.email.noError" | |
}, | |
INPUT_PASSWORD: { | |
actions: "cachePassword", | |
target: "ready.password.noError" | |
}, | |
SUBMIT: [ | |
{ | |
cond: "isNoEmail", | |
target: "ready.email.error.empty" | |
}, | |
{ | |
cond: "isEmailBadFormat", | |
target: "ready.email.error.badFormat" | |
}, | |
{ | |
cond: "isNoPassword", | |
target: "ready.password.error.empty" | |
}, | |
{ | |
cond: "isPasswordShort", | |
target: "ready.password.error.tooShort" | |
}, | |
{ | |
target: "waitingResponse" | |
} | |
] | |
}, | |
states: { | |
email: { | |
...emailStates | |
}, | |
password: { | |
...passwordStates | |
}, | |
authService: { | |
...authServiceStates | |
} | |
} | |
}, | |
waitingResponse: { | |
on: { | |
CANCEL: "ready" | |
}, | |
invoke: { | |
src: "requestSignIn", | |
onDone: { | |
actions: "onSuccess" | |
}, | |
onError: [ | |
{ | |
cond: "isNoAccount", | |
target: "ready.email.error.noAccount" | |
}, | |
{ | |
cond: "isIncorrectPassword", | |
target: "ready.password.error.incorrect" | |
}, | |
{ | |
cond: "isNoResponse", | |
target: "ready.authService.error.communication" | |
}, | |
{ | |
cond: "isInternalServerErr", | |
target: "ready.authService.error.internal" | |
} | |
] | |
} | |
} | |
} | |
}; | |
const fetchMachine = Machine(machineConfig); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment