Created
May 13, 2021 14:09
-
-
Save LevelbossMike/f8d2fa00d1d1fb8cd34bc953a2e1747f 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) | |
const formMachine = Machine( | |
{ | |
id: 'form', | |
initial: 'idle', | |
context: { | |
formObject: { | |
validate: () => {}, | |
}, | |
onSubmit: () => {}, | |
schema: object().shape(), | |
}, | |
type: 'parallel', | |
states: { | |
behavior: { | |
initial: 'idle', | |
states: { | |
idle: { | |
on: { | |
SUBMIT: { | |
target: 'busy', | |
cond: 'canSubmit', | |
}, | |
}, | |
}, | |
busy: { | |
invoke: { | |
src: 'submitForm', | |
onDone: 'success', | |
onError: 'error', | |
}, | |
}, | |
success: { | |
entry: 'handleSubmitSuccess', | |
}, | |
error: { | |
entry: 'handleSubmitError', | |
}, | |
}, | |
}, | |
change: { | |
initial: 'unchanged', | |
states: { | |
unchanged: { | |
entry: [send('VALIDATE')], | |
on: { | |
CHANGE: { | |
target: 'changed', | |
actions: ['update'], | |
}, | |
}, | |
}, | |
changed: { | |
entry: [send('VALIDATE')], | |
always: [{ target: 'unchanged', cond: 'isPristine' }], | |
on: { | |
CHANGE: { | |
target: 'changed', | |
actions: ['update'], | |
}, | |
}, | |
}, | |
}, | |
}, | |
validity: { | |
initial: 'unknown', | |
states: { | |
unknown: { | |
on: { | |
VALIDATE: 'validating', | |
}, | |
}, | |
validating: { | |
invoke: { | |
src: 'validateFormObject', | |
onDone: 'valid', | |
onError: 'invalid', | |
}, | |
on: { | |
VALIDATE: 'validating', | |
}, | |
}, | |
valid: { | |
entry: [ | |
assign({ | |
validationErrors: [], | |
}), | |
], | |
on: { | |
VALIDATE: 'validating', | |
}, | |
}, | |
invalid: { | |
entry: ['handleValidationErrors'], | |
on: { | |
VALIDATE: 'validating', | |
}, | |
}, | |
}, | |
}, | |
}, | |
}, | |
{ | |
actions: { | |
update() {}, | |
handleValidationErrors() {}, | |
}, | |
guards: { | |
isPristine() { | |
return Math.random() > 0.5; | |
}, | |
canSubmit(_context, _event, guardMeta) { | |
return Math.random() > 0.5; | |
}, | |
}, | |
} | |
); | |
function object() { | |
return { | |
shape() {} | |
} | |
} | |
function validate() {} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment