fix(built-in): 规范 beforeRender 逻辑,如果异常,则不应该执行后续的 router.beforeEach (#179)

* fix: 修复watermark插件类型问题

* fix(built-in): 避免在beforeRender action中操作路由或者location.href,构建后会出现卡死

* feat: 换更合理的方式
This commit is contained in:
听海 2023-03-30 14:57:39 +08:00 committed by GitHub
parent c2279fac48
commit bddff450b7

View File

@ -39,34 +39,37 @@ export const createRouter = (routes) => {
let isInit = false let isInit = false
router.beforeEach(async (to, from, next) => { router.beforeEach(async (to, from, next) => {
if(!isInit) { if(isInit){
isInit = true return next()
const beforeRenderConfig = plugin.applyPlugins({
key: "beforeRender",
type: ApplyPluginsType.modify,
initialValue: {
loading: null,
action: null
},
});
if (typeof beforeRenderConfig.action === "function") {
const rootElement = document.createElement('div');
document.body.appendChild(rootElement)
const app = createApp(beforeRenderConfig.loading);
app.mount(rootElement);
try {
const initialState = await beforeRenderConfig.action({router, history});
updateInitialState(initialState || {})
} catch(e){
console.error(`[fes] beforeRender执行出现异常`);
console.error(e);
}
app.unmount();
app._container.innerHTML = '';
document.body.removeChild(rootElement);
}
} }
next(); isInit = true
const beforeRenderConfig = plugin.applyPlugins({
key: "beforeRender",
type: ApplyPluginsType.modify,
initialValue: {
loading: null,
action: null
},
});
if (typeof beforeRenderConfig.action !== "function") {
return next();
}
const rootElement = document.createElement('div');
document.body.appendChild(rootElement)
const app = createApp(beforeRenderConfig.loading);
app.mount(rootElement);
try {
const initialState = await beforeRenderConfig.action({router, history});
updateInitialState(initialState || {})
next();
} catch(e){
next(false);
console.error(`[fes] beforeRender执行出现异常`);
console.error(e);
}
app.unmount();
app._container.innerHTML = '';
document.body.removeChild(rootElement);
}) })
plugin.applyPlugins({ plugin.applyPlugins({