75 lines
2.1 KiB
TypeScript
75 lines
2.1 KiB
TypeScript
'use client'
|
|
|
|
import { useEffect, useRef, useState } from "react"
|
|
import { X } from 'lucide-react'
|
|
import { cn } from "@/lib/utils"
|
|
|
|
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 [mounted, setMounted] = useState(false)
|
|
|
|
useEffect(() => {
|
|
if (isOpen) {
|
|
setMounted(true)
|
|
document.body.style.overflow = "hidden"
|
|
} else {
|
|
document.body.style.overflow = ""
|
|
}
|
|
return () => {
|
|
document.body.style.overflow = ""
|
|
}
|
|
}, [isOpen])
|
|
|
|
useEffect(() => {
|
|
const handleEscape = (e: KeyboardEvent) => {
|
|
if (e.key === "Escape") onClose()
|
|
}
|
|
window.addEventListener("keydown", handleEscape)
|
|
return () => window.removeEventListener("keydown", handleEscape)
|
|
}, [onClose])
|
|
|
|
if (!isOpen && !mounted) return null
|
|
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"fixed inset-0 z-50 flex items-center justify-center bg-black/50 backdrop-blur-sm transition-opacity",
|
|
isOpen ? "opacity-100" : "opacity-0 pointer-events-none"
|
|
)}
|
|
ref={overlayRef}
|
|
onClick={(e) => {
|
|
if (e.target === overlayRef.current) onClose()
|
|
}}
|
|
role="dialog"
|
|
aria-modal="true"
|
|
aria-label={title || "Modal"}
|
|
>
|
|
<div
|
|
className={cn(
|
|
"bg-[#0f0f17] border border-[#303040] rounded-lg shadow-xl w-full max-w-md mx-4 p-6 max-h-[80vh] overflow-y-auto",
|
|
className
|
|
)}
|
|
>
|
|
<div className="flex items-center justify-between mb-4">
|
|
{title && <h2 className="text-xl font-semibold text-[#e7e7ee]">{title}</h2>}
|
|
<button
|
|
onClick={onClose}
|
|
className="ml-auto rounded-full p-1 text-[#e7e7ee]/60 hover:text-[#e7e7ee] hover:bg-[#1a1a2e] transition-colors focus:outline-none focus:ring-1 focus:ring-[#c0c0c0]"
|
|
aria-label="Close modal"
|
|
>
|
|
<X size={20} />
|
|
</button>
|
|
</div>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
)
|
|
} |