116.学习微前端架构-乾坤

学习微前端架构-乾坤.png

目的:拆分应用,减轻一个庞大应用的压力,从另一个方面将公司所有的系统进行整合,形成一个整体。

微前端出现以前,每个系统都是独立的,用户需要保存不同系统的网址,使用微前端后,记录一个地址就好了。在用户层面进了整合,从开发层面减轻了系统压力。

主应用(不限技术栈)和子应用(目前vite项目的支持度不是很好)

接入案例,参考官网qiankun

首先需要搭建子应用,以vue2项目和react项目为例,主应用使用vue3

微应用实现

需要实现两个函数registerMicroAppsstartregisterMicroApps用来实现注册子应用。
实现入口
在主应用下新建micro-fe目录,新建index.js文件,需要导出两个方法

import {rewriteRouter} from "./rewrite-router.js"
import {handleRouter} from "./handle-router.js"

let apps = []
export getApps = ()=>{return apps}
export const  registerMicroApps = (_apps)=>{
    apps = _apps
}

export const start = ()=>{
    rewriteRouter(apps)
    //可能会出现直接打开子路由的情况,因此默认要执行一次处理路由的方法
    handleRouter()
}

新建rewrite-router.js文件,实现重写路由方法

微应用内部是通过监听路由的变化实现的,hash模式,通过重写onHashChange方法监听,history模式通过重写改变history方法的方式实现。我们可以在路由改变时使用当前路径和微应用提供的activeRule进行匹配,匹配上之后根据提供的entry加载子应用即可,再将加载到的资源追加到主应用提供的容器中进行展示。

实现路由监听

import {handleRouter} from "./handle-router.js"
export const rewriteRouter = (apps)=>{
    //监听replaceState方法和pushState方法,为了不直接改变原生方法,我们使用apply实现重写这些方法
    const _replaceState = window.history.replaceState
    window.history.replaceState = (...args)=>{
        _replaceState.apply(window.history,args)
        //下一步,加载子应用
        handleRouter()
    }
    
    const _pushState = window.history.pushState
    window.history.pushState = (...args)=>{
        __pushState.apply(window.history,args)
        handleRouter()
    }  
}

实现路由匹配,子应用加载

新建handle-router.js

import {getApps} from "./index.js"
export const handleRouter = ()=>{
    //根据当前地址匹配子应用
    const pathname = window.location.pathname
    const app = getApps() && getApps().find((item)=>{
        return pathname.startsWith(item.activeRule)
    })
    if(!app) return
    //有匹配的,进行渲染
    const container = document.querySelector("#subapp-container")
    //加载匹配到的子应用资源
    const response = await fetch(app.entry);
    const body = await response.text();
    //将加载到的资源追加到主应用提供的容器中
    container.innerHTML = body
}

发现,路由已经切换了,内容也插入了但是页面并没有改变,是因为所有的资源都在app.js,运行app.js才会展示页面,因此需要获取到script标签中的资源


1667107193439.png

加载app.js资源handle-router.js

import {getApps} from "./index.js"
import {importHtml}from "import-html.js" 
export const handleRouter = async()=>{
    //根据当前地址匹配子应用
    const pathname = window.location.pathname
    const app = getApps() && getApps().find((item)=>{
        return pathname.startsWith(item.activeRule)
    })
    if(!app) return
    //有匹配的,进行渲染
    const container = document.querySelector("#subapp-container")
    //加载匹配到的子应用资源
    const {template,execScript} = await importHtml(app.entry)
    //执行获取到的js资源,拿到子应用的mount、unmount、bootstrap方法
    const remoteApp = await execScript()
    app.bootstrap = result.bootstrap;
    app.mount = result.mount;
    app.unmount = result.unmount;
    //渲染页面,调用bootstrap和mount方法
    await bootstrap(app)
    await mount(app)   
}

async function bootstrap(app) {
    //执行子应用的bootstrap方法,传入app对象,app里包含的属性{name,entry,container,activeRule,bootstrap,mount,unmount},传入子应用里面,如果子应用里找到container了,挂载的时候挂载到指定页面
  app.bootstrap && app.bootstrap(app);
}

async function mount(app) {
  app.mount &&
    app.mount({
      container: document.querySelector(app.container),
    });
}

async function unmount() {}

Import-html.js

