Blame view
src/store/modules/user.js
2.95 KB
c40d344e2 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 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 auto commit the c... |
54 55 56 57 58 59 |
login({ username: username.trim(), password: password }).then(response => { console.log('返回的数据-- step 3------>', response); // const { token, name, id, password } = response |
feb3d4f57 auto commit the c... |
60 61 62 63 |
const { token, name } = response |
c40d344e2 auto commit the c... |
64 65 66 |
console.log('返回的数据-- step 4------>', response); commit('SET_TOKEN', token) setToken(token) |
80a28914e init |
67 68 |
resolve() }).catch(error => { |
c40d344e2 auto commit the c... |
69 |
console.log('返回的数据-- step 4.1------>', error); |
80a28914e init |
70 71 72 73 74 75 |
reject(error) }) }) }, // get user info |
c40d344e2 auto commit the c... |
76 77 78 79 |
getInfo({ commit, state }) { |
80a28914e init |
80 81 |
return new Promise((resolve, reject) => { getInfo(state.token).then(response => { |
c40d344e2 auto commit the c... |
82 83 |
console.log('返回的数据-- step 5------>', state); console.log('返回的数据-- step 5.1------>', response); |
feb3d4f57 auto commit the c... |
84 85 86 87 88 89 90 91 |
const { avatar, id, name, password, roles, token } = response |
c40d344e2 auto commit the c... |
92 |
if (!roles) { |
80a28914e init |
93 94 |
reject('Verification failed, please Login again.') } |
c40d344e2 auto commit the c... |
95 |
console.error('返回的数据-- step 5.2------>', response); |
cf56a6c30 init role permission |
96 97 98 99 |
// 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 |
100 |
commit('SET_ROLES', roles) |
80a28914e init |
101 102 |
commit('SET_NAME', name) commit('SET_AVATAR', avatar) |
c40d344e2 auto commit the c... |
103 |
resolve(response) |
80a28914e init |
104 |
}).catch(error => { |
c40d344e2 auto commit the c... |
105 |
console.log('返回的数据-- step 5.3------>', error); |
80a28914e init |
106 107 108 109 110 111 |
reject(error) }) }) }, // user logout |
c40d344e2 auto commit the c... |
112 113 114 115 |
logout({ commit, state }) { |
80a28914e init |
116 117 118 119 120 121 122 123 124 125 126 127 128 |
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 auto commit the c... |
129 130 131 |
resetToken({ commit }) { |
80a28914e init |
132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
return new Promise(resolve => { removeToken() // must remove token first commit('RESET_STATE') resolve() }) } } export default { namespaced: true, state, mutations, actions } |