Skip to content

Instantly share code, notes, and snippets.

View aumeunier's full-sized avatar

Aurélien Meunier aumeunier

View GitHub Profile
@aumeunier
aumeunier / machine.js
Created June 22, 2021 11:56
Generated by XState Viz: https://xstate.js.org/viz
const onFormUpdate = { target: "Editing", actions: "onUpdate" };
/**
* This is the definition of the StateMachine.
* This machine defines a generic behavior for a form feature:
* - events (update, submitting, result of the submit)
* - transitions
* - guards/actions/services to call WITHOUT defining them
*
* Note that the "context" is set as 'any' because the machine itself does not
@aumeunier
aumeunier / machine.js
Created June 22, 2021 11:57
Generated by XState Viz: https://xstate.js.org/viz
const onFormUpdate = { target: "Editing", actions: "onUpdate" };
/**
* This is the definition of the StateMachine.
* This machine defines a generic behavior for a form feature:
* - events (update, submitting, result of the submit)
* - transitions
* - guards/actions/services to call WITHOUT defining them
*
* Note that the "context" is set as 'any' because the machine itself does not