123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- import { login, logout, getInfo } from '@/api/sys/user'
- import { getToken, setToken, removeToken } from '@/utils/auth'
- import router, { resetRouter } from '@/router'
- const state = {
- token: getToken(),
- username: '',
- avatar: '',
- introduction: '',
- roles: [],
- menus: [],
- permissions: []
- }
- const mutations = {
- SET_TOKEN: (state, token) => {
- state.token = token
- },
- SET_USERID: (state, userId) => {
- state.userId = userId
- },
- SET_USERNAME: (state, username) => {
- state.username = username
- },
- SET_AVATAR: (state, avatar) => {
- state.avatar = avatar
- },
- SET_ROLES: (state, roles) => {
- state.roles = roles
- },
- SET_MENUS: (state, menus) => {
- state.menus = menus
- },
- SET_PERMISSIONS: (state, permissions) => {
- state.permissions = permissions
- },
- SET_ROLEDESC: (state, roleDesc) => {
- state.roleDesc = roleDesc
- },
- SET_FULLNAME: (state, fullName) => {
- state.fullName = fullName
- },
- SET_PHONE: (state, phone) => {
- state.phone = phone
- }
- }
- const actions = {
- // user login
- login({ commit }, userInfo) {
- const { username, password } = userInfo
- return new Promise((resolve, reject) => {
- login(username.trim(), password.trim())
- .then(response => {
- const { data } = response
- commit('SET_TOKEN', data.token)
- setToken(data.token)
- resolve()
- })
- .catch(error => {
- reject(error)
- })
- })
- },
- // get user info
- getInfo({ commit, state }) {
- return new Promise((resolve, reject) => {
- getInfo()
- .then(response => {
- const { data } = response
- if (!data) {
- reject('Verification failed, please Login again.')
- }
- const { roles, menus, permissions, id, username, avatar, roleDesc, fullName, phone } = data
- // roles must be a non-empty array
- if (!roles || roles.length <= 0) {
- reject('getInfo: roles must be a non-null array!')
- }
- commit('SET_ROLES', roles)
- commit('SET_MENUS', menus)
- commit('SET_PERMISSIONS', permissions)
- commit('SET_USERID', id)
- commit('SET_USERNAME', username)
- commit('SET_AVATAR', avatar)
- commit('SET_ROLEDESC', roleDesc)
- commit('SET_FULLNAME', fullName)
- commit('SET_PHONE', phone)
- resolve(data)
- })
- .catch(error => {
- reject(error)
- })
- })
- },
- // user logout
- logout({ commit, state, dispatch }) {
- return new Promise((resolve, reject) => {
- logout(state.token)
- .then(() => {
- commit('SET_TOKEN', '')
- commit('SET_ROLES', [])
- commit('SET_PERMISSIONS', [])
- removeToken()
- resetRouter()
- // reset visited views and cached views
- // to fixed https://github.com/PanJiaChen/vue-element-admin/issues/2485
- dispatch('tagsView/delAllViews', null, { root: true })
- resolve()
- })
- .catch(error => {
- reject(error)
- })
- })
- },
- // remove token
- resetToken({ commit }) {
- return new Promise(resolve => {
- commit('SET_TOKEN', '')
- commit('SET_ROLES', [])
- resetRouter()
- removeToken()
- resolve()
- })
- },
- // dynamically modify permissions
- async changeRoles({ commit, dispatch }, role) {
- const token = role + '-token'
- commit('SET_TOKEN', token)
- setToken(token)
- const { roles } = await dispatch('getInfo')
- resetRouter()
- // generate accessible routes map based on roles
- const accessRoutes = await dispatch('permission/generateRoutes', roles, { root: true })
- // dynamically add accessible routes
- router.addRoutes(accessRoutes)
- // reset visited views and cached views
- dispatch('tagsView/delAllViews', null, { root: true })
- }
- }
- export default {
- namespaced: true,
- state,
- mutations,
- actions
- }
|