35 lines
551 B
JavaScript
35 lines
551 B
JavaScript
|
export default {
|
||
|
id: 'auth-dialog',
|
||
|
initial: 'idle',
|
||
|
on: {
|
||
|
CHANGE: [
|
||
|
{
|
||
|
target: 'authorized',
|
||
|
cond: 'hasToken',
|
||
|
actions: ['login'],
|
||
|
},
|
||
|
{
|
||
|
target: 'unauthorized',
|
||
|
actions: ['logout'],
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
states: {
|
||
|
idle: {
|
||
|
on: {
|
||
|
CHANGE: [
|
||
|
{
|
||
|
target: 'authorized',
|
||
|
cond: 'hasToken',
|
||
|
},
|
||
|
{
|
||
|
target: 'unauthorized',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
unauthorized: {},
|
||
|
authorized: {},
|
||
|
},
|
||
|
};
|