excalidraw/src/components/Popover.tsx
Timur Khazamov 79aee53ff6 Redesign idea (#343)
* Redisign idea

* Code cleanup

* Fixed to right container

* Reoredered layout

* Reordering panels

* Export dialog

* Removed redunant code

* Fixed not removing temp canvas

* Fixed preview not using only selected elements

* Returned file name on export

* Toggle export selected/all elements

* Hide copy to clipboard button if no support of clipboard

* Added border to swatches

* Fixed modal flickering
2020-01-15 07:42:02 -08:00

52 lines
1.3 KiB
TypeScript

import React, { useLayoutEffect, useRef } from "react";
import "./Popover.css";
type Props = {
top?: number;
left?: number;
children?: React.ReactNode;
onCloseRequest?(): void;
fitInViewport?: boolean;
};
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]);
return (
<div className="popover" style={{ top: top, left: left }} ref={popoverRef}>
<div
className="cover"
onClick={onCloseRequest}
onContextMenu={e => {
e.preventDefault();
if (onCloseRequest) onCloseRequest();
}}
/>
{children}
</div>
);
}