2026-02-07 12:20:12 -08:00

62 lines
1.8 KiB
TypeScript

'use client'
import { useEffect } from 'react'
import { X } from 'lucide-react'
interface DrawerProps {
isOpen: boolean
onClose: () => void
title: string
children: React.ReactNode
}
export default function Drawer({ isOpen, onClose, title, children }: DrawerProps) {
// Close on Escape key
useEffect(() => {
const handleEsc = (e: KeyboardEvent) => {
if (e.key === 'Escape') onClose()
}
if (isOpen) {
document.addEventListener('keydown', handleEsc)
document.body.style.overflow = 'hidden'
}
return () => {
document.removeEventListener('keydown', handleEsc)
document.body.style.overflow = ''
}
}, [isOpen, onClose])
if (!isOpen) return null
return (
<div className="fixed inset-0 z-40">
{/* Backdrop */}
<div className="absolute inset-0 bg-black/60 backdrop-blur-sm" onClick={onClose} />
{/* Drawer Panel */}
<div className="absolute inset-y-0 right-0 w-full max-w-3xl animate-slide-in-right">
<div className="h-full flex flex-col bg-gray-900/95 backdrop-blur-md border-l border-gray-700/50 shadow-2xl">
{/* Header */}
<div className="flex items-center justify-between px-6 py-4 border-b border-gray-700/50 bg-gray-900/60 backdrop-blur-sm">
<h2 className="text-lg font-semibold text-gray-100">{title}</h2>
<button
onClick={onClose}
className="p-2 rounded-lg text-gray-400 hover:bg-gray-800 hover:text-gray-200 transition-colors"
aria-label="Close drawer"
>
<X size={20} />
</button>
</div>
{/* Content */}
<div className="flex-1 overflow-y-auto p-6">
{children}
</div>
</div>
</div>
</div>
)
}