feat(@vant/use): support cleanup useEventListener (#11540)

This commit is contained in:
neverland 2023-02-04 21:13:38 +08:00 committed by GitHub
parent 2c2ceddc05
commit ec987530b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 70 additions and 6 deletions

View File

@ -1,4 +1,12 @@
import { Ref, watch, isRef, unref, onUnmounted, onDeactivated } from 'vue';
import {
Ref,
watch,
isRef,
unref,
onUnmounted,
onDeactivated,
type WatchStopHandle,
} from 'vue';
import { onMountedOrActivated } from '../onMountedOrActivated';
import { inBrowser } from '../utils';
@ -14,12 +22,12 @@ export function useEventListener<K extends keyof DocumentEventMap>(
type: K,
listener: (event: DocumentEventMap[K]) => void,
options?: UseEventListenerOptions
): void;
): () => void;
export function useEventListener(
type: string,
listener: EventListener,
options?: UseEventListenerOptions
): void;
): () => void;
export function useEventListener(
type: string,
listener: EventListener,
@ -31,9 +39,13 @@ export function useEventListener(
const { target = window, passive = false, capture = false } = options;
let cleaned = false;
let attached: boolean;
const add = (target?: TargetRef) => {
if (cleaned) {
return;
}
const element = unref(target);
if (element && !attached) {
@ -46,6 +58,9 @@ export function useEventListener(
};
const remove = (target?: TargetRef) => {
if (cleaned) {
return;
}
const element = unref(target);
if (element && attached) {
@ -58,10 +73,21 @@ export function useEventListener(
onDeactivated(() => remove(target));
onMountedOrActivated(() => add(target));
let stopWatch: WatchStopHandle;
if (isRef(target)) {
watch(target, (val, oldVal) => {
stopWatch = watch(target, (val, oldVal) => {
remove(oldVal);
add(val);
});
}
/**
* Clean up the event listener
*/
return () => {
stopWatch?.();
remove(target);
cleaned = true;
};
}

View File

@ -31,6 +31,25 @@ export default {
};
```
### Remove Event Listener
`useEventListener` will return a `cleanup` functionyou can call it to remove the event listener.
```js
import { ref } from 'vue';
import { useEventListener } from '@vant/use';
export default {
setup() {
const cleanup = useEventListener('resize', () => {
console.log('window resize');
});
cleanup();
},
};
```
## API
### Type Declarations
@ -46,7 +65,7 @@ function useEventListener(
type: string,
listener: EventListener,
options?: Options
): void;
): () => void;
```
### Params

View File

@ -32,6 +32,25 @@ export default {
};
```
### 取消事件监听
`useEventListener` 会返回一个 `cleanup` 函数,调用该函数可以取消事件监听。
```js
import { ref } from 'vue';
import { useEventListener } from '@vant/use';
export default {
setup() {
const cleanup = useEventListener('resize', () => {
console.log('window resize');
});
cleanup();
},
};
```
## API
### 类型定义
@ -47,7 +66,7 @@ function useEventListener(
type: string,
listener: EventListener,
options?: Options
): void;
): () => void;
```
### 参数