TorbatYar/frontend/components/ds/Drawer.tsx
Mortezakoohjani 12c8615615 Ship enterprise Accounting FE/API with CRUD parity and production wiring.
Adds accounting-service PATCH/archive, fiscal helpers, COA templates and setup status, plus SuperApp Accounting UI (DS, scoreboard, masters, vouchers, ledger, ops modules) with session refresh and HTTPS public API URLs.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-24 15:26:43 +03:30

67 lines
2.0 KiB
TypeScript

"use client";
import { useEffect } from "react";
import { X } from "lucide-react";
import { cn } from "@/lib/utils";
import { Button } from "./Button";
export function Drawer({
open,
onClose,
title,
description,
children,
side = "left",
width = "md",
}: {
open: boolean;
onClose: () => void;
title: string;
description?: string;
children: React.ReactNode;
side?: "left" | "right";
width?: "sm" | "md" | "lg";
}) {
useEffect(() => {
if (!open) return;
const onKey = (e: KeyboardEvent) => {
if (e.key === "Escape") onClose();
};
window.addEventListener("keydown", onKey);
return () => window.removeEventListener("keydown", onKey);
}, [open, onClose]);
if (!open) return null;
const widths = { sm: "max-w-sm", md: "max-w-md", lg: "max-w-xl" };
return (
<div className="fixed inset-0 z-50">
<button type="button" aria-label="بستن" className="absolute inset-0 bg-black/40" onClick={onClose} />
<aside
role="dialog"
aria-modal="true"
aria-labelledby="drawer-title"
className={cn(
"absolute top-0 flex h-full w-full flex-col border-[var(--border)] bg-[var(--surface)] shadow-[var(--shadow-lg)]",
widths[width],
side === "left" ? "right-0 border-r" : "left-0 border-l"
)}
>
<div className="flex items-start justify-between gap-3 border-b border-[var(--border)] px-5 py-4">
<div>
<h2 id="drawer-title" className="text-base font-semibold text-secondary">
{title}
</h2>
{description ? <p className="mt-1 text-sm text-[var(--muted)]">{description}</p> : null}
</div>
<Button type="button" variant="ghost" size="icon" onClick={onClose} aria-label="بستن">
<X className="h-4 w-4" />
</Button>
</div>
<div className="flex-1 overflow-y-auto px-5 py-4">{children}</div>
</aside>
</div>
);
}