index.ts 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /**
  2. * qiankun配置
  3. */
  4. import { registerMicroApps, start, runAfterFirstMounted, addGlobalUncaughtErrorHandler, loadMicroApp } from 'qiankun';
  5. import { apps } from './apps';
  6. import { getProps, initGlState } from './state';
  7. import { getToken } from '/@/utils/auth';
  8. /**
  9. * 重构apps
  10. */
  11. function filterApps() {
  12. apps.forEach((item) => {
  13. //主应用需要传递给微应用的数据。
  14. item.props = getProps();
  15. console.log('主应用给子应用传的数据', item.props);
  16. //微应用触发的路由规则
  17. // @ts-ignore
  18. item.activeRule = genActiveRule('/' + item.activeRule);
  19. });
  20. return apps;
  21. }
  22. /**
  23. * 路由监听
  24. * @param {*} routerPrefix 前缀
  25. */
  26. function genActiveRule(routerPrefix) {
  27. return (location) => location.pathname.startsWith(routerPrefix);
  28. }
  29. /**
  30. * 微应用注册
  31. */
  32. function registerApps() {
  33. const _apps = filterApps();
  34. registerMicroApps(_apps, {
  35. beforeLoad: [
  36. // @ts-ignore
  37. (loadApp) => {
  38. console.log('before load', loadApp);
  39. },
  40. ],
  41. beforeMount: [
  42. // @ts-ignore
  43. (mountApp) => {
  44. console.log('before mount', mountApp);
  45. },
  46. ],
  47. afterMount: [
  48. // @ts-ignore
  49. (mountApp) => {
  50. console.log('before mount', mountApp);
  51. },
  52. ],
  53. afterUnmount: [
  54. // @ts-ignore
  55. (unloadApp) => {
  56. console.log('after unload', unloadApp);
  57. },
  58. ],
  59. });
  60. // 设置默认子应用,与 genActiveRule中的参数保持一致
  61. // setDefaultMountApp();
  62. // 第一个微应用 mount 后需要调用的方法,比如开启一些监控或者埋点脚本。
  63. runAfterFirstMounted(() => console.log('开启监控'));
  64. // 添加全局的未捕获异常处理器。
  65. addGlobalUncaughtErrorHandler((event) => console.log(event));
  66. // 定义全局状态
  67. initGlState({ token: getToken() });
  68. //启动qiankun
  69. start({
  70. prefetch: 'all',
  71. // fetch: async (url: RequestInfo | URL, ...args: any) => {
  72. // console.log(url);
  73. // },
  74. // sandbox: {
  75. // experimentalStyleIsolation: true,
  76. // },
  77. sandbox: false,
  78. });
  79. // setDefaultMountApp('/micro-vent-3dModal');
  80. }
  81. export { registerApps };