mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix(plugin-access): 修复切换角色时,getAccess 不正确 (#240)
This commit is contained in:
parent
5a041f0882
commit
1b0d3409bb
@ -1,7 +1,7 @@
|
|||||||
import { reactive, unref, computed, inject } from "vue";
|
import { computed, reactive, unref } from "vue";
|
||||||
import createDirective from "./createDirective";
|
|
||||||
import createComponent from "./createComponent";
|
|
||||||
import { isPlainObject } from "{{{ lodashPath }}}";
|
import { isPlainObject } from "{{{ lodashPath }}}";
|
||||||
|
import createComponent from "./createComponent";
|
||||||
|
import createDirective from "./createDirective";
|
||||||
|
|
||||||
function isPromise(obj) {
|
function isPromise(obj) {
|
||||||
return (
|
return (
|
||||||
@ -20,12 +20,23 @@ const state = reactive({
|
|||||||
const rolePromiseList = [];
|
const rolePromiseList = [];
|
||||||
const accessPromiseList = [];
|
const accessPromiseList = [];
|
||||||
|
|
||||||
|
// 预设的 accessId,且不会被移除
|
||||||
|
const presetAccessIds = []
|
||||||
|
const setPresetAccess = (access) => {
|
||||||
|
const accessIds = Array.isArray(access) ? access : [access];
|
||||||
|
|
||||||
|
presetAccessIds.push(...accessIds.filter(id => !presetAccessIds.includes(id)));
|
||||||
|
}
|
||||||
|
|
||||||
const getAllowAccessIds = () => {
|
const getAllowAccessIds = () => {
|
||||||
|
const result = [...presetAccessIds, ...state.currentAccessIds];
|
||||||
|
|
||||||
const roleAccessIds = state.roles[state.currentRoleId];
|
const roleAccessIds = state.roles[state.currentRoleId];
|
||||||
if (Array.isArray(roleAccessIds) && roleAccessIds.length > 0) {
|
if (Array.isArray(roleAccessIds) && roleAccessIds.length > 0) {
|
||||||
return state.currentAccessIds.concat(roleAccessIds);
|
result.push(...roleAccessIds);
|
||||||
}
|
}
|
||||||
return state.currentAccessIds;
|
|
||||||
|
return result;
|
||||||
};
|
};
|
||||||
|
|
||||||
const _syncSetAccessIds = (promise) => {
|
const _syncSetAccessIds = (promise) => {
|
||||||
@ -144,6 +155,7 @@ export const access = {
|
|||||||
setAccess,
|
setAccess,
|
||||||
match,
|
match,
|
||||||
getAccess: getAllowAccessIds,
|
getAccess: getAllowAccessIds,
|
||||||
|
setPresetAccess,
|
||||||
};
|
};
|
||||||
|
|
||||||
export const hasAccessSync = (path) => {
|
export const hasAccessSync = (path) => {
|
||||||
|
@ -8,13 +8,8 @@ if (!accessApi) {
|
|||||||
|
|
||||||
export const access = (memo) => {
|
export const access = (memo) => {
|
||||||
const runtimeConfig = getConfig();
|
const runtimeConfig = getConfig();
|
||||||
const accessIds = accessApi.getAccess();
|
accessApi.setPresetAccess(['/403', '/404']);
|
||||||
if (!accessIds.includes('/403')) {
|
|
||||||
accessApi.setAccess(accessIds.concat('/403'));
|
|
||||||
}
|
|
||||||
if (!accessIds.includes('/404')) {
|
|
||||||
accessApi.setAccess(accessIds.concat('/404'));
|
|
||||||
}
|
|
||||||
return {
|
return {
|
||||||
unAccessHandler({ router, to, from, next }) {
|
unAccessHandler({ router, to, from, next }) {
|
||||||
if (runtimeConfig.unAccessHandler && typeof runtimeConfig.unAccessHandler === 'function') {
|
if (runtimeConfig.unAccessHandler && typeof runtimeConfig.unAccessHandler === 'function') {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user