mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
perf(@vant/use): reduce event listener of useWindowSize (#9658)
* perf(@vant/use): reduce event listener of useWindowSize * chore: update
This commit is contained in:
parent
499b8464f6
commit
2008982ff9
@ -1,18 +1,26 @@
|
||||
import { ref } from 'vue';
|
||||
import { ref, Ref } from 'vue';
|
||||
import { inBrowser } from '../utils';
|
||||
import { useEventListener } from '../useEventListener';
|
||||
|
||||
let width: Ref<number>;
|
||||
let height: Ref<number>;
|
||||
|
||||
export function useWindowSize() {
|
||||
const width = ref(inBrowser ? window.innerWidth : 0);
|
||||
const height = ref(inBrowser ? window.innerHeight : 0);
|
||||
if (!width) {
|
||||
width = ref(0);
|
||||
height = ref(0);
|
||||
|
||||
const onResize = () => {
|
||||
width.value = window.innerWidth;
|
||||
height.value = window.innerHeight;
|
||||
};
|
||||
const update = () => {
|
||||
if (inBrowser) {
|
||||
width.value = window.innerWidth;
|
||||
height.value = window.innerHeight;
|
||||
}
|
||||
};
|
||||
|
||||
useEventListener('resize', onResize);
|
||||
useEventListener('orientationchange', onResize);
|
||||
update();
|
||||
useEventListener('resize', update);
|
||||
useEventListener('orientationchange', update);
|
||||
}
|
||||
|
||||
return { width, height };
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user