fix(ConfigProvider): should remove theme class on unmount (#10898)

This commit is contained in:
neverland 2022-08-10 08:31:46 +08:00 committed by GitHub
parent 6a1516ca37
commit f61b00175e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,9 @@ import {
watch,
provide,
computed,
onActivated,
onDeactivated,
onBeforeUnmount,
defineComponent,
type PropType,
type InjectionKey,
@ -57,14 +60,27 @@ export default defineComponent({
});
if (inBrowser) {
const addTheme = () => {
document.body.classList.add(`van-theme-${props.theme}`);
};
const removeTheme = (theme = props.theme) => {
document.body.classList.remove(`van-theme-${theme}`);
};
watch(
() => props.theme,
(newVal, oldVal) => {
document.body.classList.remove(`van-theme-${oldVal}`);
document.body.classList.add(`van-theme-${newVal}`);
if (oldVal) {
removeTheme(oldVal);
}
addTheme();
},
{ immediate: true }
);
onActivated(addTheme);
onDeactivated(removeTheme);
onBeforeUnmount(removeTheme);
}
provide(CONFIG_PROVIDER_KEY, props);