This file contains hidden or 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
| Machine({ | |
| id: "resource", | |
| context: { | |
| params: {}, | |
| data: null, | |
| meta: {} | |
| }, | |
| initial: "idle", | |
| states: { | |
| idle: {}, |
This file contains hidden or 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
| Machine({ | |
| id: "widget", | |
| context: { | |
| id: null, | |
| settings: { | |
| name: null, | |
| refreshInterval: 30, | |
| waitDelay: 5, // TODO: make editable | |
| dataSource: null, | |
| series: null, |
This file contains hidden or 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
| let fetchMachine = Machine({ | |
| id: 'fetch', | |
| initial: 'idle', | |
| context: { | |
| retries: 0 | |
| }, | |
| states: { | |
| idle: { | |
| on: { | |
| FETCH: 'loading' |
This file contains hidden or 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
| let widgetSettingsMachine = Machine({ | |
| id: 'widgetSettings', | |
| context: {}, | |
| type: "parallel", | |
| states: { | |
| general: { | |
| on: { | |
| CHANGE_NAME: { | |
| actions: "updateName" | |
| }, |
This file contains hidden or 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 |
This file contains hidden or 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 |
This file contains hidden or 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
| const fetchMachine = Machine({ | |
| id: "approvals", | |
| context: { | |
| page: 0, | |
| results: [], | |
| selectedIds: {}, | |
| error: null | |
| }, | |
| type: "parallel", | |
| states: { |
This file contains hidden or 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
| let approvalsMachine = Machine( | |
| { | |
| id: "approvals", | |
| context: { | |
| dateStart: "", | |
| dateEnd: "", | |
| page: 0, | |
| results: [], | |
| items: {}, | |
| error: null |
This file contains hidden or 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 |
This file contains hidden or 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
| function Col({ | |
| as = "div", | |
| justifyContent, | |
| alignItems, | |
| flex, | |
| children | |
| }) { | |
| return createElement(as, { | |
| className: css({ | |
| display: "flex", |