fix(plugin-qiankun): 修复主应用状态变更后使用useModel没有响应问题

This commit is contained in:
wanchun 2022-08-01 14:33:31 +08:00
parent 381ec8f387
commit a1f9ead4f6
2 changed files with 28 additions and 11 deletions

View File

@ -6,9 +6,10 @@ import {
computed, computed,
onBeforeUnmount, onBeforeUnmount,
onMounted, onMounted,
shallowRef,
} from "vue"; } from "vue";
import { loadMicroApp } from "{{{QIANKUN}}}"; import { loadMicroApp } from "{{{QIANKUN}}}";
import {mergeWith} from "{{{LODASH_ES}}}"; import { mergeWith, cloneDeep, isEqual } from "{{{LODASH_ES}}}";
// eslint-disable-next-line import/extensions // eslint-disable-next-line import/extensions
import { getMasterOptions } from "./masterOptions"; import { getMasterOptions } from "./masterOptions";
@ -66,12 +67,27 @@ export const MicroApp = defineComponent({
}); });
const propsConfigRef = computed(() => { const propsConfigRef = shallowRef({});
return {
...propsFromConfigRef.value, watch(
...props.props, [() => props.props, () => attrs, propsFromConfigRef],
}; () => {
}); // 使用深拷贝去掉主应用数据和子应用数据的引用关系,避免出现副作用。
const newProps = cloneDeep({
...propsFromConfigRef.value,
...props.props,
...attrs
});
// 避免第一次无意义update
if(!isEqual(newProps, propsConfigRef.value)) {
propsConfigRef.value = newProps
}
},
{
deep: true,
immediate: true
}
);
// 只有当name变化时才重新加载新的子应用 // 只有当name变化时才重新加载新的子应用
const loadApp = () => { const loadApp = () => {
@ -84,7 +100,7 @@ export const MicroApp = defineComponent({
name: `${name}_${props.cacheName || ''}`, name: `${name}_${props.cacheName || ''}`,
entry: entry, entry: entry,
container: containerRef.value, container: containerRef.value,
props: {...propsConfigRef.value, ...attrs} props: propsConfigRef.value
}, },
{ {
...globalSettings, ...globalSettings,
@ -138,7 +154,7 @@ export const MicroApp = defineComponent({
} }
// 返回 microApp.update 形成链式调用 // 返回 microApp.update 形成链式调用
return microApp.update({...propsConfigRef.value, ...attrs}); return microApp.update(propsConfigRef.value);
} }
} }
); );

View File

@ -1,8 +1,9 @@
import { reactive } from 'vue'; import { reactive } from 'vue';
import { cloneDeep } from 'lodash-es'
let initState = reactive({}); let initState = reactive({});
const setModelState = (props) => { const setModelState = (props) => {
Object.assign(initState, props) // 使用深拷贝去掉主应用数据和子应用数据的引用关系,避免出现副作用。
Object.assign(initState, cloneDeep(props))
}; };
export default () => initState; export default () => initState;