fix(cascader): fix memory leak caused by event listener (#6313)

Co-authored-by: 07akioni <07akioni2@gmail.com>
This commit is contained in:
Zheng-Changfu 2024-12-19 18:06:48 +08:00 committed by GitHub
parent 41db9e6aa4
commit d72ae664de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 22 additions and 2 deletions

View File

@ -1,9 +1,19 @@
import { onBeforeUnmount, onMounted, type Ref } from 'vue'
import { resizeObserverManager } from 'vueuc'
interface UseOnResizeOptions {
/**
* In some cases
* if a reactive variable is used in the render function to control whether or not the dom is rendered,
* the event cannot be cleared in onBeforeUnmount because the dom no longer exists,
* but the event contains a reference to the dom, resulting in a memory leak
*/
show?: Ref<boolean>
}
export function useOnResize(
elRef: Ref<HTMLElement | null>,
onResize: (() => void) | undefined
onResize: (() => void) | undefined,
options?: UseOnResizeOptions
): void {
// it needn't be reactive since it's for internal usage
if (onResize) {
@ -19,5 +29,14 @@ export function useOnResize(
resizeObserverManager.unregisterHandler(el)
}
})
if (options?.show && isRef(options.show)) {
onBeforeUpdate(() => {
const { value: el } = elRef
const { value: show } = options.show!
if (!show && el) {
resizeObserverManager.unregisterHandler(el)
}
})
}
}
}

View File

@ -13,6 +13,7 @@ import {
inject,
type PropType,
ref,
toRef,
Transition,
withDirectives
} from 'vue'
@ -74,7 +75,7 @@ export default defineComponent({
function handleResize(): void {
syncCascaderMenuPosition()
}
useOnResize(selfElRef, handleResize)
useOnResize(selfElRef, handleResize, { show: toRef(props, 'show') })
function showErrorMessage(label: string): void {
const {
value: { loadingRequiredMessage }