2021-03-19 13:29:43 +08:00

61 lines
1.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { plugin, ApplyPluginsType } from '@@/core/coreExports';
const defer = {};
defer.promise = new Promise((resolve) => {
defer.resolve = resolve;
});
let render = () => { };
let hasMountedAtLeastOnce = false;
export default () => defer.promise;
function getSlaveRuntime() {
const config = plugin.applyPlugins({
key: 'qiankun',
type: ApplyPluginsType.modify,
initialValue: {}
});
const { slave } = config;
return slave || config;
}
// 子应用生命周期钩子Bootstrap
export function genBootstrap(promise, oldRender) {
return async (...args) => {
const slaveRuntime = getSlaveRuntime();
if (slaveRuntime.bootstrap) { await slaveRuntime.bootstrap(...args); }
render = () => promise.then(oldRender).catch((e) => {
if (process.env.NODE_ENV === 'development') {
console.error('Render failed', e);
}
});
};
}
// 子应用生命周期钩子Mount
export function genMount() {
return async (...args) => {
defer.resolve();
const slaveRuntime = getSlaveRuntime();
if (slaveRuntime.mount) { await slaveRuntime.mount(...args); }
// 第一次 mount 会自动触发 render非第一次 mount 则需手动触发
if (hasMountedAtLeastOnce) {
render();
}
hasMountedAtLeastOnce = true;
};
}
// 子应用生命周期钩子Unmount
export function genUnmount(mountElementId, app) {
return async (...args) => {
const container = document.getElementById(mountElementId);
if (container) {
app.unmount(container);
}
const slaveRuntime = getSlaveRuntime();
if (slaveRuntime.unmount) { await slaveRuntime.unmount(...args); }
};
}