This commit is contained in:
winixt 2021-05-26 14:53:18 +08:00
commit e15a350f6c
14 changed files with 59 additions and 35 deletions

View File

@ -1,5 +1,5 @@
{
"version": "2.0.0-rc.25",
"version": "2.0.0-rc.26",
"changelog": {
"repo": "WeBankFinTech/fes.js",
"cacheDir": ".changelog",

View File

@ -1,6 +1,6 @@
{
"name": "@fesjs/create-fes-app",
"version": "2.0.0-rc.23",
"version": "2.0.0-rc.26",
"description": "create a app base on fes.js",
"main": "lib/index.js",
"files": [

View File

@ -10,3 +10,22 @@ export const beforeRender = {
});
}
};
export const qiankun = {
// 应用加载之前
async bootstrap(props) {
console.log('app1 bootstrap', props);
},
// 应用 render 之前触发
async mount(props) {
console.log('app1 mount', props);
},
// 当 props 更新时触发
async update(props) {
console.log('app1 update', props);
},
// 应用卸载之后触发
async unmount(props) {
console.log('app1 unmount', props);
}
};

View File

@ -5,8 +5,8 @@
</template>
<config>
{
"name": "index",
"title": "home"
"name": "test",
"title": "test"
}
</config>
<script>

View File

@ -2,7 +2,7 @@
<div>
main
<a-tabs v-model:activeKey="activeKey">
<a-tab-pane key="1" tab="Tab 1"> <MicroAppWithMemoHistory key="1" name="app1" url="/app1" /></a-tab-pane>
<a-tab-pane key="1" tab="Tab 1"><MicroAppWithMemoHistory key="1" name="app1" url="/app1" /></a-tab-pane>
<a-tab-pane key="2" tab="Tab 2"><MicroAppWithMemoHistory key="2" name="app1" url="/app1/test" /></a-tab-pane>
<a-tab-pane key="3" tab="Tab 3">Content of Tab Pane 3</a-tab-pane>
</a-tabs>

View File

@ -1,6 +1,6 @@
{
"name": "@fesjs/plugin-qiankun",
"version": "2.0.0-rc.24",
"version": "2.0.0-rc.26",
"description": "@fesjs/plugin-qiankun",
"main": "lib/index.js",
"files": [

View File

@ -38,9 +38,11 @@ function getSlaveRuntime() {
// 子应用生命周期钩子Bootstrap
export function genBootstrap(oldRender, appPromise) {
return async (props) => {
const slaveRuntime = getSlaveRuntime();
if (slaveRuntime.bootstrap) {
await slaveRuntime.bootstrap(props);
if (typeof props !== 'undefined') {
const slaveRuntime = getSlaveRuntime();
if (slaveRuntime.bootstrap) {
await slaveRuntime.bootstrap(props);
}
}
render = oldRender;
if (isPromise(appPromise)) {
@ -61,23 +63,22 @@ export function genMount(mountElementId) {
if (slaveRuntime.mount) {
await slaveRuntime.mount(props);
}
}
// 更新 clientRender 配置
const clientRenderOpts = {
// 支持通过 props 注入 container 来限定子应用 mountElementId 的查找范围
// 避免多个子应用出现在同一主应用时出现 mount 冲突
rootElement:
props?.container?.querySelector(mountElementId) || mountElementId
};
// 更新 clientRender 配置
const clientRenderOpts = {
// 支持通过 props 注入 container 来限定子应用 mountElementId 的查找范围
// 避免多个子应用出现在同一主应用时出现 mount 冲突
rootElement:
props?.container?.querySelector(mountElementId) || mountElementId
};
clientRenderOptsStack.push(clientRenderOpts);
clientRenderOptsStack.push(clientRenderOpts);
if(props.url){
history.url = props.url || '/';
}
if(props.onRouterInit){
history.onRouterInit = props.onRouterInit;
if(props.url){
history.url = props.url || '/';
}
if(props.onRouterInit){
history.onRouterInit = props.onRouterInit;
}
}
// 第一次 mount 会自动触发 render非第一次 mount 则需手动触发

View File

@ -1,6 +1,6 @@
{
"name": "@fesjs/plugin-request",
"version": "2.0.0-rc.21",
"version": "2.0.0-rc.26",
"description": "@fesjs/plugin-request",
"main": "lib/index.js",
"files": [
@ -34,4 +34,4 @@
"axios": "0.21.1",
"@fesjs/compiler": "^2.0.0-rc.5"
}
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@fesjs/preset-built-in",
"version": "2.0.0-rc.24",
"version": "2.0.0-rc.26",
"description": "@fesjs/preset-built-in",
"main": "lib/index.js",
"types": "lib/index.d.ts",
@ -72,4 +72,4 @@
"webpack-dev-server": "^3.11.2",
"webpackbar": "^5.0.0-3"
}
}
}

View File

@ -31,7 +31,7 @@ const renderClient = (opts = {}) => {
plugin.applyPlugins({
key: 'onAppCreated',
type: ApplyPluginsType.event,
args: { app },
args: { app, routes },
});
if (rootElement) {

View File

@ -16,7 +16,7 @@ export function getRoutes() {
const ROUTER_BASE = '{{{ routerBase }}}';
let router = null;
let history = null;
export const createRouter = () => {
export const createRouter = (routes) => {
if (router) {
return router;
}
@ -27,7 +27,7 @@ export const createRouter = () => {
});
router = createVueRouter({
history,
routes: getRoutes()
routes
});
plugin.applyPlugins({

View File

@ -1,6 +1,6 @@
import { createRouter } from "./routes";
export function onAppCreated({ app }) {
const router = createRouter();
export function onAppCreated({ app, routes }) {
const router = createRouter(routes);
app.use(router);
}

View File

@ -12,3 +12,7 @@ export const request = {
}
}
};
export function patchRoutes() {
console.log('patchRoutes');
}

View File

@ -1,6 +1,6 @@
{
"name": "@fesjs/fes",
"version": "2.0.0-rc.24",
"version": "2.0.0-rc.26",
"description": "一个好用的前端管理台快速开发框架",
"preferGlobal": true,
"scripts": {
@ -40,7 +40,7 @@
],
"dependencies": {
"@fesjs/compiler": "^2.0.0-rc.5",
"@fesjs/preset-built-in": "^2.0.0-rc.24",
"@fesjs/preset-built-in": "^2.0.0-rc.26",
"@fesjs/runtime": "^2.0.0-rc.5",
"@umijs/utils": "3.3.3",
"resolve-cwd": "^3.0.0"