Last active
September 22, 2020 14:22
-
-
Save TheDutchCoder/1237b61a74bed955a4bb6d9d1f95ebd8 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains 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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions | |
// - XState (all XState exports) | |
// Email: [email protected] | |
// Code: 12345 | |
const loginMachine = Machine({ | |
id: 'login', | |
initial: 'email', | |
context: { | |
email: '[email protected]', | |
code: '12345', | |
}, | |
states: { | |
email: { | |
on: { | |
INPUT: { | |
actions: 'cacheEmail', | |
target: 'email.noError' | |
}, | |
SUBMIT: [ | |
{ | |
cond: 'isEmailEmpty', | |
target: 'email.error.empty' | |
}, | |
{ | |
cond: 'isEmailBadFormat', | |
target: 'email.error.badFormat' | |
}, | |
{ target: 'emailService' } | |
] | |
}, | |
initial: 'noError', | |
states: { | |
noError: {}, | |
error: { | |
initial: 'empty', | |
states: { | |
empty: {}, | |
badFormat: {}, | |
}, | |
}, | |
} | |
}, | |
emailService: { | |
on: { | |
SUCCESS: 'code', | |
ERROR: [ | |
{ | |
cond: 'isEmailEmpty', | |
target: 'email.error.empty' | |
}, | |
{ | |
cond: 'isEmailBadFormat', | |
target: 'email.error.badFormat' | |
}, | |
], | |
} | |
}, | |
code: { | |
on: { | |
INPUT: { | |
actions: 'cacheCode', | |
target: 'code.noError' | |
}, | |
SUBMIT: [ | |
{ | |
cond: 'isCodeEmpty', | |
target: 'code.error.empty' | |
}, | |
{ target: 'codeService' } | |
], | |
RESEND: 'emailService', | |
}, | |
initial: 'noError', | |
states: { | |
noError: {}, | |
error: { | |
initial: 'empty', | |
states: { | |
empty: {}, | |
invalid: {}, | |
expired: {}, | |
}, | |
}, | |
} | |
}, | |
codeService: { | |
on: { | |
SUCCESS: 'dashboard', | |
ERROR: [ | |
{ | |
cond: 'isCodeInvalid', | |
target: 'code.error.invalid' | |
}, | |
{ | |
cond: 'isCodeExpired', | |
target: 'code.error.expired' | |
} | |
] | |
} | |
}, | |
dashboard: { type: 'final' } | |
}, | |
}, { | |
guards: { | |
isEmailEmpty: (ctx, evt) => ctx.email === '', | |
isEmailBadFormat: (ctx, evt) => ctx.email === 'fakeemail', | |
isCodeEmpty: (ctx, evt) => ctx.code === '', | |
isCodeInvalid: (ctx, evt) => ctx.code !== '12345', | |
isCodeExpired: (ctx, evt) => ctx.code === 'expired', | |
}, | |
actions: { | |
cacheEmail: (ctx, evt) => assign({ | |
email: evt.email | |
}), | |
cacheCode: (ctx, evt) => assign({ | |
code: evt.code | |
}), | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment