完成项目结构搭建

This commit is contained in:
2025-05-10 19:13:50 +08:00
parent 7bbcf2fac7
commit 17c065ae79
14 changed files with 151 additions and 337 deletions

View File

@@ -2,30 +2,27 @@
import * as React from "react"
import {
AudioWaveform,
BookOpen,
Bot,
Command,
Frame,
GalleryVerticalEnd,
Map,
PieChart,
Settings2,
CloudUpload,
Inbox,
Server,
SquareTerminal,
UsersRound,
} from "lucide-react"
import { NavMain } from "@/components/nav-main"
import { NavProjects } from "@/components/nav-projects"
import { NavUser } from "@/components/nav-user"
import { TeamSwitcher } from "@/components/team-switcher"
import {
Sidebar,
SidebarContent,
SidebarFooter,
SidebarHeader,
SidebarMenu,
SidebarMenuButton,
SidebarMenuItem,
SidebarRail,
} from "@/components/ui/sidebar"
import { useRouter } from "next/navigation"
import Link from "next/link"
// This is sample data.
const data = {
user: {
@@ -33,125 +30,51 @@ const data = {
email: "m@example.com",
avatar: "/avatars/shadcn.jpg",
},
teams: [
{
name: "Acme Inc",
logo: GalleryVerticalEnd,
plan: "Enterprise",
},
{
name: "Acme Corp.",
logo: AudioWaveform,
plan: "Startup",
},
{
name: "Evil Corp.",
logo: Command,
plan: "Free",
},
],
navMain: [
{
title: "Playground",
url: "#",
title: "网站管理",
url: "/console/web",
icon: SquareTerminal,
isActive: true,
items: [
{
title: "History",
url: "#",
title: "资源",
url: "/console/web/resource",
},
{
title: "Starred",
url: "#",
},
{
title: "Settings",
url: "#",
title: "博客",
url: "/console/web/blog",
},
],
},
{
title: "Models",
url: "#",
icon: Bot,
title: "用户管理",
url: "/console/user",
icon: UsersRound,
items: [
{
title: "Genesis",
url: "#",
title: "用户",
url: "/console/user",
},
{
title: "Explorer",
url: "#",
},
{
title: "Quantum",
url: "#",
title: "角色/权限",
url: "/console/user/role",
},
],
},
{
title: "Documentation",
url: "#",
icon: BookOpen,
items: [
{
title: "Introduction",
url: "#",
},
{
title: "Get Started",
url: "#",
},
{
title: "Tutorials",
url: "#",
},
{
title: "Changelog",
url: "#",
},
],
title: "文件存储",
url: "/console/storage",
icon: CloudUpload,
},
{
title: "Settings",
url: "#",
icon: Settings2,
items: [
{
title: "General",
url: "#",
},
{
title: "Team",
url: "#",
},
{
title: "Billing",
url: "#",
},
{
title: "Limits",
url: "#",
},
],
},
],
projects: [
{
name: "Design Engineering",
url: "#",
icon: Frame,
title: "虚拟云空间",
url: "/console/vspace",
icon: Inbox,
},
{
name: "Sales & Marketing",
url: "#",
icon: PieChart,
},
{
name: "Travel",
url: "#",
icon: Map,
title: "虚拟主机",
url: "/console/vserver",
icon: Server,
},
],
}
@@ -160,11 +83,26 @@ export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) {
return (
<Sidebar collapsible="icon" {...props}>
<SidebarHeader>
<TeamSwitcher teams={data.teams} />
<SidebarMenu>
<SidebarMenuItem>
<Link href="/console">
<SidebarMenuButton size="lg" asChild>
<div className="cursor-pointer">
<div className="flex aspect-square size-8 items-center justify-center rounded-lg bg-sidebar-primary text-sidebar-primary-foreground">
<SquareTerminal className="size-5" />
</div>
<div className="flex flex-col gap-0.5 leading-none">
<span className="font-semibold"> - </span>
<span className="">v1.0.0</span>
</div>
</div>
</SidebarMenuButton>
</Link>
</SidebarMenuItem>
</SidebarMenu>
</SidebarHeader>
<SidebarContent>
<NavMain items={data.navMain} />
<NavProjects projects={data.projects} />
</SidebarContent>
<SidebarFooter>
<NavUser user={data.user} />