Last active
February 13, 2020 17:07
-
-
Save nrgapple/38fb3d34e3aa471a20388db78e30d510 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains 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 appMachine = Machine({ | |
id: 'shorts-app', | |
context: {}, | |
type: 'parallel', | |
states: { | |
start: { | |
initial: 'load', | |
states: { | |
load: { | |
initial: 'loadUser', | |
states: { | |
loadUser: { | |
entry: ['loadUser'], | |
on: { | |
USER_LOADED: { | |
target: 'connectAndGather', | |
} | |
} | |
}, | |
connectAndGather: { | |
type: 'parallel', | |
states: { | |
setupClientLocation: { | |
initial: 'loadLocation', | |
states: { | |
loadLocation: { | |
entry: ['loadLocation'], | |
on: { | |
LOCATION_LOADED: { | |
target: 'postLocation', | |
} | |
} | |
}, | |
postLocation: { | |
invoke: { | |
src: 'postLocation', | |
onDone: 'success', | |
} | |
}, | |
success: { type: 'final' }, | |
} | |
}, | |
setupClient: { | |
initial: 'createClient', | |
states: { | |
createClient: { | |
entry: ['createClient'], | |
on: { | |
CLIENT_CREATED: { | |
target: 'configureClient', | |
}, | |
}, | |
}, | |
configureClient: { | |
on: { | |
CLIENT_CONFIGURED: 'success', | |
} | |
}, | |
success: { type: 'final' }, | |
} | |
}, | |
loadAppData: { | |
initial: 'start', | |
states: { | |
start: { | |
entry: ['loadAppData'], | |
on: { | |
APP_DATA_SUCCESS: 'success', | |
}, | |
}, | |
success: { type: 'final' }, | |
} | |
}, | |
}, | |
onDone: 'finish', | |
}, | |
finish : {type: 'final'} | |
}, | |
onDone: 'subscribe', | |
}, | |
subscribe: { | |
type: 'parallel', | |
states: { | |
subToChatNotifications: { | |
initial: 'start', | |
states: { | |
start: { | |
on: { | |
SUBBED_TO_CHAT_NOTIF: { | |
target: 'success', | |
} | |
} | |
}, | |
success: { type: 'final' }, | |
} | |
}, | |
}, | |
onDone: 'ready', | |
}, | |
ready: {}, | |
}, | |
}, | |
views: { | |
initial: 'app', | |
states: { | |
app: { | |
on: { | |
CHAT_TRANS: { | |
target: 'chat', | |
} | |
} | |
}, | |
chat: { | |
on: { | |
EXITED: { | |
target: 'app', | |
} | |
} | |
}, | |
} | |
} | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment