This commit is contained in:
Vula Builder
2026-07-27 18:06:18 +00:00
parent 26aff268ef
commit a3bc6bb777
+72
View File
@@ -0,0 +1,72 @@
'use client'
import { useEffect, useCallback, useRef } from "react"
import { cn } from "@/lib/utils"
import { X } from 'lucide-react'
interface ModalProps {
isOpen: boolean
onClose: () => void
title?: string
children: React.ReactNode
className?: string
}
export default function Modal({ isOpen, onClose, title, children, className }: ModalProps) {
const overlayRef = useRef<HTMLDivElement>(null)
const contentRef = useRef<HTMLDivElement>(null)
const handleKeyDown = useCallback(
(e: KeyboardEvent) => {
if (e.key === "Escape") onClose()
},
[onClose]
)
useEffect(() => {
if (isOpen) {
document.addEventListener("keydown", handleKeyDown)
document.body.style.overflow = "hidden"
}
return () => {
document.removeEventListener("keydown", handleKeyDown)
document.body.style.overflow = "unset"
}
}, [isOpen, handleKeyDown])
const handleOverlayClick = (e: React.MouseEvent) => {
if (e.target === overlayRef.current) onClose()
}
if (!isOpen) return null
return (
<div
ref={overlayRef}
className="fixed inset-0 z-50 flex items-center justify-center bg-background/80 backdrop-blur-sm"
onClick={handleOverlayClick}
role="dialog"
aria-modal="true"
>
<div
ref={contentRef}
className={cn(
"relative w-full max-w-lg rounded-lg border border-border bg-card p-6 shadow-lg animate-in zoom-in-90",
className
)}
>
<button
onClick={onClose}
className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-primary"
aria-label="Close"
>
<X className="h-4 w-4" />
</button>
{title && (
<h2 className="text-lg font-semibold mb-4">{title}</h2>
)}
{children}
</div>
</div>
)
}