excalidraw/src/components/Popover.tsx

51 lines
1.2 KiB
TypeScript
Raw Normal View History

import React, { useLayoutEffect, useRef } from "react";
2020-01-07 07:50:59 +05:00
type Props = {
top?: number;
left?: number;
children?: React.ReactNode;
onCloseRequest?(): void;
fitInViewport?: boolean;
2020-01-07 07:50:59 +05:00
};
export function Popover({
children,
left,
top,
onCloseRequest,
fitInViewport = false
}: Props) {
const popoverRef = useRef<HTMLDivElement>(null);
// ensure the popover doesn't overflow the viewport
useLayoutEffect(() => {
if (fitInViewport && popoverRef.current) {
const element = popoverRef.current;
const { x, y, width, height } = element.getBoundingClientRect();
const viewportWidth = window.innerWidth;
if (x + width > viewportWidth) {
element.style.left = viewportWidth - width + "px";
}
const viewportHeight = window.innerHeight;
if (y + height > viewportHeight) {
element.style.top = viewportHeight - height + "px";
}
}
}, [fitInViewport]);
2020-01-07 07:50:59 +05:00
return (
<div className="popover" style={{ top: top, left: left }} ref={popoverRef}>
2020-01-07 07:50:59 +05:00
<div
className="cover"
onClick={onCloseRequest}
onContextMenu={e => {
e.preventDefault();
if (onCloseRequest) onCloseRequest();
}}
/>
{children}
</div>
);
}