2026-04-17 23:38:29 -07:00
|
|
|
import { useState } from "react";
|
2025-10-25 03:23:41 -07:00
|
|
|
import type { ReactNode } from "react";
|
2026-04-17 23:38:29 -07:00
|
|
|
import { ChevronDown, ChevronLeft, ChevronRight } from "lucide-react";
|
2025-10-25 03:23:41 -07:00
|
|
|
import { Button } from "~/components/ui/button";
|
|
|
|
|
import { cn } from "~/lib/utils";
|
|
|
|
|
|
|
|
|
|
interface DraftSidebarProps {
|
|
|
|
|
collapsed: boolean;
|
|
|
|
|
onCollapsedChange: (collapsed: boolean) => void;
|
|
|
|
|
queueSection: ReactNode;
|
2025-10-25 18:25:26 -07:00
|
|
|
recentPicksSection: ReactNode;
|
2026-02-20 19:30:53 -08:00
|
|
|
settingsSection?: ReactNode;
|
2025-10-25 03:23:41 -07:00
|
|
|
className?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function DraftSidebar({
|
|
|
|
|
collapsed,
|
|
|
|
|
onCollapsedChange,
|
|
|
|
|
queueSection,
|
2025-10-25 18:25:26 -07:00
|
|
|
recentPicksSection,
|
2026-02-20 19:30:53 -08:00
|
|
|
settingsSection,
|
2025-10-25 03:23:41 -07:00
|
|
|
className,
|
|
|
|
|
}: DraftSidebarProps) {
|
2026-04-17 23:38:29 -07:00
|
|
|
const [queueOpen, setQueueOpen] = useState(true);
|
|
|
|
|
const [picksOpen, setPicksOpen] = useState(true);
|
|
|
|
|
|
2025-10-25 03:23:41 -07:00
|
|
|
if (collapsed) {
|
|
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
className={cn(
|
2026-04-17 23:38:29 -07:00
|
|
|
"relative flex-shrink-0 bg-card border-r border-border transition-all duration-300 flex flex-col h-full",
|
|
|
|
|
"w-12 hidden lg:flex",
|
2025-10-25 03:23:41 -07:00
|
|
|
className
|
|
|
|
|
)}
|
|
|
|
|
>
|
2025-10-25 18:25:26 -07:00
|
|
|
<div className="flex-1" />
|
|
|
|
|
<div className="border-t border-border p-2 flex-shrink-0">
|
|
|
|
|
<Button
|
|
|
|
|
variant="ghost"
|
|
|
|
|
size="icon"
|
|
|
|
|
onClick={() => onCollapsedChange(false)}
|
|
|
|
|
className="w-full"
|
|
|
|
|
aria-label="Expand sidebar"
|
|
|
|
|
>
|
|
|
|
|
<ChevronRight className="h-4 w-4" />
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
2025-10-25 03:23:41 -07:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
{/* Mobile backdrop */}
|
|
|
|
|
<div
|
|
|
|
|
className="fixed inset-0 bg-black/50 z-40 lg:hidden"
|
|
|
|
|
onClick={() => onCollapsedChange(true)}
|
|
|
|
|
aria-label="Close sidebar"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<div
|
|
|
|
|
className={cn(
|
|
|
|
|
"relative flex-shrink-0 bg-card border-r border-border transition-all duration-300 flex flex-col",
|
2026-04-17 15:07:25 -07:00
|
|
|
"w-[300px]",
|
2025-10-25 03:23:41 -07:00
|
|
|
"fixed inset-y-0 left-0 z-50 lg:relative lg:z-auto",
|
|
|
|
|
className
|
|
|
|
|
)}
|
|
|
|
|
>
|
2026-04-17 23:38:29 -07:00
|
|
|
<div className="flex-1 flex flex-col min-h-0 overflow-hidden">
|
2025-10-25 10:04:21 -07:00
|
|
|
{/* Queue Section */}
|
2026-04-17 23:38:29 -07:00
|
|
|
<div className={cn("flex flex-col border-b", queueOpen ? "flex-1 min-h-0" : "flex-shrink-0")}>
|
|
|
|
|
<button
|
|
|
|
|
onClick={() => setQueueOpen((o) => !o)}
|
|
|
|
|
className="px-4 py-3 bg-muted/50 hover:bg-muted flex items-center justify-between w-full flex-shrink-0"
|
|
|
|
|
>
|
2025-10-25 10:04:21 -07:00
|
|
|
<h2 className="font-semibold text-sm">My Queue</h2>
|
2026-04-17 23:38:29 -07:00
|
|
|
<ChevronDown className={cn("h-4 w-4 transition-transform", queueOpen && "rotate-180")} />
|
|
|
|
|
</button>
|
|
|
|
|
{queueOpen && (
|
|
|
|
|
<div className="flex-1 overflow-y-auto min-h-0">
|
|
|
|
|
{queueSection}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
2025-10-25 03:23:41 -07:00
|
|
|
|
2026-04-17 23:38:29 -07:00
|
|
|
{/* Picks Section */}
|
|
|
|
|
<div className={cn("flex flex-col", picksOpen ? "flex-1 min-h-0" : "flex-shrink-0")}>
|
|
|
|
|
<button
|
|
|
|
|
onClick={() => setPicksOpen((o) => !o)}
|
|
|
|
|
className="px-4 py-3 bg-muted/50 hover:bg-muted flex items-center justify-between w-full flex-shrink-0"
|
|
|
|
|
>
|
2026-02-23 22:25:28 -08:00
|
|
|
<h2 className="font-semibold text-sm">Picks</h2>
|
2026-04-17 23:38:29 -07:00
|
|
|
<ChevronDown className={cn("h-4 w-4 transition-transform", picksOpen && "rotate-180")} />
|
|
|
|
|
</button>
|
|
|
|
|
{picksOpen && (
|
|
|
|
|
<div className="flex-1 overflow-y-auto min-h-0">
|
|
|
|
|
{recentPicksSection}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-10-25 03:23:41 -07:00
|
|
|
|
2026-02-20 19:30:53 -08:00
|
|
|
{settingsSection && (
|
|
|
|
|
<div className="border-t border-border px-4 py-3 flex-shrink-0">
|
|
|
|
|
{settingsSection}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
2025-10-25 10:04:21 -07:00
|
|
|
<div className="border-t border-border p-2 flex-shrink-0">
|
|
|
|
|
<Button
|
|
|
|
|
variant="ghost"
|
|
|
|
|
size="sm"
|
|
|
|
|
onClick={() => onCollapsedChange(true)}
|
|
|
|
|
className="w-full flex items-center justify-center gap-2"
|
|
|
|
|
aria-label="Collapse sidebar"
|
|
|
|
|
>
|
|
|
|
|
<ChevronLeft className="h-4 w-4" />
|
|
|
|
|
<span className="text-sm">Hide Sidebar</span>
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
2025-10-25 03:23:41 -07:00
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|