state.ts 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**
  2. *公共数据
  3. */
  4. import { initGlobalState } from 'qiankun';
  5. import { store } from '/@/store';
  6. import { router } from '/@/router';
  7. import { getToken } from '/@/utils/auth';
  8. let actions;
  9. //定义传入子应用的数据
  10. export function getProps() {
  11. return {
  12. data: {
  13. publicPath: '/',
  14. token: getToken(),
  15. store: store,
  16. router,
  17. },
  18. };
  19. }
  20. /**
  21. * 定义全局状态,并返回通信方法,在主应用使用,微应用通过 props 获取通信方法。
  22. * @param state 主应用穿的公共数据
  23. */
  24. export function initGlState(info: any = { token: '', userInfo: {}, isMounted: false,locationObj: null, locationId: '', pageObj: null, widthScale: 1, heightScale: 1}) {
  25. if (actions) return;
  26. // 初始化state
  27. actions = initGlobalState(info);
  28. // 设置新的值
  29. actions.setGlobalState({
  30. token: getToken(),
  31. isMounted: false,
  32. pageObj: {},
  33. widthScale: 1,
  34. heightScale: 1
  35. });
  36. // 注册 观察者 函数 - 响应 globalState 变化,在 globalState 发生改变时触发该 观察者 函数。
  37. actions.onGlobalStateChange((newState, prev) => {
  38. // state: 变更后的状态; prev 变更前的状态
  39. console.info('newState', newState);
  40. console.info('prev', prev);
  41. for (const key in newState) {
  42. console.info('onGlobalStateChange', key);
  43. }
  44. });
  45. }
  46. export function getActions() {
  47. if (!actions) initGlState();
  48. return actions;
  49. }