mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-16 08:36:40 +01:00
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import classnames from 'classnames';
|
|
import FocusTrap from 'focus-trap-react';
|
|
import type { ReactNode } from 'react';
|
|
import { motion } from 'framer-motion';
|
|
import { Portal } from './Portal';
|
|
|
|
interface Props {
|
|
children: ReactNode;
|
|
portalName: string;
|
|
open: boolean;
|
|
onClose?: () => void;
|
|
zIndex?: keyof typeof zIndexes;
|
|
}
|
|
|
|
const zIndexes: Record<number, string> = {
|
|
10: 'z-10',
|
|
20: 'z-20',
|
|
30: 'z-30',
|
|
40: 'z-40',
|
|
50: 'z-50',
|
|
};
|
|
|
|
export function Overlay({ zIndex = 30, open, onClose, portalName, children }: Props) {
|
|
return (
|
|
<Portal name={portalName}>
|
|
{open && (
|
|
<FocusTrap>
|
|
<motion.div
|
|
className={classnames('fixed inset-0', zIndexes[zIndex])}
|
|
initial={{ opacity: 0 }}
|
|
animate={{ opacity: 1 }}
|
|
>
|
|
<div
|
|
aria-hidden
|
|
onClick={onClose}
|
|
className="absolute inset-0 bg-gray-600/60 dark:bg-black/50"
|
|
/>
|
|
{/* Add region to still be able to drag the window */}
|
|
<div data-tauri-drag-region className="absolute top-0 left-0 right-0 h-md" />
|
|
{children}
|
|
</motion.div>
|
|
</FocusTrap>
|
|
)}
|
|
</Portal>
|
|
);
|
|
}
|