This commit is contained in:
Vula Builder
2026-06-04 11:45:20 +00:00
parent 1f2ff638f8
commit a9475a8d0e
+73
View File
@@ -0,0 +1,73 @@
'use client'
import { cn } from "@/lib/utils"
import { X } from 'lucide-react'
import React, { useEffect, useRef } from "react"
interface ModalProps {
open: boolean
onClose: () => void
title?: string
children: React.ReactNode
className?: string
}
export default function Modal({ open, onClose, title, children, className }: ModalProps) {
const overlayRef = useRef<HTMLDivElement>(null)
useEffect(() => {
if (open) {
document.body.style.overflow = "hidden"
} else {
document.body.style.overflow = ""
}
return () => {
document.body.style.overflow = ""
}
}, [open])
useEffect(() => {
const handleEscape = (e: KeyboardEvent) => {
if (e.key === "Escape") onClose()
}
if (open) {
document.addEventListener("keydown", handleEscape)
}
return () => document.removeEventListener("keydown", handleEscape)
}, [open, onClose])
const handleOverlayClick = (e: React.MouseEvent) => {
if (e.target === overlayRef.current) onClose()
}
if (!open) return null
return (
<div
ref={overlayRef}
className="fixed inset-0 z-50 flex items-center justify-center bg-black/50 backdrop-blur-sm"
onClick={handleOverlayClick}
role="dialog"
aria-modal="true"
>
<div
className={cn(
"relative w-full max-w-lg rounded-lg bg-white p-6 shadow-xl",
className
)}
>
<button
onClick={onClose}
className="absolute right-4 top-4 rounded-md p-1 text-muted-foreground hover:bg-muted hover:text-foreground focus:outline-none focus:ring-2 focus:ring-[#ea580c]/50"
aria-label="Close modal"
>
<X className="h-5 w-5" />
</button>
{title && (
<h2 className="text-2xl font-semibold tracking-tight mb-4">{title}</h2>
)}
{children}
</div>
</div>
)
}