2025-10-25 03:23:41 -07:00
|
|
|
import type { ReactNode } from "react";
|
2025-10-25 10:04:21 -07:00
|
|
|
import { ChevronLeft, ChevronRight } from "lucide-react";
|
2025-10-25 03:23:41 -07:00
|
|
|
import { Button } from "~/components/ui/button";
|
2025-10-25 10:04:21 -07:00
|
|
|
import {
|
|
|
|
|
Accordion,
|
|
|
|
|
AccordionContent,
|
|
|
|
|
AccordionItem,
|
|
|
|
|
AccordionTrigger,
|
|
|
|
|
} from "~/components/ui/accordion";
|
2025-10-25 03:23:41 -07:00
|
|
|
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;
|
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,
|
2025-10-25 03:23:41 -07:00
|
|
|
className,
|
|
|
|
|
}: DraftSidebarProps) {
|
|
|
|
|
if (collapsed) {
|
|
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
className={cn(
|
2025-10-25 18:25:26 -07:00
|
|
|
"relative flex-shrink-0 bg-card border-r border-border transition-all duration-300 flex flex-col",
|
2025-10-25 03:23:41 -07:00
|
|
|
"w-12 hidden lg:block", // Hide completely on mobile when collapsed
|
|
|
|
|
className
|
|
|
|
|
)}
|
|
|
|
|
>
|
2025-10-25 18:25:26 -07:00
|
|
|
<div className="flex-1" />
|
|
|
|
|
{/* Expand button at bottom to match hide button position */}
|
|
|
|
|
<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",
|
2025-10-25 18:25:26 -07:00
|
|
|
"w-[450px]",
|
2025-10-25 03:23:41 -07:00
|
|
|
// Mobile: fixed overlay, Desktop: normal sidebar
|
|
|
|
|
"fixed inset-y-0 left-0 z-50 lg:relative lg:z-auto",
|
|
|
|
|
className
|
|
|
|
|
)}
|
|
|
|
|
>
|
2025-10-25 10:04:21 -07:00
|
|
|
<Accordion
|
|
|
|
|
type="multiple"
|
2025-10-25 18:25:26 -07:00
|
|
|
defaultValue={["queue", "recent-picks"]}
|
|
|
|
|
className="flex-1 overflow-hidden flex flex-col"
|
2025-10-25 03:23:41 -07:00
|
|
|
>
|
2025-10-25 10:04:21 -07:00
|
|
|
{/* Queue Section */}
|
2025-10-25 18:25:26 -07:00
|
|
|
<AccordionItem value="queue" className="border-b flex-shrink-0">
|
2025-10-25 10:04:21 -07:00
|
|
|
<AccordionTrigger className="px-4 py-3 hover:no-underline bg-muted/50 hover:bg-muted">
|
|
|
|
|
<h2 className="font-semibold text-sm">My Queue</h2>
|
|
|
|
|
</AccordionTrigger>
|
2025-10-25 18:25:26 -07:00
|
|
|
<AccordionContent className="max-h-[35vh] overflow-y-auto pb-0">
|
2025-10-25 10:04:21 -07:00
|
|
|
{queueSection}
|
|
|
|
|
</AccordionContent>
|
|
|
|
|
</AccordionItem>
|
2025-10-25 03:23:41 -07:00
|
|
|
|
2025-10-25 18:25:26 -07:00
|
|
|
{/* Recent Picks Section */}
|
|
|
|
|
<AccordionItem value="recent-picks" className="border-0 flex-1 overflow-hidden flex flex-col">
|
|
|
|
|
<AccordionTrigger className="px-4 py-3 hover:no-underline bg-muted/50 hover:bg-muted flex-shrink-0">
|
|
|
|
|
<h2 className="font-semibold text-sm">Recent Picks</h2>
|
2025-10-25 10:04:21 -07:00
|
|
|
</AccordionTrigger>
|
2025-10-25 18:25:26 -07:00
|
|
|
<AccordionContent className="pb-0 flex-1 overflow-y-auto">
|
|
|
|
|
{recentPicksSection}
|
2025-10-25 10:04:21 -07:00
|
|
|
</AccordionContent>
|
|
|
|
|
</AccordionItem>
|
|
|
|
|
</Accordion>
|
2025-10-25 03:23:41 -07:00
|
|
|
|
2025-10-25 10:04:21 -07:00
|
|
|
{/* Collapse button at bottom */}
|
|
|
|
|
<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>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|