Skip to content

Instantly share code, notes, and snippets.

@TheDutchCoder
Last active September 23, 2020 15:32
Show Gist options
  • Save TheDutchCoder/d31d6739b5606c961256537717cb4efe to your computer and use it in GitHub Desktop.
Save TheDutchCoder/d31d6739b5606c961256537717cb4efe to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const tryLogin = () => {
return new Promise((resolve, reject) => {
setTimeout(() => {
if (Math.random() < .5) {
reject({ code: 1 })
}
resolve()
}, 1000)
})
}
const authMachine = Machine({
id: 'auth',
initial: 'unauthenticated',
states: {
unauthenticated: {
initial: 'idle',
states: {
idle: {
on: {
LOGIN: 'pending'
}
},
pending: {
invoke: {
src: 'logMeIn',
onDone: '#auth.authenticated',
onError: [
{
cond: 'noToken',
actions: 'test'
}
]
},
},
},
},
authenticated: {},
}
}, {
services: {
logMeIn: () => tryLogin()
},
guards: {
noToken: (ctx, evt) => evt.data && evt.data.code === 1
},
actions: {
test: () => { window.alert('go to login') }
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment