Skip to content

Instantly share code, notes, and snippets.

@tcodes0
Last active May 11, 2021 22:36
Show Gist options
  • Save tcodes0/7e5127cd89f76ee99be51d8151779262 to your computer and use it in GitHub Desktop.
Save tcodes0/7e5127cd89f76ee99be51d8151779262 to your computer and use it in GitHub Desktop.
forms machine
const someMachine = Machine({
id: 'form-status',
initial: 'prefill',
states: {
prefill: {
on: {
SEND: 'sent',
SUBMIT: 'completed',
},
},
sent: {
on: {
// only member action
SUBMIT: 'review',
SUBMIT_NOREVIEW: 'completed', // formdef.review == false
},
},
review: {
on:{
REJECT: 'prefill', // aka send
SUBMIT: 'completed', // aka confirm
},
},
completed: {
type: 'final',
},
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment