mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
feat(qiankun): 支持memoryHistory模式,嵌套子应用任意路由页面路由
This commit is contained in:
parent
3737195362
commit
ffc88ab656
@ -1,4 +1,4 @@
|
||||
import { plugin, ApplyPluginsType, getRouter, getHistory } from '@@/core/coreExports';
|
||||
import { plugin, ApplyPluginsType, getRouter, getHistory, destroyRouter } from '@@/core/coreExports';
|
||||
{{#HAS_PLUGIN_MODEL}}
|
||||
import { setModelState } from './qiankunModel';
|
||||
{{/HAS_PLUGIN_MODEL}}
|
||||
@ -74,14 +74,10 @@ export function genMount(mountElementId) {
|
||||
clientRenderOptsStack.push(clientRenderOpts);
|
||||
|
||||
if(props.url){
|
||||
history.url = props.url;
|
||||
history.url = props.url || '/';
|
||||
}
|
||||
if(props.onRouterInit){
|
||||
history.onRouterInit = props.onRouterInit;
|
||||
const router = getRouter();
|
||||
if(router){
|
||||
history.onRouterInit(router);
|
||||
}
|
||||
}
|
||||
|
||||
// 第一次 mount 会自动触发 render,非第一次 mount 则需手动触发
|
||||
@ -118,6 +114,7 @@ export function genUnmount() {
|
||||
const app = await cacheAppPromise;
|
||||
app.unmount();
|
||||
}
|
||||
destroyRouter();
|
||||
const slaveRuntime = getSlaveRuntime();
|
||||
if (slaveRuntime.unmount) {
|
||||
await slaveRuntime.unmount(props);
|
||||
|
@ -293,7 +293,7 @@ export default function (api) {
|
||||
|
||||
api.addCoreExports(() => [
|
||||
{
|
||||
specifiers: ['getRoutes', 'getRouter', 'getHistory'],
|
||||
specifiers: ['getRoutes', 'getRouter', 'getHistory', 'destroyRouter'],
|
||||
source: absCoreFilePath
|
||||
}
|
||||
]);
|
||||
|
@ -40,9 +40,20 @@ export const createRouter = () => {
|
||||
};
|
||||
|
||||
export const getRouter = ()=>{
|
||||
return router;
|
||||
if(!router){
|
||||
console.warn(`[preset-build-in] router is null`)
|
||||
}
|
||||
return router;
|
||||
}
|
||||
|
||||
export const getHistory = ()=>{
|
||||
return history;
|
||||
if(!history){
|
||||
console.warn(`[preset-build-in] history is null`)
|
||||
}
|
||||
return history;
|
||||
}
|
||||
|
||||
export const destroyRouter = ()=>{
|
||||
router = null;
|
||||
history = null;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user