mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-02 17:08:39 +00:00
* feat: add phosphor icons to base ui * feat_ add phosphor to blocks * feat: add phosphor to radix blocks * feat: add phosphor to radix ui * feat: add phosphor to radix example * feat: add missing phosphor icons * fix: rename broken icons * chore: format files * fix: add missing phosphor icons * chore: build registry --------- Co-authored-by: shadcn <m@shadcn.com>
237 lines
6.8 KiB
TypeScript
237 lines
6.8 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
|
|
import {
|
|
Example,
|
|
ExampleWrapper,
|
|
} from "@/registry/bases/base/components/example"
|
|
import { Button } from "@/registry/bases/base/ui/button"
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/registry/bases/base/ui/card"
|
|
import {
|
|
Collapsible,
|
|
CollapsibleContent,
|
|
CollapsibleTrigger,
|
|
} from "@/registry/bases/base/ui/collapsible"
|
|
import { Field, FieldGroup, FieldLabel } from "@/registry/bases/base/ui/field"
|
|
import { Input } from "@/registry/bases/base/ui/input"
|
|
import { Tabs, TabsList, TabsTrigger } from "@/registry/bases/base/ui/tabs"
|
|
import { IconPlaceholder } from "@/app/(create)/components/icon-placeholder"
|
|
|
|
export default function CollapsibleExample() {
|
|
return (
|
|
<ExampleWrapper>
|
|
<CollapsibleFileTree />
|
|
<CollapsibleSettings />
|
|
</ExampleWrapper>
|
|
)
|
|
}
|
|
|
|
type FileTreeItem = { name: string } | { name: string; items: FileTreeItem[] }
|
|
|
|
function CollapsibleFileTree() {
|
|
const fileTree: FileTreeItem[] = [
|
|
{
|
|
name: "components",
|
|
items: [
|
|
{
|
|
name: "ui",
|
|
items: [
|
|
{ name: "button.tsx" },
|
|
{ name: "card.tsx" },
|
|
{ name: "dialog.tsx" },
|
|
{ name: "input.tsx" },
|
|
{ name: "select.tsx" },
|
|
{ name: "table.tsx" },
|
|
],
|
|
},
|
|
{ name: "login-form.tsx" },
|
|
{ name: "register-form.tsx" },
|
|
],
|
|
},
|
|
{
|
|
name: "lib",
|
|
items: [{ name: "utils.ts" }, { name: "cn.ts" }, { name: "api.ts" }],
|
|
},
|
|
{
|
|
name: "hooks",
|
|
items: [
|
|
{ name: "use-media-query.ts" },
|
|
{ name: "use-debounce.ts" },
|
|
{ name: "use-local-storage.ts" },
|
|
],
|
|
},
|
|
{
|
|
name: "types",
|
|
items: [{ name: "index.d.ts" }, { name: "api.d.ts" }],
|
|
},
|
|
{
|
|
name: "public",
|
|
items: [
|
|
{ name: "favicon.ico" },
|
|
{ name: "logo.svg" },
|
|
{ name: "images" },
|
|
],
|
|
},
|
|
{ name: "app.tsx" },
|
|
{ name: "layout.tsx" },
|
|
{ name: "globals.css" },
|
|
{ name: "package.json" },
|
|
{ name: "tsconfig.json" },
|
|
{ name: "README.md" },
|
|
{ name: ".gitignore" },
|
|
]
|
|
|
|
const renderItem = (fileItem: FileTreeItem) => {
|
|
if ("items" in fileItem) {
|
|
return (
|
|
<Collapsible key={fileItem.name}>
|
|
<CollapsibleTrigger
|
|
render={
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
className="group hover:bg-accent hover:text-accent-foreground w-full justify-start transition-none"
|
|
/>
|
|
}
|
|
>
|
|
<IconPlaceholder
|
|
lucide="ChevronRightIcon"
|
|
tabler="IconChevronRight"
|
|
hugeicons="ArrowRight01Icon"
|
|
phosphor="CaretRightIcon"
|
|
className="transition-transform group-data-[state=open]:rotate-90"
|
|
/>
|
|
<IconPlaceholder
|
|
lucide="FolderIcon"
|
|
tabler="IconFolder"
|
|
hugeicons="Folder01Icon"
|
|
phosphor="FolderIcon"
|
|
/>
|
|
{fileItem.name}
|
|
</CollapsibleTrigger>
|
|
<CollapsibleContent className="style-lyra:ml-4 mt-1 ml-5">
|
|
<div className="flex flex-col gap-1">
|
|
{fileItem.items.map((child) => renderItem(child))}
|
|
</div>
|
|
</CollapsibleContent>
|
|
</Collapsible>
|
|
)
|
|
}
|
|
return (
|
|
<Button
|
|
key={fileItem.name}
|
|
variant="link"
|
|
size="sm"
|
|
className="text-foreground w-full justify-start gap-2"
|
|
>
|
|
<IconPlaceholder
|
|
lucide="FileIcon"
|
|
tabler="IconFile"
|
|
hugeicons="File01Icon"
|
|
phosphor="FileIcon"
|
|
/>
|
|
<span>{fileItem.name}</span>
|
|
</Button>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<Example title="File Tree" className="items-center">
|
|
<Card className="mx-auto w-full max-w-[16rem] gap-2" size="sm">
|
|
<CardHeader>
|
|
<Tabs defaultValue="explorer">
|
|
<TabsList className="w-full">
|
|
<TabsTrigger value="explorer">Explorer</TabsTrigger>
|
|
<TabsTrigger value="settings">Outline</TabsTrigger>
|
|
</TabsList>
|
|
</Tabs>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="flex flex-col gap-1">
|
|
{fileTree.map((item) => renderItem(item))}
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</Example>
|
|
)
|
|
}
|
|
|
|
function CollapsibleSettings() {
|
|
const [isOpen, setIsOpen] = React.useState(false)
|
|
|
|
return (
|
|
<Example title="Settings" className="items-center">
|
|
<Card className="mx-auto w-full max-w-xs" size="sm">
|
|
<CardHeader>
|
|
<CardTitle>Radius</CardTitle>
|
|
<CardDescription>
|
|
Set the corner radius of the element.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<Collapsible
|
|
open={isOpen}
|
|
onOpenChange={setIsOpen}
|
|
className="flex items-start gap-2"
|
|
>
|
|
<FieldGroup className="grid w-full grid-cols-2 gap-2">
|
|
<Field>
|
|
<FieldLabel htmlFor="radius-x" className="sr-only">
|
|
Radius X
|
|
</FieldLabel>
|
|
<Input id="radius" placeholder="0" defaultValue={0} />
|
|
</Field>
|
|
<Field>
|
|
<FieldLabel htmlFor="radius-y" className="sr-only">
|
|
Radius Y
|
|
</FieldLabel>
|
|
<Input id="radius" placeholder="0" defaultValue={0} />
|
|
</Field>
|
|
<CollapsibleContent className="col-span-full grid grid-cols-subgrid gap-2">
|
|
<Field>
|
|
<FieldLabel htmlFor="radius-x" className="sr-only">
|
|
Radius X
|
|
</FieldLabel>
|
|
<Input id="radius" placeholder="0" defaultValue={0} />
|
|
</Field>
|
|
<Field>
|
|
<FieldLabel htmlFor="radius-y" className="sr-only">
|
|
Radius Y
|
|
</FieldLabel>
|
|
<Input id="radius" placeholder="0" defaultValue={0} />
|
|
</Field>
|
|
</CollapsibleContent>
|
|
</FieldGroup>
|
|
<CollapsibleTrigger
|
|
render={<Button variant="outline" size="icon" />}
|
|
>
|
|
{isOpen ? (
|
|
<IconPlaceholder
|
|
lucide="MinimizeIcon"
|
|
tabler="IconMinimize"
|
|
hugeicons="MinusSignIcon"
|
|
phosphor="MinusIcon"
|
|
/>
|
|
) : (
|
|
<IconPlaceholder
|
|
lucide="MaximizeIcon"
|
|
tabler="IconMaximize"
|
|
hugeicons="PlusSignIcon"
|
|
phosphor="PlusIcon"
|
|
/>
|
|
)}
|
|
</CollapsibleTrigger>
|
|
</Collapsible>
|
|
</CardContent>
|
|
</Card>
|
|
</Example>
|
|
)
|
|
}
|