chore(ConfigProvider): update var name and init execute the sync function twice (#12248)

This commit is contained in:
ShuGang Zhou 2023-09-04 22:21:56 +08:00 committed by GitHub
parent 91a92b2b06
commit f553a87037
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -113,25 +113,19 @@ export default defineComponent({
onDeactivated(removeTheme); onDeactivated(removeTheme);
onBeforeUnmount(removeTheme); onBeforeUnmount(removeTheme);
watch( watch(style, (newStyle, oldStyle) => {
style, if (props.themeVarsScope === 'global') {
(newStyle, oldStyle) => { syncThemeVarsOnRoot(
if (props.themeVarsScope === 'global') { newStyle as Record<string, Numeric>,
syncThemeVarsOnRoot( oldStyle as Record<string, Numeric>,
newStyle as Record<string, Numeric>, );
oldStyle as Record<string, Numeric>, }
); });
}
},
{
immediate: true,
},
);
watch( watch(
() => props.themeVarsScope, () => props.themeVarsScope,
(newScope, oldStyle) => { (newScope, oldScope) => {
if (oldStyle === 'global') { if (oldScope === 'global') {
// remove on Root // remove on Root
syncThemeVarsOnRoot({}, style.value as Record<string, Numeric>); syncThemeVarsOnRoot({}, style.value as Record<string, Numeric>);
} }
@ -140,10 +134,12 @@ export default defineComponent({
syncThemeVarsOnRoot(style.value as Record<string, Numeric>, {}); syncThemeVarsOnRoot(style.value as Record<string, Numeric>, {});
} }
}, },
{
immediate: true,
},
); );
if (props.themeVarsScope === 'global') {
// add on root
syncThemeVarsOnRoot(style.value as Record<string, Numeric>, {});
}
} }
provide(CONFIG_PROVIDER_KEY, props); provide(CONFIG_PROVIDER_KEY, props);