Last active
September 23, 2020 15:32
-
-
Save TheDutchCoder/d31d6739b5606c961256537717cb4efe 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
// 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