Removed the /ui basePath from Next.js configuration to serve the app at root path: - Removed basePath: "/ui" from next.config.ts - Updated all API route calls from /ui/api/* to /api/* - App now accessible at root path instead of /ui subdirectory 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
131 lines
3.1 KiB
TypeScript
131 lines
3.1 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import Link from "next/link";
|
|
import { usePathname } from "next/navigation";
|
|
import { cn } from "@/lib/utils";
|
|
import {
|
|
LayoutDashboard,
|
|
FolderKanban,
|
|
Webhook,
|
|
BriefcaseBusiness,
|
|
Activity,
|
|
Menu,
|
|
} from "lucide-react";
|
|
import { ThemeToggle } from "./theme-toggle";
|
|
import { Button } from "./ui/button";
|
|
import {
|
|
Sheet,
|
|
SheetContent,
|
|
SheetHeader,
|
|
SheetTitle,
|
|
} from "./ui/sheet";
|
|
|
|
const routes = [
|
|
{
|
|
label: "Dashboard",
|
|
icon: LayoutDashboard,
|
|
href: "/",
|
|
exact: true,
|
|
},
|
|
{
|
|
label: "Projects",
|
|
icon: FolderKanban,
|
|
href: "/projects",
|
|
},
|
|
{
|
|
label: "Spiders",
|
|
icon: Webhook,
|
|
href: "/spiders",
|
|
},
|
|
{
|
|
label: "Jobs",
|
|
icon: BriefcaseBusiness,
|
|
href: "/jobs",
|
|
},
|
|
{
|
|
label: "System",
|
|
icon: Activity,
|
|
href: "/system",
|
|
},
|
|
];
|
|
|
|
function SidebarContent({ onNavigate }: { onNavigate?: () => void }) {
|
|
const pathname = usePathname();
|
|
|
|
return (
|
|
<>
|
|
<nav className="flex-1 gap-1 p-4">
|
|
{routes.map((route) => {
|
|
const isActive = route.exact
|
|
? pathname === route.href
|
|
: pathname?.startsWith(route.href);
|
|
|
|
return (
|
|
<Link
|
|
key={route.href}
|
|
href={route.href}
|
|
onClick={onNavigate}
|
|
className={cn(
|
|
"flex items-center gap-3 rounded-lg px-3 py-2 text-sm font-medium transition-colors",
|
|
isActive
|
|
? "bg-primary text-primary-foreground"
|
|
: "text-muted-foreground hover:bg-accent hover:text-accent-foreground"
|
|
)}
|
|
>
|
|
<route.icon className="h-5 w-5" />
|
|
{route.label}
|
|
</Link>
|
|
);
|
|
})}
|
|
</nav>
|
|
<div className="border-t p-4">
|
|
<div className="flex items-center justify-between">
|
|
<span className="text-sm text-muted-foreground">Theme</span>
|
|
<ThemeToggle />
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export function Sidebar() {
|
|
return (
|
|
<div className="hidden md:flex h-full w-64 flex-col border-r bg-card">
|
|
<div className="flex h-16 items-center border-b px-6">
|
|
<h1 className="text-xl font-bold">Scrapy UI</h1>
|
|
</div>
|
|
<SidebarContent />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function MobileSidebar() {
|
|
const [open, setOpen] = useState(false);
|
|
|
|
return (
|
|
<>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
className="md:hidden"
|
|
onClick={() => setOpen(true)}
|
|
>
|
|
<Menu className="h-5 w-5" />
|
|
<span className="sr-only">Toggle menu</span>
|
|
</Button>
|
|
|
|
<Sheet open={open} onOpenChange={setOpen}>
|
|
<SheetContent side="left" className="w-64 p-0">
|
|
<div className="flex h-full flex-col">
|
|
<SheetHeader className="flex h-16 items-center border-b px-6 flex-row">
|
|
<SheetTitle className="text-xl font-bold">Scrapy UI</SheetTitle>
|
|
</SheetHeader>
|
|
<SidebarContent onNavigate={() => setOpen(false)} />
|
|
</div>
|
|
</SheetContent>
|
|
</Sheet>
|
|
</>
|
|
);
|
|
}
|