mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
* feat: 添加 login 插件 * docs: 优化 access docs 文档 * refactor: beforeRender迁移到router创建后 * fix: 修复清除webpack-cache问题 * refactor: 优化 plugin 插件 Co-authored-by: wanchun <445436867@qq.com>
50 lines
1.6 KiB
JavaScript
50 lines
1.6 KiB
JavaScript
// eslint-disable-next-line import/no-unresolved
|
||
import { plugin, ApplyPluginsType } from '@@/core/coreExports';
|
||
// eslint-disable-next-line import/extensions, import/no-unresolved
|
||
import { access, install } from './core';
|
||
|
||
export function onRouterCreated({ router }) {
|
||
router.beforeEach(async (to, from, next) => {
|
||
const runtimeConfig = plugin.applyPlugins({
|
||
key: 'access',
|
||
type: ApplyPluginsType.modify,
|
||
initialValue: {},
|
||
});
|
||
if (to.matched.length === 0) {
|
||
if (runtimeConfig.noFoundHandler && typeof runtimeConfig.noFoundHandler === 'function') {
|
||
return runtimeConfig.noFoundHandler({
|
||
router,
|
||
to,
|
||
from,
|
||
next,
|
||
});
|
||
}
|
||
return next(false);
|
||
}
|
||
if (Array.isArray(runtimeConfig.ignoreAccess)) {
|
||
const isIgnored = await access.match(to.matched[to.matched.length - 1].path, runtimeConfig.ignoreAccess);
|
||
if (isIgnored) {
|
||
return next();
|
||
}
|
||
}
|
||
// path是匹配路由的path,不是页面hash
|
||
const canRoute = await access.hasAccess(to.matched[to.matched.length - 1].path);
|
||
if (canRoute) {
|
||
return next();
|
||
}
|
||
if (runtimeConfig.unAccessHandler && typeof runtimeConfig.unAccessHandler === 'function') {
|
||
return runtimeConfig.unAccessHandler({
|
||
router,
|
||
to,
|
||
from,
|
||
next,
|
||
});
|
||
}
|
||
next(false);
|
||
});
|
||
}
|
||
|
||
export function onAppCreated({ app }) {
|
||
install(app);
|
||
}
|