mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-26 19:06:11 +01:00
36 lines
1.1 KiB
React
36 lines
1.1 KiB
React
|
import { h, Fragment } from 'preact';
|
||
|
import { createPortal } from 'preact/compat';
|
||
|
import { useState, useEffect } from 'preact/hooks';
|
||
|
|
||
|
export default function LargeDialog({ children, portalRootID = 'dialogs' }) {
|
||
|
const portalRoot = portalRootID && document.getElementById(portalRootID);
|
||
|
const [show, setShow] = useState(false);
|
||
|
|
||
|
useEffect(() => {
|
||
|
window.requestAnimationFrame(() => {
|
||
|
setShow(true);
|
||
|
});
|
||
|
}, []);
|
||
|
|
||
|
const dialog = (
|
||
|
<Fragment>
|
||
|
<div
|
||
|
data-testid="scrim"
|
||
|
key="scrim"
|
||
|
className="fixed bg-fixed inset-0 z-10 flex justify-center items-center bg-black bg-opacity-40"
|
||
|
>
|
||
|
<div
|
||
|
role="modal"
|
||
|
className={`absolute rounded shadow-2xl bg-white dark:bg-gray-700 w-4/5 max-w-7xl text-gray-900 dark:text-white transition-transform transition-opacity duration-75 transform scale-90 opacity-0 ${
|
||
|
show ? 'scale-100 opacity-100' : ''
|
||
|
}`}
|
||
|
>
|
||
|
{children}
|
||
|
</div>
|
||
|
</div>
|
||
|
</Fragment>
|
||
|
);
|
||
|
|
||
|
return portalRoot ? createPortal(dialog, portalRoot) : dialog;
|
||
|
}
|