login.js 1.5 KB
Newer Older
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
1
import { routerRedux } from 'dva/router';
afc163's avatar
afc163 committed
2
import { fakeAccountLogin } from '../services/api';
ddcat1115's avatar
ddcat1115 committed
3
import { setAuthority } from '../utils/authority';
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
4
import { reloadAuthorized } from '../utils/Authorized';
5 6 7 8 9 10 11 12 13

export default {
  namespace: 'login',

  state: {
    status: undefined,
  },

  effects: {
afc163's avatar
afc163 committed
14
    *login({ payload }, { call, put }) {
ddcat1115's avatar
ddcat1115 committed
15
      const response = yield call(fakeAccountLogin, payload);
16
      yield put({
17
        type: 'changeLoginStatus',
18 19
        payload: response,
      });
afc163's avatar
afc163 committed
20 21
      // Login successfully
      if (response.status === 'ok') {
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
22 23
        reloadAuthorized();
        yield put(routerRedux.push('/'));
afc163's avatar
afc163 committed
24
      }
25
    },
26 27 28 29 30 31 32
    *logout(_, { put, select }) {
      try {
        // get location pathname
        const urlParams = new URL(window.location.href);
        const pathname = yield select(state => state.routing.location.pathname);
        // add the parameters in the url
        urlParams.searchParams.set('redirect', pathname);
jim's avatar
jim committed
33
        window.history.replaceState(null, 'login', urlParams.href);
34 35 36 37 38 39 40 41
      } finally {
        yield put({
          type: 'changeLoginStatus',
          payload: {
            status: false,
            currentAuthority: 'guest',
          },
        });
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
42 43
        reloadAuthorized();
        yield put(routerRedux.push('/user/login'));
44
      }
ddcat1115's avatar
fix #52  
ddcat1115 committed
45
    },
46 47 48
  },

  reducers: {
49
    changeLoginStatus(state, { payload }) {
ddcat1115's avatar
ddcat1115 committed
50
      setAuthority(payload.currentAuthority);
51 52 53 54 55 56 57 58
      return {
        ...state,
        status: payload.status,
        type: payload.type,
      };
    },
  },
};