user.js 1.01 KB
Newer Older
ζ„šι“'s avatar
ζ„šι“ committed
1
import { query as queryUsers, queryCurrent } from '@/services/user';
2 3 4 5 6 7 8 9 10 11

export default {
  namespace: 'user',

  state: {
    list: [],
    currentUser: {},
  },

  effects: {
afc163's avatar
afc163 committed
12
    *fetch(_, { call, put }) {
13 14 15 16 17 18
      const response = yield call(queryUsers);
      yield put({
        type: 'save',
        payload: response,
      });
    },
afc163's avatar
afc163 committed
19
    *fetchCurrent(_, { call, put }) {
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
      const response = yield call(queryCurrent);
      yield put({
        type: 'saveCurrentUser',
        payload: response,
      });
    },
  },

  reducers: {
    save(state, action) {
      return {
        ...state,
        list: action.payload,
      };
    },
    saveCurrentUser(state, action) {
      return {
        ...state,
afc163's avatar
afc163 committed
38
        currentUser: action.payload || {},
39 40
      };
    },
afc163's avatar
afc163 committed
41 42 43 44 45
    changeNotifyCount(state, action) {
      return {
        ...state,
        currentUser: {
          ...state.currentUser,
46 47
          notifyCount: action.payload.totalCount,
          unreadCount: action.payload.unreadCount,
afc163's avatar
afc163 committed
48 49 50
        },
      };
    },
51 52
  },
};