// import importHTML from "import-html-entry";
import { fetchResource } from "./fetchResource";
//解析html模块代码
export const importHtml = async (url) => {
  //解析html文件,加载app.js文件
  //截取script标签
  const html = await fetchResource(url);
  const template = document.createElement("div");
  template.innerHTML = html;

  //查找所有script标签
  const scripts = template.querySelectorAll("script");
  async function getExternalScripts() {
    return Promise.all(
      Array.from(scripts).map((script) => {
        const src = script.getAttribute("src");
        if (!src) {
          return Promise.resolve(script.innerHTML);
        } else {
          //拼接src属性
          return fetchResource(src.startsWith("http") ? "src" : `${url}${src}`);
        }
      })
    );
  }
  //执行scripts
  async function execScript() {
    const scripts = await getExternalScripts();
    //console.log(scripts)
    //手动构建commonjs规范
    const module = { exports: {} };
    const exports = module.exports;
    //控制子应用挂载问题
    window.__POWERED_BY_QIANKUN__ = true;
    window.__POWERED_BY_QIANKUN__ = app.entry + "/";
    //子应用样式隔离问题,通过打包library库实现umd格式iife
    //umd兼容commonjs amd和es module
    scripts.forEach((code) => {
      eval(code);
    });
    return module.exports;
  }
  return { template, getExternalScripts, execScript };
};
1667108558375.png

这是请求子应用里面script中的资源,将获取到的代码暴露出一个模块,

mount加载的时候,props为空,render时,挂载到的dom是#app,而不是container.querySelector("#app"),从而导致主应用的页面会被替换掉

function render(props = {}) {
  const { container } = props;
  router = route;
  instance = new Vue({
    router,
    render: h => h(App)
  }).$mount(container ? container.querySelector("#app") : "#app");
}
if (!window.__POWERED_BY_QIANKUN__) {
  render({});
}

export async function mount(props) {
  console.log("[vue] props from main framework", props);
  render(props);
}

使用umd打包格式解决,参考

新建import-html.js

export const importHtml =async (url)=>{
    const html = await fetchResource(url)
    const template = document.createElement("div");
    template.innerHTML = html;
    
    //获取所有的script标签
}
1667120092557.png

问题:点击切换之后发现之前的菜单还在,需要卸载之后再挂载,怎么知道之前的路由是哪个进行卸载,需要自己进行记录

rewriteRouter.js

import { handleRouter } from "./handleRouter";

export const getPrevRoute = () => {
  return _prevRouter;
};
export const getNextRoute = () => {
  return _nextRouter;
};
//记录前一个路由
let _prevRouter = null;
//记录当前路由
let _activeRouter = window.location.pathname;
export const rewriteRouter = () => {
  const _replaceState = window.history.replaceState;
  window.history.replaceState = (...args) => {
    _prevRouter = window.location.pathname;
    _replaceState.apply(window.history, args);
    _activeRouter = window.location.pathname;
    handleRouter();
  };

  const _pushState = window.history.pushState;
  window.history.pushState = (...args) => {
    _prevRouter = window.location.pathname;
    _pushState.apply(window.history, args);
    _activeRouter = window.location.pathname;
    handleRouter();
  };
};

解决图片加载路径问题:

接入微应用时,引入的public-path.js文件

if (window.__POWERED_BY_QIANKUN__) {
    //修改webpack publicPath路径
  __webpack_public_path__ = window.__INJECTED_PUBLIC_PATH_BY_QIANKUN__;
}

在importHtml.js中修改__INJECTED_PUBLIC_PATH_BY_QIANKUN__的值

async function execScript() {
    const scripts = await getExternalScripts();
    //手动构建commonjs规范
    const module = { exports: {} };
    const exports = module.exports;
    //控制子应用挂载问题
    window.__POWERED_BY_QIANKUN__ = true;
    //重新指定PublicPath
    window.__INJECTED_PUBLIC_PATH_BY_QIANKUN__ = url + "/";
    //子应用样式隔离问题,通过打包library库实现umd格式iife
    //umd兼容commonjs amd和es module
    scripts.forEach((code) => {
      eval(code);
    });

    return module.exports;
    // return window["app-vue2-app"];
  }

此时发现已经可正常加载图片了。


1667140608145.png

另一个问题:react应用接入微应用怎么解决打包格式问题

样式隔离官放文档有提供一个sandbox参数可配置,设置了sandbox:true不管用,使用严格隔离模式。
怎么实现的还没看懂,单独设置沙箱模式和设置严格模式有什么区别?

//开启沙箱
start({ sandbox: { strictStyleIsolation: true } });

使用:@rescripts/cli插件或者react-app-rewired重写webpack配置文件解决
乾坤框架系列学习
01.学习微前端架构-乾坤
02.资源加载过程分析
03.乾坤css加载机制
04.乾坤js隔离机制
乾坤沙箱实现原理

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343

推荐阅读更多精彩内容