Skip to content

Instantly share code, notes, and snippets.

@Winwardo
Winwardo / machine.js
Last active March 7, 2020 16:32
Generated by XState Viz: https://xstate.js.org/viz
const orderPage = Machine({
id: "order",
initial: "base",
context: {
refund: null,
},
states: {
base: {
on:{
REFUND: 'refund',
@Winwardo
Winwardo / machine.js
Last active December 29, 2020 11:31
Generated by XState Viz: https://xstate.js.org/viz
function fail(makeErrorData = (c, e) => ({ ...e })) {
return {
target: "#payment.failed",
actions: assign({
error_code: (c, e) => e.type,
error_data: makeErrorData,
}),
};
}