mirror of
https://github.com/xiangshu233/vue3-vant4-mobile.git
synced 2025-04-06 03:57:47 +08:00
36 lines
725 B
TypeScript
36 lines
725 B
TypeScript
import { tryOnMounted, tryOnUnmounted, useDebounceFn } from '@vueuse/core'
|
|
|
|
interface WindowSizeOptions {
|
|
once?: boolean
|
|
immediate?: boolean
|
|
listenerOptions?: AddEventListenerOptions | boolean
|
|
}
|
|
|
|
export function useWindowSizeFn<T>(fn: Fn<T>, wait = 150, options?: WindowSizeOptions) {
|
|
let handler = () => {
|
|
fn()
|
|
}
|
|
const handleSize = useDebounceFn(handler, wait)
|
|
handler = handleSize
|
|
|
|
const start = () => {
|
|
if (options && options.immediate) {
|
|
handler()
|
|
}
|
|
window.addEventListener('resize', handler)
|
|
}
|
|
|
|
const stop = () => {
|
|
window.removeEventListener('resize', handler)
|
|
}
|
|
|
|
tryOnMounted(() => {
|
|
start()
|
|
})
|
|
|
|
tryOnUnmounted(() => {
|
|
stop()
|
|
})
|
|
return [start, stop]
|
|
}
|