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: 'Unintegrated Tournaments', | |
initial: 'setUp', | |
context: {}, | |
states: { | |
disabled: { | |
type: 'final', | |
}, | |
setUp: { | |
on: { |
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": "Example 1", | |
"context": {}, | |
"type": "parallel", | |
"states": { | |
"routing": { | |
"initial": "initial", | |
"states": { | |
"initial": { | |
"on": { |
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: '@mahou/routing', | |
type: "parallel", | |
initial: "A", | |
states: { | |
routing: { | |
initial: "brands", | |
states: { | |
"brands": { | |
"on": { |
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 WEB_PLAYBACK_API = 'https://api.spotify.com/v1/me/player'; | |
const InitialState = '@Initial'; | |
const ReadyState = '@Ready'; | |
const NotReadyState = '@NotReadyState'; | |
const IdleState = '@Idle'; | |
const PlayState = '@Play'; | |
const RequestingToPlayTrackState = '@Play/Track/Request'; | |
const RequestingToPlayAlbumState = '@Play/Album/Request'; | |
const RequestingToResumeTrackState = '@Resume/Request'; | |
const PlayingState = '@Play/Success'; |
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
function cuid() {} | |
function sweetAlert() {} | |
function moment() {} | |
function domToImage() {} | |
function api() {} | |
function createProgressFormDraft() {} | |
function adjustMonthYearDate() {} | |
function formatIntoValidServerDate () {} |
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 cuid() {} | |
function sweetAlert() {} | |
const REDIRECT_LOCATION = 'https://www.getluna.com/'; | |
/** *************************************************************************** | |
* Form Machine * | |
*************************************************************************** */ | |
const InitialState = '@Initial'; |
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
"use strict"; | |
const InitialState = '@Initial'; | |
const FetchingState = '@Data/Request'; | |
const FailureState = '@Data/Failure'; | |
const PostFetchState = '@Data/Post'; | |
const IdleState = '@Idle'; | |
const TabsModeState = '@TabsMode'; | |
const SinglePaneModeState = '@SinglePaneModeState'; | |
const AlbumsTabState = '@Albums'; | |
const AlbumsIdleState = '@Albums/Idle'; |
NewerOlder