feat(use): add useEventListener

This commit is contained in:
chenjiahan 2020-09-11 23:08:17 +08:00
parent df0a055ce6
commit 977b14cce8
3 changed files with 71 additions and 2 deletions

View File

@ -1 +1,2 @@
export { useToggle } from './useToggle';
export { useEventListener } from './useEventListener';

View File

@ -0,0 +1,69 @@
import {
Ref,
unref,
onMounted,
onActivated,
onUnmounted,
onDeactivated,
} from 'vue';
const inBrowser = typeof window !== 'undefined';
let supportsPassive = false;
if (inBrowser) {
try {
const opts = {};
Object.defineProperty(opts, 'passive', {
get() {
supportsPassive = true;
},
});
window.addEventListener('test-passive', null as any, opts);
// eslint-disable-next-line no-empty
} catch (e) {}
}
export type UseEventListenerOptions = {
type: string;
target: EventTarget | Ref<EventTarget>;
capture?: boolean;
passive?: boolean;
listener: EventListener;
};
export function useEventListener({
type,
target,
passive = false,
capture = false,
listener,
}: UseEventListenerOptions) {
let attached: boolean;
const add = () => {
const element = unref(target);
if (element && inBrowser && !attached) {
element.addEventListener(
type,
listener,
supportsPassive ? { capture, passive } : capture
);
attached = true;
}
};
const remove = () => {
const element = unref(target);
if (element && inBrowser && attached) {
element.removeEventListener(type, listener, capture);
attached = false;
}
};
onMounted(add);
onActivated(add);
onUnmounted(remove);
onDeactivated(remove);
}

View File

@ -7,8 +7,7 @@
"declaration": true,
"skipLibCheck": true,
"esModuleInterop": true,
"moduleResolution": "Node",
"lib": ["esnext"]
"moduleResolution": "Node"
},
"include": ["src/**/*"]
}