This commit is contained in:
Vula Builder
2026-07-29 18:15:25 +00:00
parent 36588942ed
commit 6b84c19659
+69
View File
@@ -0,0 +1,69 @@
'use client'
import { cn } from "@/lib/utils"
import { X } from 'lucide-react'
import React, { useEffect, useRef } from "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)
useEffect(() => {
const handleEscape = (e: KeyboardEvent) => {
if (e.key === "Escape") onClose()
}
if (isOpen) {
document.addEventListener("keydown", handleEscape)
document.body.style.overflow = "hidden"
} else {
document.body.style.overflow = ""
}
return () => {
document.removeEventListener("keydown", handleEscape)
document.body.style.overflow = ""
}
}, [isOpen, onClose])
if (!isOpen) return null
return (
<div
ref={overlayRef}
className="fixed inset-0 z-50 flex items-center justify-center bg-black/50 backdrop-blur-sm"
onClick={(e) => {
if (e.target === overlayRef.current) onClose()
}}
>
<div
className={cn(
"relative w-full max-w-md mx-4 bg-background border border-border rounded-lg shadow-lg p-6",
className
)}
role="dialog"
aria-modal="true"
aria-labelledby={title ? "modal-title" : undefined}
>
<button
onClick={onClose}
className="absolute top-4 right-4 text-muted-foreground hover:text-foreground transition-colors"
aria-label="Close modal"
>
<X className="h-5 w-5" />
</button>
{title && (
<h2 id="modal-title" className="text-xl font-semibold mb-4 text-foreground">
{title}
</h2>
)}
{children}
</div>
</div>
)
}