monaco-editor-lsp-next/src/components/sidebar/app-sidebar.tsx

152 lines
3.2 KiB
TypeScript
Raw Normal View History

2025-06-17 09:05:15 +00:00
"use client"
import { siteConfig } from "@/config/site"
import * as React from "react"
import {
2025-06-17 09:05:15 +00:00
BookOpen,
Command,
2025-06-17 09:05:15 +00:00
LifeBuoy,
Send,
Settings2,
SquareTerminal,
2025-06-17 09:05:15 +00:00
} from "lucide-react"
import { NavMain } from "@/components/nav-main"
import { NavProjects } from "@/components/nav-projects"
import { NavSecondary } from "@/components/nav-secondary"
import { NavUser } from "@/components/nav-user"
import {
Sidebar,
SidebarContent,
SidebarFooter,
SidebarHeader,
2025-06-17 09:05:15 +00:00
SidebarMenu,
SidebarMenuButton,
SidebarMenuItem,
} from "@/components/ui/sidebar"
2025-06-19 08:07:40 +00:00
const data = {
2025-06-17 09:05:15 +00:00
user: {
name: "shadcn",
email: "m@example.com",
avatar: "/avatars/shadcn.jpg",
},
navMain: [
{
2025-06-18 09:49:07 +00:00
title: "页面",
2025-06-17 09:05:15 +00:00
url: "#",
icon: SquareTerminal,
isActive: true,
2025-06-17 09:05:15 +00:00
items: [
{
2025-06-18 09:49:07 +00:00
title: "主页",
2025-06-19 08:07:40 +00:00
url: "/student/dashboard",
2025-06-17 09:05:15 +00:00
},
{
2025-06-18 09:49:07 +00:00
title: "历史记录",
2025-06-17 09:05:15 +00:00
url: "#",
},
{
2025-06-18 09:49:07 +00:00
title: "题目集",
2025-06-17 09:05:15 +00:00
url: "/problemset",
},
],
},
2025-06-17 09:05:15 +00:00
{
2025-06-18 09:49:07 +00:00
title: "已完成事项",
url: "#",
2025-06-17 09:05:15 +00:00
icon: BookOpen,
items: [
{
2025-06-18 09:49:07 +00:00
title: "全部编程集",
url: "#",
},
{
2025-06-18 09:49:07 +00:00
title: "错题集",
url: "#",
},
2025-06-18 09:49:07 +00:00
{
title: "收藏集",
url: "#",
},
],
},
{
2025-06-18 09:49:07 +00:00
title: "设置",
2025-06-17 09:05:15 +00:00
url: "#",
icon: Settings2,
items: [
{
2025-06-18 09:49:07 +00:00
title: "一般设置",
2025-06-17 09:05:15 +00:00
url: "#",
},
{
2025-06-18 09:49:07 +00:00
title: "语言",
2025-06-17 09:05:15 +00:00
url: "#",
},
],
},
],
2025-06-17 09:05:15 +00:00
navSecondary: [
{
2025-06-19 08:07:40 +00:00
title: "帮助",
2025-06-17 09:05:15 +00:00
url: "/",
icon: LifeBuoy,
},
{
2025-06-19 08:07:40 +00:00
title: "反馈",
2025-06-17 09:05:15 +00:00
url: siteConfig.url.repo.github,
icon: Send,
},
],
2025-06-18 09:49:07 +00:00
wrongProblems: [
{
2025-06-18 09:49:07 +00:00
id: "abc123",
name: "Two Sum",
status: "WA",
},
{
2025-06-18 09:49:07 +00:00
id: "def456",
name: "Reverse Linked List",
status: "RE",
},
{
2025-06-18 09:49:07 +00:00
id: "ghi789",
name: "Binary Tree Paths",
status: "TLE",
},
],
}
2025-06-17 09:05:15 +00:00
export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) {
return (
2025-06-17 09:05:15 +00:00
<Sidebar variant="inset" {...props}>
<SidebarHeader>
2025-06-17 09:05:15 +00:00
<SidebarMenu>
<SidebarMenuItem>
<SidebarMenuButton size="lg" asChild>
<a href="#">
<div className="flex aspect-square size-8 items-center justify-center rounded-lg bg-sidebar-primary text-sidebar-primary-foreground">
<Command className="size-4" />
</div>
<div className="grid flex-1 text-left text-sm leading-tight">
<span className="truncate font-semibold">Judge4c</span>
<span className="truncate text-xs">Programming Learning</span>
</div>
</a>
</SidebarMenuButton>
</SidebarMenuItem>
</SidebarMenu>
</SidebarHeader>
<SidebarContent>
<NavMain items={data.navMain} />
2025-06-18 09:49:07 +00:00
<NavProjects projects={data.wrongProblems} />
2025-06-17 09:05:15 +00:00
<NavSecondary items={data.navSecondary} className="mt-auto" />
</SidebarContent>
<SidebarFooter>
2025-06-17 09:05:15 +00:00
<NavUser user={data.user} />
</SidebarFooter>
</Sidebar>
2025-06-17 09:05:15 +00:00
)
2025-06-19 08:07:40 +00:00
}