mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-09 06:55:07 +00:00
* feat(www): add login blocks * chore(www): restructure for blocks * chore: build registry * chore: clean up chunks * fix(www): chart categories * feat(www): big registry refactor * feat(www): update blocks * feat: complex blocks * fix: update schema * feat: sync new-york and default * fix: lint * feat: move charts * fix(www): code * fix: src path * chore: rebuild registry * fix: screenshot * fix: set new-york as default
142 lines
4.2 KiB
TypeScript
142 lines
4.2 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import {
|
|
Bell,
|
|
Check,
|
|
Globe,
|
|
Home,
|
|
Keyboard,
|
|
Link,
|
|
Lock,
|
|
Menu,
|
|
MessageCircle,
|
|
Paintbrush,
|
|
Settings,
|
|
Video,
|
|
} from "lucide-react"
|
|
|
|
import {
|
|
Breadcrumb,
|
|
BreadcrumbItem,
|
|
BreadcrumbLink,
|
|
BreadcrumbList,
|
|
BreadcrumbPage,
|
|
BreadcrumbSeparator,
|
|
} from "@/registry/default/ui/breadcrumb"
|
|
import { Button } from "@/registry/default/ui/button"
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/registry/default/ui/dialog"
|
|
import {
|
|
Sidebar,
|
|
SidebarContent,
|
|
SidebarGroup,
|
|
SidebarGroupContent,
|
|
SidebarMenu,
|
|
SidebarMenuButton,
|
|
SidebarMenuItem,
|
|
SidebarProvider,
|
|
} from "@/registry/default/ui/sidebar"
|
|
|
|
export const iframeHeight = "800px"
|
|
|
|
export const description = "A sidebar in a dialog."
|
|
|
|
const data = {
|
|
nav: [
|
|
{ name: "Notifications", icon: Bell },
|
|
{ name: "Navigation", icon: Menu },
|
|
{ name: "Home", icon: Home },
|
|
{ name: "Appearance", icon: Paintbrush },
|
|
{ name: "Messages & media", icon: MessageCircle },
|
|
{ name: "Language & region", icon: Globe },
|
|
{ name: "Accessibility", icon: Keyboard },
|
|
{ name: "Mark as read", icon: Check },
|
|
{ name: "Audio & video", icon: Video },
|
|
{ name: "Connected accounts", icon: Link },
|
|
{ name: "Privacy & visibility", icon: Lock },
|
|
{ name: "Advanced", icon: Settings },
|
|
],
|
|
}
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div className="flex h-svh items-center justify-center">
|
|
<SettingsDialog />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function SettingsDialog() {
|
|
const [open, setOpen] = React.useState(true)
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
<DialogTrigger asChild>
|
|
<Button size="sm">Open Dialog</Button>
|
|
</DialogTrigger>
|
|
<DialogContent className="overflow-hidden p-0 md:max-h-[500px] md:max-w-[700px] lg:max-w-[800px]">
|
|
<DialogTitle className="sr-only">Settings</DialogTitle>
|
|
<DialogDescription className="sr-only">
|
|
Customize your settings here.
|
|
</DialogDescription>
|
|
<SidebarProvider className="items-start">
|
|
<Sidebar collapsible="none" className="hidden md:flex">
|
|
<SidebarContent>
|
|
<SidebarGroup>
|
|
<SidebarGroupContent>
|
|
<SidebarMenu>
|
|
{data.nav.map((item) => (
|
|
<SidebarMenuItem key={item.name}>
|
|
<SidebarMenuButton
|
|
asChild
|
|
isActive={item.name === "Messages & media"}
|
|
>
|
|
<a href="#">
|
|
<item.icon />
|
|
<span>{item.name}</span>
|
|
</a>
|
|
</SidebarMenuButton>
|
|
</SidebarMenuItem>
|
|
))}
|
|
</SidebarMenu>
|
|
</SidebarGroupContent>
|
|
</SidebarGroup>
|
|
</SidebarContent>
|
|
</Sidebar>
|
|
<main className="flex h-[480px] flex-1 flex-col overflow-hidden">
|
|
<header className="flex h-16 shrink-0 items-center gap-2 transition-[width,height] ease-linear group-has-[[data-collapsible=icon]]/sidebar-wrapper:h-12">
|
|
<div className="flex items-center gap-2 px-4">
|
|
<Breadcrumb>
|
|
<BreadcrumbList>
|
|
<BreadcrumbItem className="hidden md:block">
|
|
<BreadcrumbLink href="#">Settings</BreadcrumbLink>
|
|
</BreadcrumbItem>
|
|
<BreadcrumbSeparator className="hidden md:block" />
|
|
<BreadcrumbItem>
|
|
<BreadcrumbPage>Messages & media</BreadcrumbPage>
|
|
</BreadcrumbItem>
|
|
</BreadcrumbList>
|
|
</Breadcrumb>
|
|
</div>
|
|
</header>
|
|
<div className="flex flex-1 flex-col gap-4 overflow-y-auto p-4 pt-0">
|
|
{Array.from({ length: 10 }).map((_, i) => (
|
|
<div
|
|
key={i}
|
|
className="aspect-video max-w-3xl rounded-xl bg-muted/50"
|
|
/>
|
|
))}
|
|
</div>
|
|
</main>
|
|
</SidebarProvider>
|
|
</DialogContent>
|
|
</Dialog>
|
|
)
|
|
}
|