Skip to content

Instantly share code, notes, and snippets.

@hnordt
hnordt / machine.js
Created July 15, 2019 23:26
Generated by [XState Viz](https://xstate.js.org/viz)
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@hnordt
hnordt / machine.js
Last active July 20, 2019 01:14
Generated by XState Viz: https://xstate.js.org/viz
let approvalsMachine = Machine(
{
id: "approvals",
context: {
dateStart: "",
dateEnd: "",
page: 0,
results: [],
items: {},
error: null
@hnordt
hnordt / machine.js
Last active July 20, 2019 04:49
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine({
id: "approvals",
context: {
page: 0,
results: [],
selectedIds: {},
error: null
},
type: "parallel",
states: {
@hnordt
hnordt / machine.js
Created July 29, 2019 22:53
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@hnordt
hnordt / machine.js
Last active September 13, 2019 21:38
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@hnordt
hnordt / machine.js
Last active September 20, 2019 21:57
Generated by XState Viz: https://xstate.js.org/viz
let widgetSettingsMachine = Machine({
id: 'widgetSettings',
context: {},
type: "parallel",
states: {
general: {
on: {
CHANGE_NAME: {
actions: "updateName"
},
@hnordt
hnordt / machine.js
Created September 22, 2019 15:18
Generated by XState Viz: https://xstate.js.org/viz
let fetchMachine = Machine({
id: 'fetch',
initial: 'idle',
context: {
retries: 0
},
states: {
idle: {
on: {
FETCH: 'loading'
@hnordt
hnordt / machine.js
Last active July 20, 2022 19:49
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: "widget",
context: {
id: null,
settings: {
name: null,
refreshInterval: 30,
waitDelay: 5, // TODO: make editable
dataSource: null,
series: null,
@hnordt
hnordt / machine.js
Created January 29, 2020 18:27
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: "resource",
context: {
params: {},
data: null,
meta: {}
},
initial: "idle",
states: {
idle: {},
@hnordt
hnordt / machine.js
Created February 6, 2020 18:45
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: "resource",
context: {
params: {},
data: null,
meta: {}
},
initial: "idle",
states: {
idle: {},