mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(@vant/use): support cleanup useEventListener (#11540)
This commit is contained in:
parent
2c2ceddc05
commit
ec987530b9
@ -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 { onMountedOrActivated } from '../onMountedOrActivated';
|
||||||
import { inBrowser } from '../utils';
|
import { inBrowser } from '../utils';
|
||||||
|
|
||||||
@ -14,12 +22,12 @@ export function useEventListener<K extends keyof DocumentEventMap>(
|
|||||||
type: K,
|
type: K,
|
||||||
listener: (event: DocumentEventMap[K]) => void,
|
listener: (event: DocumentEventMap[K]) => void,
|
||||||
options?: UseEventListenerOptions
|
options?: UseEventListenerOptions
|
||||||
): void;
|
): () => void;
|
||||||
export function useEventListener(
|
export function useEventListener(
|
||||||
type: string,
|
type: string,
|
||||||
listener: EventListener,
|
listener: EventListener,
|
||||||
options?: UseEventListenerOptions
|
options?: UseEventListenerOptions
|
||||||
): void;
|
): () => void;
|
||||||
export function useEventListener(
|
export function useEventListener(
|
||||||
type: string,
|
type: string,
|
||||||
listener: EventListener,
|
listener: EventListener,
|
||||||
@ -31,9 +39,13 @@ export function useEventListener(
|
|||||||
|
|
||||||
const { target = window, passive = false, capture = false } = options;
|
const { target = window, passive = false, capture = false } = options;
|
||||||
|
|
||||||
|
let cleaned = false;
|
||||||
let attached: boolean;
|
let attached: boolean;
|
||||||
|
|
||||||
const add = (target?: TargetRef) => {
|
const add = (target?: TargetRef) => {
|
||||||
|
if (cleaned) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
const element = unref(target);
|
const element = unref(target);
|
||||||
|
|
||||||
if (element && !attached) {
|
if (element && !attached) {
|
||||||
@ -46,6 +58,9 @@ export function useEventListener(
|
|||||||
};
|
};
|
||||||
|
|
||||||
const remove = (target?: TargetRef) => {
|
const remove = (target?: TargetRef) => {
|
||||||
|
if (cleaned) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
const element = unref(target);
|
const element = unref(target);
|
||||||
|
|
||||||
if (element && attached) {
|
if (element && attached) {
|
||||||
@ -58,10 +73,21 @@ export function useEventListener(
|
|||||||
onDeactivated(() => remove(target));
|
onDeactivated(() => remove(target));
|
||||||
onMountedOrActivated(() => add(target));
|
onMountedOrActivated(() => add(target));
|
||||||
|
|
||||||
|
let stopWatch: WatchStopHandle;
|
||||||
|
|
||||||
if (isRef(target)) {
|
if (isRef(target)) {
|
||||||
watch(target, (val, oldVal) => {
|
stopWatch = watch(target, (val, oldVal) => {
|
||||||
remove(oldVal);
|
remove(oldVal);
|
||||||
add(val);
|
add(val);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clean up the event listener
|
||||||
|
*/
|
||||||
|
return () => {
|
||||||
|
stopWatch?.();
|
||||||
|
remove(target);
|
||||||
|
cleaned = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -31,6 +31,25 @@ export default {
|
|||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Remove Event Listener
|
||||||
|
|
||||||
|
`useEventListener` will return a `cleanup` function,you 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
|
## API
|
||||||
|
|
||||||
### Type Declarations
|
### Type Declarations
|
||||||
@ -46,7 +65,7 @@ function useEventListener(
|
|||||||
type: string,
|
type: string,
|
||||||
listener: EventListener,
|
listener: EventListener,
|
||||||
options?: Options
|
options?: Options
|
||||||
): void;
|
): () => void;
|
||||||
```
|
```
|
||||||
|
|
||||||
### Params
|
### Params
|
||||||
|
@ -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
|
## API
|
||||||
|
|
||||||
### 类型定义
|
### 类型定义
|
||||||
@ -47,7 +66,7 @@ function useEventListener(
|
|||||||
type: string,
|
type: string,
|
||||||
listener: EventListener,
|
listener: EventListener,
|
||||||
options?: Options
|
options?: Options
|
||||||
): void;
|
): () => void;
|
||||||
```
|
```
|
||||||
|
|
||||||
### 参数
|
### 参数
|
||||||
|
Loading…
x
Reference in New Issue
Block a user