35 lines
700 B
TypeScript

import { Ref, unref } from 'vue';
function isWindow(val: unknown): val is Window {
return val === window;
}
function makeDOMRect(width: number, height: number) {
return {
top: 0,
left: 0,
right: width,
bottom: height,
width,
height,
} as DOMRect;
}
export const useRect = (
elementRef: (Element | Window) | Ref<Element | Window | undefined>
) => {
const element = unref(elementRef);
if (isWindow(element)) {
const width = element.innerWidth;
const height = element.innerHeight;
return makeDOMRect(width, height);
}
if (element && element.getBoundingClientRect) {
return element.getBoundingClientRect();
}
return makeDOMRect(0, 0);
};