perf(@vant/use): reduce usePageVisibility event binding (#9835)

* perf(@vant/use): reduce usePageVisibility event binding

* chore: update
This commit is contained in:
neverland 2021-11-11 17:25:48 +08:00 committed by GitHub
parent a9ce9096e4
commit a0b368f1b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 23 deletions

View File

@ -1,4 +1,7 @@
{ {
"root": true, "root": true,
"extends": ["@vant"] "extends": ["@vant"],
"rules": {
"prefer-object-spread": "off"
}
} }

View File

@ -1,5 +1,4 @@
import { Ref, unref } from 'vue'; import { Ref, unref } from 'vue';
import { inBrowser } from '../utils';
import { useEventListener } from '../useEventListener'; import { useEventListener } from '../useEventListener';
export type UseClickAwayOptions = { export type UseClickAwayOptions = {
@ -11,10 +10,6 @@ export function useClickAway(
listener: EventListener, listener: EventListener,
options: UseClickAwayOptions = {} options: UseClickAwayOptions = {}
) { ) {
if (!inBrowser) {
return;
}
const { eventName = 'click' } = options; const { eventName = 'click' } = options;
const onClick = (event: Event) => { const onClick = (event: Event) => {

View File

@ -1,18 +1,21 @@
import { ref } from 'vue'; import { ref, Ref } from 'vue';
import { inBrowser } from '../utils'; import { inBrowser } from '../utils';
import { useEventListener } from '../useEventListener';
let visibility: Ref<VisibilityState>;
export function usePageVisibility() { export function usePageVisibility() {
const visibility = ref<VisibilityState>('visible'); if (!visibility) {
visibility = ref<VisibilityState>('visible');
const setVisibility = () => {
if (inBrowser) { if (inBrowser) {
visibility.value = document.hidden ? 'hidden' : 'visible'; const update = () => {
} visibility.value = document.hidden ? 'hidden' : 'visible';
}; };
setVisibility(); update();
useEventListener('visibilitychange', setVisibility); window.addEventListener('visibilitychange', update);
}
}
return visibility; return visibility;
} }

View File

@ -1,19 +1,16 @@
import { Ref, unref } from 'vue'; import { Ref, unref } from 'vue';
function isWindow(val: unknown): val is Window { const isWindow = (val: unknown): val is Window => val === window;
return val === window;
}
function makeDOMRect(width: number, height: number) { const makeDOMRect = (width: number, height: number) =>
return { ({
top: 0, top: 0,
left: 0, left: 0,
right: width, right: width,
bottom: height, bottom: height,
width, width,
height, height,
} as DOMRect; } as DOMRect);
}
export const useRect = ( export const useRect = (
elementOrRef: Element | Window | Ref<Element | Window | undefined> elementOrRef: Element | Window | Ref<Element | Window | undefined>
@ -26,7 +23,7 @@ export const useRect = (
return makeDOMRect(width, height); return makeDOMRect(width, height);
} }
if (element && element.getBoundingClientRect) { if (element?.getBoundingClientRect) {
return element.getBoundingClientRect(); return element.getBoundingClientRect();
} }