import React, { useEffect } from 'react';
interface ChangesDrawerProps {
isOpen: boolean;
onClose: () => void;
title: string;
children: React.ReactNode;
}
export function ChangesDrawer({ isOpen, onClose, title, children }: ChangesDrawerProps) {
useEffect(() => {
if (!isOpen) {
return;
}
const handleEscape = (event: KeyboardEvent) => {
if (event.key === 'Escape') {
onClose();
}
};
window.addEventListener('keydown', handleEscape);
return () => {
window.removeEventListener('keydown', handleEscape);
};
}, [isOpen, onClose]);
return (
<div
className={`fixed inset-0 z-50 md:hidden ${
isOpen ? 'pointer-events-auto' : 'pointer-events-none'
}`}
onClick={(event) => {
if (event.target === event.currentTarget) {
onClose();
}
}}
role="dialog"
aria-modal="true"
aria-label={title}
aria-hidden={!isOpen}
>
<div
className={`absolute inset-0 bg-black/50 transition-opacity duration-200 ${
isOpen ? 'opacity-100' : 'opacity-0'
}`}
/>
<div
className={`absolute right-0 top-0 h-full w-72 max-w-[85vw] border-l border-[#27272a] bg-[#09090b] transition-transform duration-200 ease-out ${
isOpen ? 'translate-x-0' : 'translate-x-full'
}`}
>
<div className="border-b border-[#27272a] px-3 py-2 text-sm font-medium text-[#fafafa]">{title}</div>
<div className="h-[calc(100%-37px)]">{children}</div>
</div>
</div>
);
}