Blame view

src/store/modules/user.js 2.85 KB
c40d344e2   Adam   auto commit the c...
1
2
3
4
5
6
7
8
9
10
11
12
13
  import {
    login,
    logout,
    getInfo
  } from '@/api/user'
  import {
    getToken,
    setToken,
    removeToken
  } from '@/utils/auth'
  import {
    resetRouter
  } from '@/router'
80a28914e   吉鹏   init
14
15
16
17
18
  
  const getDefaultState = () => {
    return {
      token: getToken(),
      name: '',
cf56a6c30   吉鹏   init role permission
19
20
      avatar: '',
      roles: []
80a28914e   吉鹏   init
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
    }
  }
  
  const state = getDefaultState()
  
  const mutations = {
    RESET_STATE: (state) => {
      Object.assign(state, getDefaultState())
    },
    SET_TOKEN: (state, token) => {
      state.token = token
    },
    SET_NAME: (state, name) => {
      state.name = name
    },
    SET_AVATAR: (state, avatar) => {
      state.avatar = avatar
cf56a6c30   吉鹏   init role permission
38
39
40
    },
    SET_ROLES: (state, roles) => {
      state.roles = roles
80a28914e   吉鹏   init
41
42
43
44
45
    }
  }
  
  const actions = {
    // user login
c40d344e2   Adam   auto commit the c...
46
47
48
49
50
51
52
    login({
      commit
    }, userInfo) {
      const {
        username,
        password
      } = userInfo
80a28914e   吉鹏   init
53
      return new Promise((resolve, reject) => {
c40d344e2   Adam   auto commit the c...
54
55
56
57
58
59
60
61
62
63
        login({
          username: username.trim(),
          password: password
        }).then(response => {
          console.log('返回的数据-- step 3------>', response);
          // const { token, name, id, password } = response
          const {token,name} = response
          console.log('返回的数据-- step 4------>', response);
          commit('SET_TOKEN', token)
          setToken(token)
80a28914e   吉鹏   init
64
65
          resolve()
        }).catch(error => {
c40d344e2   Adam   auto commit the c...
66
          console.log('返回的数据-- step 4.1------>', error);
80a28914e   吉鹏   init
67
68
69
70
71
72
          reject(error)
        })
      })
    },
  
    // get user info
c40d344e2   Adam   auto commit the c...
73
74
75
76
    getInfo({
      commit,
      state
    }) {
80a28914e   吉鹏   init
77
78
      return new Promise((resolve, reject) => {
        getInfo(state.token).then(response => {
c40d344e2   Adam   auto commit the c...
79
80
81
82
          console.log('返回的数据-- step 5------>', state);
          console.log('返回的数据-- step 5.1------>', response);
          const {avatar,id,name,password,roles,token} = response
          if (!roles) {
80a28914e   吉鹏   init
83
84
            reject('Verification failed, please Login again.')
          }
c40d344e2   Adam   auto commit the c...
85
          console.error('返回的数据-- step 5.2------>', response);
cf56a6c30   吉鹏   init role permission
86
87
88
89
          // roles must be a non-empty array
          if (!roles || roles.length <= 0) {
            reject('getInfo: roles must be a non-null array!')
          }
cf56a6c30   吉鹏   init role permission
90
          commit('SET_ROLES', roles)
80a28914e   吉鹏   init
91
92
          commit('SET_NAME', name)
          commit('SET_AVATAR', avatar)
c40d344e2   Adam   auto commit the c...
93
          resolve(response)
80a28914e   吉鹏   init
94
        }).catch(error => {
c40d344e2   Adam   auto commit the c...
95
          console.log('返回的数据-- step 5.3------>', error);
80a28914e   吉鹏   init
96
97
98
99
100
101
          reject(error)
        })
      })
    },
  
    // user logout
c40d344e2   Adam   auto commit the c...
102
103
104
105
    logout({
      commit,
      state
    }) {
80a28914e   吉鹏   init
106
107
108
109
110
111
112
113
114
115
116
117
118
      return new Promise((resolve, reject) => {
        logout(state.token).then(() => {
          removeToken() // must remove  token  first
          resetRouter()
          commit('RESET_STATE')
          resolve()
        }).catch(error => {
          reject(error)
        })
      })
    },
  
    // remove token
c40d344e2   Adam   auto commit the c...
119
120
121
    resetToken({
      commit
    }) {
80a28914e   吉鹏   init
122
123
124
125
126
127
128
129
130
131
132
133
134
135
      return new Promise(resolve => {
        removeToken() // must remove  token  first
        commit('RESET_STATE')
        resolve()
      })
    }
  }
  
  export default {
    namespaced: true,
    state,
    mutations,
    actions
  }