This commit is contained in:
Vula Builder
2026-07-25 11:17:57 +00:00
parent df75dab6bd
commit 362cea5db9
+77
View File
@@ -0,0 +1,77 @@
'use client'
import { cn } from "@/lib/utils"
import { X } from 'lucide-react'
import React, { useEffect, useRef } from "react"
interface ModalProps {
isOpen: boolean
onClose: () => void
children: React.ReactNode
title?: string
className?: string
}
export default function Modal({
isOpen,
onClose,
children,
title,
className
}: ModalProps) {
const overlayRef = useRef<HTMLDivElement>(null)
useEffect(() => {
if (isOpen) {
document.body.style.overflow = "hidden"
} else {
document.body.style.overflow = ""
}
return () => {
document.body.style.overflow = ""
}
}, [isOpen])
useEffect(() => {
const handleKeyDown = (e: KeyboardEvent) => {
if (e.key === "Escape" && isOpen) {
onClose()
}
}
window.addEventListener("keydown", handleKeyDown)
return () => window.removeEventListener("keydown", handleKeyDown)
}, [isOpen, onClose])
if (!isOpen) return null
return (
<div
ref={overlayRef}
className="fixed inset-0 z-50 flex items-center justify-center p-4 bg-black/60"
onClick={(e) => {
if (e.target === overlayRef.current) onClose()
}}
>
<div
className={cn(
"relative bg-[#f5f2f2] rounded-xl shadow-xl max-w-lg w-full max-h-[90vh] overflow-y-auto p-6",
className
)}
>
<div className="flex items-center justify-between mb-4">
{title && (
<h2 className="text-xl font-semibold text-[#33211f]">{title}</h2>
)}
<button
onClick={onClose}
className="ml-auto p-1 text-[#33211f] hover:text-[#C0392B] transition-colors focus:outline-none focus:ring-2 focus:ring-[#C0392B] rounded"
aria-label="Close modal"
>
<X className="h-5 w-5" />
</button>
</div>
{children}
</div>
</div>
)
}