mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-23 04:35:46 +00:00
Compare commits
49 Commits
shadcn@4.1
...
shadcn@4.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ebf2192d98 | ||
|
|
44c09a19b0 | ||
|
|
4101ec98af | ||
|
|
fc76a9ada2 | ||
|
|
d6b4bf8ddc | ||
|
|
d3de6aa760 | ||
|
|
23b2ac4dcf | ||
|
|
e56c476105 | ||
|
|
14bb486174 | ||
|
|
12b49c986f | ||
|
|
64c8cd99ee | ||
|
|
7d718ddaa9 | ||
|
|
5570b3e24a | ||
|
|
214b1b8479 | ||
|
|
8bd161d453 | ||
|
|
64b88b6cdb | ||
|
|
6a070bf8c5 | ||
|
|
124495f0df | ||
|
|
43f64065b7 | ||
|
|
8bec9c1234 | ||
|
|
ba6ac6ec63 | ||
|
|
b75796ed76 | ||
|
|
d82b4a7d98 | ||
|
|
5b79499d23 | ||
|
|
d78ff8b858 | ||
|
|
ef78384bfd | ||
|
|
d3ab7fb00b | ||
|
|
bebc4356af | ||
|
|
14bc966fee | ||
|
|
6a4b27b80d | ||
|
|
c5b4080649 | ||
|
|
408b25c82a | ||
|
|
228b0e3ecd | ||
|
|
f900bd57d0 | ||
|
|
6b190c6a18 | ||
|
|
c43bc4f5d6 | ||
|
|
9cd14a684f | ||
|
|
fc1675e54d | ||
|
|
a5abe1aa0f | ||
|
|
031998436f | ||
|
|
29cb65c26b | ||
|
|
179c0c0b23 | ||
|
|
03430e03bf | ||
|
|
169682d87a | ||
|
|
336eee688e | ||
|
|
32e4827559 | ||
|
|
7a81328b23 | ||
|
|
5b40b9de5a | ||
|
|
e327cef2c1 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -15,6 +15,7 @@ build
|
|||||||
|
|
||||||
# misc
|
# misc
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.eslintcache
|
||||||
*.pem
|
*.pem
|
||||||
|
|
||||||
# debug
|
# debug
|
||||||
@@ -43,3 +44,4 @@ tsconfig.tsbuildinfo
|
|||||||
.notes
|
.notes
|
||||||
.playwright-mcp
|
.playwright-mcp
|
||||||
shadcn-workspace
|
shadcn-workspace
|
||||||
|
.codex-artifacts
|
||||||
|
|||||||
@@ -1,8 +1,10 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { Button } from "@/examples/radix/ui/button"
|
import { IconMinus, IconPlus } from "@tabler/icons-react"
|
||||||
import { ButtonGroup } from "@/examples/radix/ui/button-group"
|
|
||||||
|
import { Button } from "@/styles/radix-nova/ui/button"
|
||||||
|
import { ButtonGroup } from "@/styles/radix-nova/ui/button-group"
|
||||||
import {
|
import {
|
||||||
Field,
|
Field,
|
||||||
FieldContent,
|
FieldContent,
|
||||||
@@ -13,11 +15,10 @@ import {
|
|||||||
FieldSeparator,
|
FieldSeparator,
|
||||||
FieldSet,
|
FieldSet,
|
||||||
FieldTitle,
|
FieldTitle,
|
||||||
} from "@/examples/radix/ui/field"
|
} from "@/styles/radix-nova/ui/field"
|
||||||
import { Input } from "@/examples/radix/ui/input"
|
import { Input } from "@/styles/radix-nova/ui/input"
|
||||||
import { RadioGroup, RadioGroupItem } from "@/examples/radix/ui/radio-group"
|
import { RadioGroup, RadioGroupItem } from "@/styles/radix-nova/ui/radio-group"
|
||||||
import { Switch } from "@/examples/radix/ui/switch"
|
import { Switch } from "@/styles/radix-nova/ui/switch"
|
||||||
import { IconMinus, IconPlus } from "@tabler/icons-react"
|
|
||||||
|
|
||||||
export function AppearanceSettings() {
|
export function AppearanceSettings() {
|
||||||
const [gpuCount, setGpuCount] = React.useState(8)
|
const [gpuCount, setGpuCount] = React.useState(8)
|
||||||
|
|||||||
@@ -1,8 +1,20 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { Button } from "@/examples/radix/ui/button"
|
import {
|
||||||
import { ButtonGroup } from "@/examples/radix/ui/button-group"
|
ArchiveIcon,
|
||||||
|
ArrowLeftIcon,
|
||||||
|
CalendarPlusIcon,
|
||||||
|
ClockIcon,
|
||||||
|
ListFilterIcon,
|
||||||
|
MailCheckIcon,
|
||||||
|
MoreHorizontalIcon,
|
||||||
|
TagIcon,
|
||||||
|
Trash2Icon,
|
||||||
|
} from "lucide-react"
|
||||||
|
|
||||||
|
import { Button } from "@/styles/radix-nova/ui/button"
|
||||||
|
import { ButtonGroup } from "@/styles/radix-nova/ui/button-group"
|
||||||
import {
|
import {
|
||||||
DropdownMenu,
|
DropdownMenu,
|
||||||
DropdownMenuContent,
|
DropdownMenuContent,
|
||||||
@@ -15,18 +27,7 @@ import {
|
|||||||
DropdownMenuSubContent,
|
DropdownMenuSubContent,
|
||||||
DropdownMenuSubTrigger,
|
DropdownMenuSubTrigger,
|
||||||
DropdownMenuTrigger,
|
DropdownMenuTrigger,
|
||||||
} from "@/examples/radix/ui/dropdown-menu"
|
} from "@/styles/radix-nova/ui/dropdown-menu"
|
||||||
import {
|
|
||||||
ArchiveIcon,
|
|
||||||
ArrowLeftIcon,
|
|
||||||
CalendarPlusIcon,
|
|
||||||
ClockIcon,
|
|
||||||
ListFilterIcon,
|
|
||||||
MailCheckIcon,
|
|
||||||
MoreHorizontalIcon,
|
|
||||||
TagIcon,
|
|
||||||
Trash2Icon,
|
|
||||||
} from "lucide-react"
|
|
||||||
|
|
||||||
export function ButtonGroupDemo() {
|
export function ButtonGroupDemo() {
|
||||||
const [label, setLabel] = React.useState("personal")
|
const [label, setLabel] = React.useState("personal")
|
||||||
|
|||||||
@@ -1,20 +1,21 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { Button } from "@/examples/radix/ui/button"
|
import { AudioLinesIcon, PlusIcon } from "lucide-react"
|
||||||
import { ButtonGroup } from "@/examples/radix/ui/button-group"
|
|
||||||
|
import { Button } from "@/styles/radix-nova/ui/button"
|
||||||
|
import { ButtonGroup } from "@/styles/radix-nova/ui/button-group"
|
||||||
import {
|
import {
|
||||||
InputGroup,
|
InputGroup,
|
||||||
InputGroupAddon,
|
InputGroupAddon,
|
||||||
InputGroupButton,
|
InputGroupButton,
|
||||||
InputGroupInput,
|
InputGroupInput,
|
||||||
} from "@/examples/radix/ui/input-group"
|
} from "@/styles/radix-nova/ui/input-group"
|
||||||
import {
|
import {
|
||||||
Tooltip,
|
Tooltip,
|
||||||
TooltipContent,
|
TooltipContent,
|
||||||
TooltipTrigger,
|
TooltipTrigger,
|
||||||
} from "@/examples/radix/ui/tooltip"
|
} from "@/styles/radix-nova/ui/tooltip"
|
||||||
import { AudioLinesIcon, PlusIcon } from "lucide-react"
|
|
||||||
|
|
||||||
export function ButtonGroupInputGroup() {
|
export function ButtonGroupInputGroup() {
|
||||||
const [voiceEnabled, setVoiceEnabled] = React.useState(false)
|
const [voiceEnabled, setVoiceEnabled] = React.useState(false)
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { Button } from "@/examples/radix/ui/button"
|
|
||||||
import { ButtonGroup } from "@/examples/radix/ui/button-group"
|
|
||||||
import { ArrowLeftIcon, ArrowRightIcon } from "lucide-react"
|
import { ArrowLeftIcon, ArrowRightIcon } from "lucide-react"
|
||||||
|
|
||||||
|
import { Button } from "@/styles/radix-nova/ui/button"
|
||||||
|
import { ButtonGroup } from "@/styles/radix-nova/ui/button-group"
|
||||||
|
|
||||||
export function ButtonGroupNested() {
|
export function ButtonGroupNested() {
|
||||||
return (
|
return (
|
||||||
<ButtonGroup>
|
<ButtonGroup>
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
import { Button } from "@/examples/radix/ui/button"
|
import { BotIcon, ChevronDownIcon } from "lucide-react"
|
||||||
import { ButtonGroup } from "@/examples/radix/ui/button-group"
|
|
||||||
|
import { Button } from "@/styles/radix-nova/ui/button"
|
||||||
|
import { ButtonGroup } from "@/styles/radix-nova/ui/button-group"
|
||||||
import {
|
import {
|
||||||
Popover,
|
Popover,
|
||||||
PopoverContent,
|
PopoverContent,
|
||||||
PopoverTrigger,
|
PopoverTrigger,
|
||||||
} from "@/examples/radix/ui/popover"
|
} from "@/styles/radix-nova/ui/popover"
|
||||||
import { Separator } from "@/examples/radix/ui/separator"
|
import { Separator } from "@/styles/radix-nova/ui/separator"
|
||||||
import { Textarea } from "@/examples/radix/ui/textarea"
|
import { Textarea } from "@/styles/radix-nova/ui/textarea"
|
||||||
import { BotIcon, ChevronDownIcon } from "lucide-react"
|
|
||||||
|
|
||||||
export function ButtonGroupPopover() {
|
export function ButtonGroupPopover() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
|
import { PlusIcon } from "lucide-react"
|
||||||
|
|
||||||
import {
|
import {
|
||||||
Avatar,
|
Avatar,
|
||||||
AvatarFallback,
|
AvatarFallback,
|
||||||
AvatarGroup,
|
AvatarGroup,
|
||||||
AvatarImage,
|
AvatarImage,
|
||||||
} from "@/examples/radix/ui/avatar"
|
} from "@/styles/radix-nova/ui/avatar"
|
||||||
import { Button } from "@/examples/radix/ui/button"
|
import { Button } from "@/styles/radix-nova/ui/button"
|
||||||
import {
|
import {
|
||||||
Empty,
|
Empty,
|
||||||
EmptyContent,
|
EmptyContent,
|
||||||
@@ -12,8 +14,7 @@ import {
|
|||||||
EmptyHeader,
|
EmptyHeader,
|
||||||
EmptyMedia,
|
EmptyMedia,
|
||||||
EmptyTitle,
|
EmptyTitle,
|
||||||
} from "@/examples/radix/ui/empty"
|
} from "@/styles/radix-nova/ui/empty"
|
||||||
import { PlusIcon } from "lucide-react"
|
|
||||||
|
|
||||||
export function EmptyAvatarGroup() {
|
export function EmptyAvatarGroup() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Checkbox } from "@/examples/radix/ui/checkbox"
|
import { Checkbox } from "@/styles/radix-nova/ui/checkbox"
|
||||||
import { Field, FieldLabel } from "@/examples/radix/ui/field"
|
import { Field, FieldLabel } from "@/styles/radix-nova/ui/field"
|
||||||
|
|
||||||
export function FieldCheckbox() {
|
export function FieldCheckbox() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@/examples/radix/ui/button"
|
import { Button } from "@/styles/radix-nova/ui/button"
|
||||||
import { Checkbox } from "@/examples/radix/ui/checkbox"
|
import { Checkbox } from "@/styles/radix-nova/ui/checkbox"
|
||||||
import {
|
import {
|
||||||
Field,
|
Field,
|
||||||
FieldDescription,
|
FieldDescription,
|
||||||
@@ -8,8 +8,8 @@ import {
|
|||||||
FieldLegend,
|
FieldLegend,
|
||||||
FieldSeparator,
|
FieldSeparator,
|
||||||
FieldSet,
|
FieldSet,
|
||||||
} from "@/examples/radix/ui/field"
|
} from "@/styles/radix-nova/ui/field"
|
||||||
import { Input } from "@/examples/radix/ui/input"
|
import { Input } from "@/styles/radix-nova/ui/input"
|
||||||
import {
|
import {
|
||||||
Select,
|
Select,
|
||||||
SelectContent,
|
SelectContent,
|
||||||
@@ -17,8 +17,8 @@ import {
|
|||||||
SelectItem,
|
SelectItem,
|
||||||
SelectTrigger,
|
SelectTrigger,
|
||||||
SelectValue,
|
SelectValue,
|
||||||
} from "@/examples/radix/ui/select"
|
} from "@/styles/radix-nova/ui/select"
|
||||||
import { Textarea } from "@/examples/radix/ui/textarea"
|
import { Textarea } from "@/styles/radix-nova/ui/textarea"
|
||||||
|
|
||||||
export function FieldDemo() {
|
export function FieldDemo() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Card, CardContent } from "@/examples/radix/ui/card"
|
import { Card, CardContent } from "@/styles/radix-nova/ui/card"
|
||||||
import { Checkbox } from "@/examples/radix/ui/checkbox"
|
import { Checkbox } from "@/styles/radix-nova/ui/checkbox"
|
||||||
import {
|
import {
|
||||||
Field,
|
Field,
|
||||||
FieldDescription,
|
FieldDescription,
|
||||||
@@ -8,7 +8,7 @@ import {
|
|||||||
FieldLegend,
|
FieldLegend,
|
||||||
FieldSet,
|
FieldSet,
|
||||||
FieldTitle,
|
FieldTitle,
|
||||||
} from "@/examples/radix/ui/field"
|
} from "@/styles/radix-nova/ui/field"
|
||||||
|
|
||||||
const options = [
|
const options = [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,8 +1,13 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { useState } from "react"
|
import { useState } from "react"
|
||||||
import { Field, FieldDescription, FieldTitle } from "@/examples/radix/ui/field"
|
|
||||||
import { Slider } from "@/examples/radix/ui/slider"
|
import {
|
||||||
|
Field,
|
||||||
|
FieldDescription,
|
||||||
|
FieldTitle,
|
||||||
|
} from "@/styles/radix-nova/ui/field"
|
||||||
|
import { Slider } from "@/styles/radix-nova/ui/slider"
|
||||||
|
|
||||||
export function FieldSlider() {
|
export function FieldSlider() {
|
||||||
const [value, setValue] = useState([200, 800])
|
const [value, setValue] = useState([200, 800])
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { FieldSeparator } from "@/examples/radix/ui/field"
|
import { FieldSeparator } from "@/styles/radix-nova/ui/field"
|
||||||
|
|
||||||
import { AppearanceSettings } from "./appearance-settings"
|
import { AppearanceSettings } from "./appearance-settings"
|
||||||
import { ButtonGroupDemo } from "./button-group-demo"
|
import { ButtonGroupDemo } from "./button-group-demo"
|
||||||
|
|||||||
@@ -1,19 +1,20 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
|
import { IconInfoCircle, IconStar } from "@tabler/icons-react"
|
||||||
|
|
||||||
import {
|
import {
|
||||||
InputGroup,
|
InputGroup,
|
||||||
InputGroupAddon,
|
InputGroupAddon,
|
||||||
InputGroupButton,
|
InputGroupButton,
|
||||||
InputGroupInput,
|
InputGroupInput,
|
||||||
} from "@/examples/radix/ui/input-group"
|
} from "@/styles/radix-nova/ui/input-group"
|
||||||
import { Label } from "@/examples/radix/ui/label"
|
import { Label } from "@/styles/radix-nova/ui/label"
|
||||||
import {
|
import {
|
||||||
Popover,
|
Popover,
|
||||||
PopoverContent,
|
PopoverContent,
|
||||||
PopoverTrigger,
|
PopoverTrigger,
|
||||||
} from "@/examples/radix/ui/popover"
|
} from "@/styles/radix-nova/ui/popover"
|
||||||
import { IconInfoCircle, IconStar } from "@tabler/icons-react"
|
|
||||||
|
|
||||||
export function InputGroupButtonExample() {
|
export function InputGroupButtonExample() {
|
||||||
const [isFavorite, setIsFavorite] = React.useState(false)
|
const [isFavorite, setIsFavorite] = React.useState(false)
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
|
import { IconCheck, IconInfoCircle, IconPlus } from "@tabler/icons-react"
|
||||||
|
import { ArrowUpIcon, Search } from "lucide-react"
|
||||||
|
|
||||||
import {
|
import {
|
||||||
DropdownMenu,
|
DropdownMenu,
|
||||||
DropdownMenuContent,
|
DropdownMenuContent,
|
||||||
DropdownMenuItem,
|
DropdownMenuItem,
|
||||||
DropdownMenuTrigger,
|
DropdownMenuTrigger,
|
||||||
} from "@/examples/radix/ui/dropdown-menu"
|
} from "@/styles/radix-nova/ui/dropdown-menu"
|
||||||
import {
|
import {
|
||||||
InputGroup,
|
InputGroup,
|
||||||
InputGroupAddon,
|
InputGroupAddon,
|
||||||
@@ -11,15 +14,13 @@ import {
|
|||||||
InputGroupInput,
|
InputGroupInput,
|
||||||
InputGroupText,
|
InputGroupText,
|
||||||
InputGroupTextarea,
|
InputGroupTextarea,
|
||||||
} from "@/examples/radix/ui/input-group"
|
} from "@/styles/radix-nova/ui/input-group"
|
||||||
import { Separator } from "@/examples/radix/ui/separator"
|
import { Separator } from "@/styles/radix-nova/ui/separator"
|
||||||
import {
|
import {
|
||||||
Tooltip,
|
Tooltip,
|
||||||
TooltipContent,
|
TooltipContent,
|
||||||
TooltipTrigger,
|
TooltipTrigger,
|
||||||
} from "@/examples/radix/ui/tooltip"
|
} from "@/styles/radix-nova/ui/tooltip"
|
||||||
import { IconCheck, IconInfoCircle, IconPlus } from "@tabler/icons-react"
|
|
||||||
import { ArrowUpIcon, Search } from "lucide-react"
|
|
||||||
|
|
||||||
export function InputGroupDemo() {
|
export function InputGroupDemo() {
|
||||||
return (
|
return (
|
||||||
@@ -88,7 +89,7 @@ export function InputGroupDemo() {
|
|||||||
<InputGroupInput placeholder="@shadcn" />
|
<InputGroupInput placeholder="@shadcn" />
|
||||||
<InputGroupAddon align="inline-end">
|
<InputGroupAddon align="inline-end">
|
||||||
<div className="flex size-4 items-center justify-center rounded-full bg-primary text-foreground">
|
<div className="flex size-4 items-center justify-center rounded-full bg-primary text-foreground">
|
||||||
<IconCheck className="size-3 text-white" />
|
<IconCheck className="size-3 text-background" />
|
||||||
</div>
|
</div>
|
||||||
</InputGroupAddon>
|
</InputGroupAddon>
|
||||||
</InputGroup>
|
</InputGroup>
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
import { Button } from "@/examples/radix/ui/button"
|
import { BadgeCheckIcon, ChevronRightIcon } from "lucide-react"
|
||||||
|
|
||||||
|
import { Button } from "@/styles/radix-nova/ui/button"
|
||||||
import {
|
import {
|
||||||
Item,
|
Item,
|
||||||
ItemActions,
|
ItemActions,
|
||||||
@@ -6,8 +8,7 @@ import {
|
|||||||
ItemDescription,
|
ItemDescription,
|
||||||
ItemMedia,
|
ItemMedia,
|
||||||
ItemTitle,
|
ItemTitle,
|
||||||
} from "@/examples/radix/ui/item"
|
} from "@/styles/radix-nova/ui/item"
|
||||||
import { BadgeCheckIcon, ChevronRightIcon } from "lucide-react"
|
|
||||||
|
|
||||||
export function ItemDemo() {
|
export function ItemDemo() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -1,8 +1,24 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { useMemo, useState } from "react"
|
import { useMemo, useState } from "react"
|
||||||
import { Avatar, AvatarFallback, AvatarImage } from "@/examples/radix/ui/avatar"
|
import {
|
||||||
import { Badge } from "@/examples/radix/ui/badge"
|
IconApps,
|
||||||
|
IconArrowUp,
|
||||||
|
IconAt,
|
||||||
|
IconBook,
|
||||||
|
IconCircleDashedPlus,
|
||||||
|
IconPaperclip,
|
||||||
|
IconPlus,
|
||||||
|
IconWorld,
|
||||||
|
IconX,
|
||||||
|
} from "@tabler/icons-react"
|
||||||
|
|
||||||
|
import {
|
||||||
|
Avatar,
|
||||||
|
AvatarFallback,
|
||||||
|
AvatarImage,
|
||||||
|
} from "@/styles/radix-nova/ui/avatar"
|
||||||
|
import { Badge } from "@/styles/radix-nova/ui/badge"
|
||||||
import {
|
import {
|
||||||
Command,
|
Command,
|
||||||
CommandEmpty,
|
CommandEmpty,
|
||||||
@@ -10,7 +26,7 @@ import {
|
|||||||
CommandInput,
|
CommandInput,
|
||||||
CommandItem,
|
CommandItem,
|
||||||
CommandList,
|
CommandList,
|
||||||
} from "@/examples/radix/ui/command"
|
} from "@/styles/radix-nova/ui/command"
|
||||||
import {
|
import {
|
||||||
DropdownMenu,
|
DropdownMenu,
|
||||||
DropdownMenuCheckboxItem,
|
DropdownMenuCheckboxItem,
|
||||||
@@ -23,36 +39,25 @@ import {
|
|||||||
DropdownMenuSubContent,
|
DropdownMenuSubContent,
|
||||||
DropdownMenuSubTrigger,
|
DropdownMenuSubTrigger,
|
||||||
DropdownMenuTrigger,
|
DropdownMenuTrigger,
|
||||||
} from "@/examples/radix/ui/dropdown-menu"
|
} from "@/styles/radix-nova/ui/dropdown-menu"
|
||||||
import { Field, FieldLabel } from "@/examples/radix/ui/field"
|
import { Field, FieldLabel } from "@/styles/radix-nova/ui/field"
|
||||||
import {
|
import {
|
||||||
InputGroup,
|
InputGroup,
|
||||||
InputGroupAddon,
|
InputGroupAddon,
|
||||||
InputGroupButton,
|
InputGroupButton,
|
||||||
InputGroupTextarea,
|
InputGroupTextarea,
|
||||||
} from "@/examples/radix/ui/input-group"
|
} from "@/styles/radix-nova/ui/input-group"
|
||||||
import {
|
import {
|
||||||
Popover,
|
Popover,
|
||||||
PopoverContent,
|
PopoverContent,
|
||||||
PopoverTrigger,
|
PopoverTrigger,
|
||||||
} from "@/examples/radix/ui/popover"
|
} from "@/styles/radix-nova/ui/popover"
|
||||||
import { Switch } from "@/examples/radix/ui/switch"
|
import { Switch } from "@/styles/radix-nova/ui/switch"
|
||||||
import {
|
import {
|
||||||
Tooltip,
|
Tooltip,
|
||||||
TooltipContent,
|
TooltipContent,
|
||||||
TooltipTrigger,
|
TooltipTrigger,
|
||||||
} from "@/examples/radix/ui/tooltip"
|
} from "@/styles/radix-nova/ui/tooltip"
|
||||||
import {
|
|
||||||
IconApps,
|
|
||||||
IconArrowUp,
|
|
||||||
IconAt,
|
|
||||||
IconBook,
|
|
||||||
IconCircleDashedPlus,
|
|
||||||
IconPaperclip,
|
|
||||||
IconPlus,
|
|
||||||
IconWorld,
|
|
||||||
IconX,
|
|
||||||
} from "@tabler/icons-react"
|
|
||||||
|
|
||||||
const SAMPLE_DATA = {
|
const SAMPLE_DATA = {
|
||||||
mentionable: [
|
mentionable: [
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Badge } from "@/examples/radix/ui/badge"
|
import { Badge } from "@/styles/radix-nova/ui/badge"
|
||||||
import { Spinner } from "@/examples/radix/ui/spinner"
|
import { Spinner } from "@/styles/radix-nova/ui/spinner"
|
||||||
|
|
||||||
export function SpinnerBadge() {
|
export function SpinnerBadge() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { Button } from "@/examples/radix/ui/button"
|
import { Button } from "@/styles/radix-nova/ui/button"
|
||||||
import {
|
import {
|
||||||
Empty,
|
Empty,
|
||||||
EmptyContent,
|
EmptyContent,
|
||||||
@@ -6,8 +6,8 @@ import {
|
|||||||
EmptyHeader,
|
EmptyHeader,
|
||||||
EmptyMedia,
|
EmptyMedia,
|
||||||
EmptyTitle,
|
EmptyTitle,
|
||||||
} from "@/examples/radix/ui/empty"
|
} from "@/styles/radix-nova/ui/empty"
|
||||||
import { Spinner } from "@/examples/radix/ui/spinner"
|
import { Spinner } from "@/styles/radix-nova/ui/spinner"
|
||||||
|
|
||||||
export function SpinnerEmpty() {
|
export function SpinnerEmpty() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ export default function BlocksLayout({
|
|||||||
<a href="#blocks">Browse Blocks</a>
|
<a href="#blocks">Browse Blocks</a>
|
||||||
</Button>
|
</Button>
|
||||||
<Button asChild variant="ghost" size="sm">
|
<Button asChild variant="ghost" size="sm">
|
||||||
<Link href="/docs/blocks">Add a block</Link>
|
<Link href="/docs/components">View Components</Link>
|
||||||
</Button>
|
</Button>
|
||||||
</PageActions>
|
</PageActions>
|
||||||
</PageHeader>
|
</PageHeader>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { MENU_ACCENTS, type MenuAccentValue } from "@/registry/config"
|
import { MENU_ACCENTS, type MenuAccentValue } from "@/registry/config"
|
||||||
import { LockButton } from "@/app/(create)/components/lock-button"
|
import { LockButton } from "@/app/(app)/create/components/lock-button"
|
||||||
import {
|
import {
|
||||||
Picker,
|
Picker,
|
||||||
PickerContent,
|
PickerContent,
|
||||||
@@ -9,8 +9,8 @@ import {
|
|||||||
PickerRadioGroup,
|
PickerRadioGroup,
|
||||||
PickerRadioItem,
|
PickerRadioItem,
|
||||||
PickerTrigger,
|
PickerTrigger,
|
||||||
} from "@/app/(create)/components/picker"
|
} from "@/app/(app)/create/components/picker"
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
export function MenuAccentPicker({
|
export function MenuAccentPicker({
|
||||||
isMobile,
|
isMobile,
|
||||||
@@ -1,6 +1,8 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import Script from "next/script"
|
import Script from "next/script"
|
||||||
|
import { type RegistryItem } from "shadcn/schema"
|
||||||
|
|
||||||
import {
|
import {
|
||||||
Command,
|
Command,
|
||||||
CommandDialog,
|
CommandDialog,
|
||||||
@@ -9,10 +11,8 @@ import {
|
|||||||
CommandInput,
|
CommandInput,
|
||||||
CommandItem,
|
CommandItem,
|
||||||
CommandList,
|
CommandList,
|
||||||
} from "@/examples/base/ui/command"
|
} from "@/styles/base-nova/ui/command"
|
||||||
import { type RegistryItem } from "shadcn/schema"
|
import { useActionMenu } from "@/app/(app)/create/hooks/use-action-menu"
|
||||||
|
|
||||||
import { useActionMenu } from "@/app/(create)/hooks/use-action-menu"
|
|
||||||
|
|
||||||
export const CMD_K_FORWARD_TYPE = "cmd-k-forward"
|
export const CMD_K_FORWARD_TYPE = "cmd-k-forward"
|
||||||
|
|
||||||
@@ -4,7 +4,7 @@ import * as React from "react"
|
|||||||
|
|
||||||
import { useMounted } from "@/hooks/use-mounted"
|
import { useMounted } from "@/hooks/use-mounted"
|
||||||
import { BASE_COLORS, type BaseColorName } from "@/registry/config"
|
import { BASE_COLORS, type BaseColorName } from "@/registry/config"
|
||||||
import { LockButton } from "@/app/(create)/components/lock-button"
|
import { LockButton } from "@/app/(app)/create/components/lock-button"
|
||||||
import {
|
import {
|
||||||
Picker,
|
Picker,
|
||||||
PickerContent,
|
PickerContent,
|
||||||
@@ -12,8 +12,8 @@ import {
|
|||||||
PickerRadioGroup,
|
PickerRadioGroup,
|
||||||
PickerRadioItem,
|
PickerRadioItem,
|
||||||
PickerTrigger,
|
PickerTrigger,
|
||||||
} from "@/app/(create)/components/picker"
|
} from "@/app/(app)/create/components/picker"
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
export function BaseColorPicker({
|
export function BaseColorPicker({
|
||||||
isMobile,
|
isMobile,
|
||||||
@@ -10,8 +10,8 @@ import {
|
|||||||
PickerRadioGroup,
|
PickerRadioGroup,
|
||||||
PickerRadioItem,
|
PickerRadioItem,
|
||||||
PickerTrigger,
|
PickerTrigger,
|
||||||
} from "@/app/(create)/components/picker"
|
} from "@/app/(app)/create/components/picker"
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
export function BasePicker({
|
export function BasePicker({
|
||||||
isMobile,
|
isMobile,
|
||||||
@@ -8,7 +8,7 @@ import {
|
|||||||
getThemesForBaseColor,
|
getThemesForBaseColor,
|
||||||
type ChartColorName,
|
type ChartColorName,
|
||||||
} from "@/registry/config"
|
} from "@/registry/config"
|
||||||
import { LockButton } from "@/app/(create)/components/lock-button"
|
import { LockButton } from "@/app/(app)/create/components/lock-button"
|
||||||
import {
|
import {
|
||||||
Picker,
|
Picker,
|
||||||
PickerContent,
|
PickerContent,
|
||||||
@@ -17,8 +17,8 @@ import {
|
|||||||
PickerRadioItem,
|
PickerRadioItem,
|
||||||
PickerSeparator,
|
PickerSeparator,
|
||||||
PickerTrigger,
|
PickerTrigger,
|
||||||
} from "@/app/(create)/components/picker"
|
} from "@/app/(app)/create/components/picker"
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
export function ChartColorPicker({
|
export function ChartColorPicker({
|
||||||
isMobile,
|
isMobile,
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { Button } from "@/examples/base/ui/button"
|
|
||||||
|
|
||||||
import { cn } from "@/lib/utils"
|
import { cn } from "@/lib/utils"
|
||||||
import { copyToClipboardWithMeta } from "@/components/copy-button"
|
import { copyToClipboardWithMeta } from "@/components/copy-button"
|
||||||
import { usePresetCode } from "@/app/(create)/hooks/use-design-system"
|
import { Button } from "@/styles/base-nova/ui/button"
|
||||||
|
import { usePresetCode } from "@/app/(app)/create/hooks/use-design-system"
|
||||||
|
|
||||||
export function CopyPreset({ className }: React.ComponentProps<typeof Button>) {
|
export function CopyPreset({ className }: React.ComponentProps<typeof Button>) {
|
||||||
const presetCode = usePresetCode()
|
const presetCode = usePresetCode()
|
||||||
@@ -1,35 +1,35 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
|
import { type RegistryItem } from "shadcn/schema"
|
||||||
|
|
||||||
|
import { useIsMobile } from "@/hooks/use-mobile"
|
||||||
|
import { getThemesForBaseColor, STYLES } from "@/registry/config"
|
||||||
import {
|
import {
|
||||||
Card,
|
Card,
|
||||||
CardContent,
|
CardContent,
|
||||||
CardFooter,
|
CardFooter,
|
||||||
CardHeader,
|
CardHeader,
|
||||||
} from "@/examples/base/ui/card"
|
} from "@/styles/base-nova/ui/card"
|
||||||
import { FieldGroup, FieldSeparator } from "@/examples/base/ui/field"
|
import { FieldGroup, FieldSeparator } from "@/styles/base-nova/ui/field"
|
||||||
import { type RegistryItem } from "shadcn/schema"
|
import { MenuAccentPicker } from "@/app/(app)/create/components/accent-picker"
|
||||||
|
import { ActionMenu } from "@/app/(app)/create/components/action-menu"
|
||||||
import { useIsMobile } from "@/hooks/use-mobile"
|
import { BaseColorPicker } from "@/app/(app)/create/components/base-color-picker"
|
||||||
import { getThemesForBaseColor, STYLES } from "@/registry/config"
|
import { BasePicker } from "@/app/(app)/create/components/base-picker"
|
||||||
import { MenuAccentPicker } from "@/app/(create)/components/accent-picker"
|
import { ChartColorPicker } from "@/app/(app)/create/components/chart-color-picker"
|
||||||
import { ActionMenu } from "@/app/(create)/components/action-menu"
|
import { CopyPreset } from "@/app/(app)/create/components/copy-preset"
|
||||||
import { BaseColorPicker } from "@/app/(create)/components/base-color-picker"
|
import { FontPicker } from "@/app/(app)/create/components/font-picker"
|
||||||
import { BasePicker } from "@/app/(create)/components/base-picker"
|
import { IconLibraryPicker } from "@/app/(app)/create/components/icon-library-picker"
|
||||||
import { ChartColorPicker } from "@/app/(create)/components/chart-color-picker"
|
import { MainMenu } from "@/app/(app)/create/components/main-menu"
|
||||||
import { CopyPreset } from "@/app/(create)/components/copy-preset"
|
import { MenuColorPicker } from "@/app/(app)/create/components/menu-picker"
|
||||||
import { FontPicker } from "@/app/(create)/components/font-picker"
|
import { RadiusPicker } from "@/app/(app)/create/components/radius-picker"
|
||||||
import { IconLibraryPicker } from "@/app/(create)/components/icon-library-picker"
|
import { RandomButton } from "@/app/(app)/create/components/random-button"
|
||||||
import { MainMenu } from "@/app/(create)/components/main-menu"
|
import { ResetDialog } from "@/app/(app)/create/components/reset-button"
|
||||||
import { MenuColorPicker } from "@/app/(create)/components/menu-picker"
|
import { StylePicker } from "@/app/(app)/create/components/style-picker"
|
||||||
import { RadiusPicker } from "@/app/(create)/components/radius-picker"
|
import { ThemePicker } from "@/app/(app)/create/components/theme-picker"
|
||||||
import { RandomButton } from "@/app/(create)/components/random-button"
|
import { V0Button } from "@/app/(app)/create/components/v0-button"
|
||||||
import { ResetDialog } from "@/app/(create)/components/reset-button"
|
import { FONT_HEADING_OPTIONS, FONTS } from "@/app/(app)/create/lib/fonts"
|
||||||
import { StylePicker } from "@/app/(create)/components/style-picker"
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
import { ThemePicker } from "@/app/(create)/components/theme-picker"
|
|
||||||
import { V0Button } from "@/app/(create)/components/v0-button"
|
|
||||||
import { FONT_HEADING_OPTIONS, FONTS } from "@/app/(create)/lib/fonts"
|
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
|
||||||
|
|
||||||
export function Customizer({
|
export function Customizer({
|
||||||
itemsByBase,
|
itemsByBase,
|
||||||
@@ -56,7 +56,6 @@ export function Customizer({
|
|||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent className="no-scrollbar min-h-0 flex-1 overflow-x-auto overflow-y-hidden md:overflow-y-auto">
|
<CardContent className="no-scrollbar min-h-0 flex-1 overflow-x-auto overflow-y-hidden md:overflow-y-auto">
|
||||||
<FieldGroup className="flex-row gap-2.5 py-px **:data-[slot=field-separator]:-mx-4 **:data-[slot=field-separator]:w-auto md:flex-col md:gap-3.25">
|
<FieldGroup className="flex-row gap-2.5 py-px **:data-[slot=field-separator]:-mx-4 **:data-[slot=field-separator]:w-auto md:flex-col md:gap-3.25">
|
||||||
{isMobile && <BasePicker isMobile={isMobile} anchorRef={anchorRef} />}
|
|
||||||
<StylePicker
|
<StylePicker
|
||||||
styles={STYLES}
|
styles={STYLES}
|
||||||
isMobile={isMobile}
|
isMobile={isMobile}
|
||||||
@@ -91,6 +90,7 @@ export function Customizer({
|
|||||||
<FieldSeparator className="hidden md:block" />
|
<FieldSeparator className="hidden md:block" />
|
||||||
<MenuColorPicker isMobile={isMobile} anchorRef={anchorRef} />
|
<MenuColorPicker isMobile={isMobile} anchorRef={anchorRef} />
|
||||||
<MenuAccentPicker isMobile={isMobile} anchorRef={anchorRef} />
|
<MenuAccentPicker isMobile={isMobile} anchorRef={anchorRef} />
|
||||||
|
{isMobile && <BasePicker isMobile={isMobile} anchorRef={anchorRef} />}
|
||||||
</FieldGroup>
|
</FieldGroup>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
<CardFooter className="flex min-w-0 gap-2 md:flex-col md:**:[button,a]:w-full">
|
<CardFooter className="flex min-w-0 gap-2 md:flex-col md:**:[button,a]:w-full">
|
||||||
@@ -7,12 +7,12 @@ import {
|
|||||||
DEFAULT_CONFIG,
|
DEFAULT_CONFIG,
|
||||||
type DesignSystemConfig,
|
type DesignSystemConfig,
|
||||||
} from "@/registry/config"
|
} from "@/registry/config"
|
||||||
import { useIframeMessageListener } from "@/app/(create)/hooks/use-iframe-sync"
|
import { useIframeMessageListener } from "@/app/(app)/create/hooks/use-iframe-sync"
|
||||||
import { FONTS } from "@/app/(create)/lib/fonts"
|
import { FONTS } from "@/app/(app)/create/lib/fonts"
|
||||||
import {
|
import {
|
||||||
useDesignSystemSearchParams,
|
useDesignSystemSearchParams,
|
||||||
type DesignSystemSearchParams,
|
type DesignSystemSearchParams,
|
||||||
} from "@/app/(create)/lib/search-params"
|
} from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
const THEME_STYLE_ELEMENT_ID = "design-system-theme-vars"
|
const THEME_STYLE_ELEMENT_ID = "design-system-theme-vars"
|
||||||
const MANAGED_BODY_CLASS_PREFIXES = ["style-", "base-color-"] as const
|
const MANAGED_BODY_CLASS_PREFIXES = ["style-", "base-color-"] as const
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
|
|
||||||
import { LockButton } from "@/app/(create)/components/lock-button"
|
import { LockButton } from "@/app/(app)/create/components/lock-button"
|
||||||
import {
|
import {
|
||||||
Picker,
|
Picker,
|
||||||
PickerContent,
|
PickerContent,
|
||||||
@@ -12,12 +12,12 @@ import {
|
|||||||
PickerRadioItem,
|
PickerRadioItem,
|
||||||
PickerSeparator,
|
PickerSeparator,
|
||||||
PickerTrigger,
|
PickerTrigger,
|
||||||
} from "@/app/(create)/components/picker"
|
} from "@/app/(app)/create/components/picker"
|
||||||
import { FONTS } from "@/app/(create)/lib/fonts"
|
import { FONTS } from "@/app/(app)/create/lib/fonts"
|
||||||
import {
|
import {
|
||||||
useDesignSystemSearchParams,
|
useDesignSystemSearchParams,
|
||||||
type DesignSystemSearchParams,
|
type DesignSystemSearchParams,
|
||||||
} from "@/app/(create)/lib/search-params"
|
} from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
type FontPickerOption = {
|
type FontPickerOption = {
|
||||||
name: string
|
name: string
|
||||||
@@ -97,7 +97,7 @@ export function FontPicker({
|
|||||||
<PickerTrigger>
|
<PickerTrigger>
|
||||||
<div className="flex flex-col justify-start text-left">
|
<div className="flex flex-col justify-start text-left">
|
||||||
<div className="text-xs text-muted-foreground">{label}</div>
|
<div className="text-xs text-muted-foreground">{label}</div>
|
||||||
<div className="text-sm font-medium text-foreground">
|
<div className="line-clamp-1 max-w-[80%] truncate text-sm font-medium text-foreground">
|
||||||
{displayFontName}
|
{displayFontName}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import Script from "next/script"
|
import Script from "next/script"
|
||||||
import { Button } from "@/examples/base/ui/button"
|
|
||||||
import { Redo02Icon, Undo02Icon } from "@hugeicons/core-free-icons"
|
import { Redo02Icon, Undo02Icon } from "@hugeicons/core-free-icons"
|
||||||
import { HugeiconsIcon } from "@hugeicons/react"
|
import { HugeiconsIcon } from "@hugeicons/react"
|
||||||
|
|
||||||
import { useHistory } from "@/app/(create)/hooks/use-history"
|
import { Button } from "@/styles/base-nova/ui/button"
|
||||||
|
import { useHistory } from "@/app/(app)/create/hooks/use-history"
|
||||||
|
|
||||||
export const UNDO_FORWARD_TYPE = "undo-forward"
|
export const UNDO_FORWARD_TYPE = "undo-forward"
|
||||||
export const REDO_FORWARD_TYPE = "redo-forward"
|
export const REDO_FORWARD_TYPE = "redo-forward"
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
|
|
||||||
import { iconLibraries, type IconLibraryName } from "@/registry/config"
|
import { iconLibraries, type IconLibraryName } from "@/registry/config"
|
||||||
import { LockButton } from "@/app/(create)/components/lock-button"
|
import { LockButton } from "@/app/(app)/create/components/lock-button"
|
||||||
import {
|
import {
|
||||||
Picker,
|
Picker,
|
||||||
PickerContent,
|
PickerContent,
|
||||||
@@ -11,8 +11,8 @@ import {
|
|||||||
PickerRadioGroup,
|
PickerRadioGroup,
|
||||||
PickerRadioItem,
|
PickerRadioItem,
|
||||||
PickerTrigger,
|
PickerTrigger,
|
||||||
} from "@/app/(create)/components/picker"
|
} from "@/app/(app)/create/components/picker"
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
const logos = {
|
const logos = {
|
||||||
lucide: (
|
lucide: (
|
||||||
75
apps/v4/app/(app)/create/components/icon-placeholder.tsx
Normal file
75
apps/v4/app/(app)/create/components/icon-placeholder.tsx
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import { lazy, Suspense } from "react"
|
||||||
|
import { SquareIcon } from "lucide-react"
|
||||||
|
import type { IconLibraryName } from "shadcn/icons"
|
||||||
|
|
||||||
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
|
const IconLucide = lazy(() =>
|
||||||
|
import("@/registry/icons/icon-lucide").then((mod) => ({
|
||||||
|
default: mod.IconLucide,
|
||||||
|
}))
|
||||||
|
)
|
||||||
|
|
||||||
|
const IconTabler = lazy(() =>
|
||||||
|
import("@/registry/icons/icon-tabler").then((mod) => ({
|
||||||
|
default: mod.IconTabler,
|
||||||
|
}))
|
||||||
|
)
|
||||||
|
|
||||||
|
const IconHugeicons = lazy(() =>
|
||||||
|
import("@/registry/icons/icon-hugeicons").then((mod) => ({
|
||||||
|
default: mod.IconHugeicons,
|
||||||
|
}))
|
||||||
|
)
|
||||||
|
|
||||||
|
const IconPhosphor = lazy(() =>
|
||||||
|
import("@/registry/icons/icon-phosphor").then((mod) => ({
|
||||||
|
default: mod.IconPhosphor,
|
||||||
|
}))
|
||||||
|
)
|
||||||
|
|
||||||
|
const IconRemixicon = lazy(() =>
|
||||||
|
import("@/registry/icons/icon-remixicon").then((mod) => ({
|
||||||
|
default: mod.IconRemixicon,
|
||||||
|
}))
|
||||||
|
)
|
||||||
|
|
||||||
|
// Preload all icon renderer modules so switching libraries is instant.
|
||||||
|
// These warm the browser module cache; React.lazy resolves immediately
|
||||||
|
// for modules that are already loaded.
|
||||||
|
void import("@/registry/icons/icon-lucide")
|
||||||
|
void import("@/registry/icons/icon-tabler")
|
||||||
|
void import("@/registry/icons/icon-hugeicons")
|
||||||
|
void import("@/registry/icons/icon-phosphor")
|
||||||
|
void import("@/registry/icons/icon-remixicon")
|
||||||
|
|
||||||
|
export function IconPlaceholder({
|
||||||
|
...props
|
||||||
|
}: {
|
||||||
|
[K in IconLibraryName]: string
|
||||||
|
} & React.ComponentProps<"svg">) {
|
||||||
|
const [{ iconLibrary }] = useDesignSystemSearchParams()
|
||||||
|
const iconName = props[iconLibrary]
|
||||||
|
|
||||||
|
if (!iconName) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Suspense fallback={<SquareIcon {...props} />}>
|
||||||
|
{iconLibrary === "lucide" && <IconLucide name={iconName} {...props} />}
|
||||||
|
{iconLibrary === "tabler" && <IconTabler name={iconName} {...props} />}
|
||||||
|
{iconLibrary === "hugeicons" && (
|
||||||
|
<IconHugeicons name={iconName} {...props} />
|
||||||
|
)}
|
||||||
|
{iconLibrary === "phosphor" && (
|
||||||
|
<IconPhosphor name={iconName} {...props} />
|
||||||
|
)}
|
||||||
|
{iconLibrary === "remixicon" && (
|
||||||
|
<IconRemixicon name={iconName} {...props} />
|
||||||
|
)}
|
||||||
|
</Suspense>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -2,11 +2,16 @@
|
|||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import Link from "next/link"
|
import Link from "next/link"
|
||||||
|
import { ChevronRightIcon } from "lucide-react"
|
||||||
|
import { type RegistryItem } from "shadcn/schema"
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
import { type Base } from "@/registry/bases"
|
||||||
import {
|
import {
|
||||||
Collapsible,
|
Collapsible,
|
||||||
CollapsibleContent,
|
CollapsibleContent,
|
||||||
CollapsibleTrigger,
|
CollapsibleTrigger,
|
||||||
} from "@/examples/base/ui/collapsible"
|
} from "@/styles/base-nova/ui/collapsible"
|
||||||
import {
|
import {
|
||||||
Sidebar,
|
Sidebar,
|
||||||
SidebarContent,
|
SidebarContent,
|
||||||
@@ -15,14 +20,9 @@ import {
|
|||||||
SidebarMenu,
|
SidebarMenu,
|
||||||
SidebarMenuButton,
|
SidebarMenuButton,
|
||||||
SidebarMenuItem,
|
SidebarMenuItem,
|
||||||
} from "@/examples/base/ui/sidebar"
|
} from "@/styles/base-nova/ui/sidebar"
|
||||||
import { ChevronRightIcon } from "lucide-react"
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
import { type RegistryItem } from "shadcn/schema"
|
import { groupItemsByType } from "@/app/(app)/create/lib/utils"
|
||||||
|
|
||||||
import { cn } from "@/lib/utils"
|
|
||||||
import { type Base } from "@/registry/bases"
|
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
|
||||||
import { groupItemsByType } from "@/app/(create)/lib/utils"
|
|
||||||
|
|
||||||
const cachedGroupedItems = React.cache(
|
const cachedGroupedItems = React.cache(
|
||||||
(items: Pick<RegistryItem, "name" | "title" | "type">[]) => {
|
(items: Pick<RegistryItem, "name" | "title" | "type">[]) => {
|
||||||
@@ -7,7 +7,10 @@ import {
|
|||||||
import { HugeiconsIcon } from "@hugeicons/react"
|
import { HugeiconsIcon } from "@hugeicons/react"
|
||||||
|
|
||||||
import { cn } from "@/lib/utils"
|
import { cn } from "@/lib/utils"
|
||||||
import { useLocks, type LockableParam } from "@/app/(create)/hooks/use-locks"
|
import {
|
||||||
|
useLocks,
|
||||||
|
type LockableParam,
|
||||||
|
} from "@/app/(app)/create/hooks/use-locks"
|
||||||
|
|
||||||
export function LockButton({
|
export function LockButton({
|
||||||
param,
|
param,
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { type Button } from "@/examples/base/ui/button"
|
|
||||||
import { Menu09Icon } from "@hugeicons/core-free-icons"
|
import { Menu09Icon } from "@hugeicons/core-free-icons"
|
||||||
import { HugeiconsIcon } from "@hugeicons/react"
|
import { HugeiconsIcon } from "@hugeicons/react"
|
||||||
|
|
||||||
import { cn } from "@/lib/utils"
|
import { cn } from "@/lib/utils"
|
||||||
|
import { type Button } from "@/styles/base-nova/ui/button"
|
||||||
import {
|
import {
|
||||||
Picker,
|
Picker,
|
||||||
PickerContent,
|
PickerContent,
|
||||||
@@ -14,12 +14,12 @@ import {
|
|||||||
PickerSeparator,
|
PickerSeparator,
|
||||||
PickerShortcut,
|
PickerShortcut,
|
||||||
PickerTrigger,
|
PickerTrigger,
|
||||||
} from "@/app/(create)/components/picker"
|
} from "@/app/(app)/create/components/picker"
|
||||||
import { useActionMenuTrigger } from "@/app/(create)/hooks/use-action-menu"
|
import { useActionMenuTrigger } from "@/app/(app)/create/hooks/use-action-menu"
|
||||||
import { useHistory } from "@/app/(create)/hooks/use-history"
|
import { useHistory } from "@/app/(app)/create/hooks/use-history"
|
||||||
import { useRandom } from "@/app/(create)/hooks/use-random"
|
import { useRandom } from "@/app/(app)/create/hooks/use-random"
|
||||||
import { useReset } from "@/app/(create)/hooks/use-reset"
|
import { useReset } from "@/app/(app)/create/hooks/use-reset"
|
||||||
import { useThemeToggle } from "@/app/(create)/hooks/use-theme-toggle"
|
import { useThemeToggle } from "@/app/(app)/create/hooks/use-theme-toggle"
|
||||||
|
|
||||||
const APPLE_PLATFORM_REGEX = /Mac|iPhone|iPad|iPod/
|
const APPLE_PLATFORM_REGEX = /Mac|iPhone|iPad|iPod/
|
||||||
|
|
||||||
@@ -73,7 +73,7 @@ export function MainMenu({ className }: React.ComponentProps<typeof Button>) {
|
|||||||
</PickerItem>
|
</PickerItem>
|
||||||
<PickerSeparator />
|
<PickerSeparator />
|
||||||
<PickerItem onClick={() => setShowResetDialog(true)}>
|
<PickerItem onClick={() => setShowResetDialog(true)}>
|
||||||
Reset
|
Reset <PickerShortcut>⇧R</PickerShortcut>
|
||||||
</PickerItem>
|
</PickerItem>
|
||||||
</PickerGroup>
|
</PickerGroup>
|
||||||
</PickerContent>
|
</PickerContent>
|
||||||
@@ -7,7 +7,7 @@ import { useTheme } from "next-themes"
|
|||||||
|
|
||||||
import { useMounted } from "@/hooks/use-mounted"
|
import { useMounted } from "@/hooks/use-mounted"
|
||||||
import { type MenuColorValue } from "@/registry/config"
|
import { type MenuColorValue } from "@/registry/config"
|
||||||
import { LockButton } from "@/app/(create)/components/lock-button"
|
import { LockButton } from "@/app/(app)/create/components/lock-button"
|
||||||
import {
|
import {
|
||||||
Picker,
|
Picker,
|
||||||
PickerContent,
|
PickerContent,
|
||||||
@@ -17,11 +17,11 @@ import {
|
|||||||
PickerRadioItem,
|
PickerRadioItem,
|
||||||
PickerSeparator,
|
PickerSeparator,
|
||||||
PickerTrigger,
|
PickerTrigger,
|
||||||
} from "@/app/(create)/components/picker"
|
} from "@/app/(app)/create/components/picker"
|
||||||
import {
|
import {
|
||||||
isTranslucentMenuColor,
|
isTranslucentMenuColor,
|
||||||
useDesignSystemSearchParams,
|
useDesignSystemSearchParams,
|
||||||
} from "@/app/(create)/lib/search-params"
|
} from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
type ColorChoice = "default" | "inverted"
|
type ColorChoice = "default" | "inverted"
|
||||||
type SurfaceChoice = "solid" | "translucent"
|
type SurfaceChoice = "solid" | "translucent"
|
||||||
@@ -104,7 +104,7 @@ export function MenuColorPicker({
|
|||||||
<PickerTrigger>
|
<PickerTrigger>
|
||||||
<div className="flex flex-col justify-start text-left">
|
<div className="flex flex-col justify-start text-left">
|
||||||
<div className="text-xs text-muted-foreground">Menu</div>
|
<div className="text-xs text-muted-foreground">Menu</div>
|
||||||
<div className="line-clamp-1 text-sm font-medium text-foreground">
|
<div className="line-clamp-1 max-w-[80%] truncate text-sm font-medium text-foreground">
|
||||||
{currentMenu?.label}
|
{currentMenu?.label}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -2,10 +2,10 @@
|
|||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import Script from "next/script"
|
import Script from "next/script"
|
||||||
import { Button } from "@/examples/base/ui/button"
|
|
||||||
|
|
||||||
import { cn } from "@/lib/utils"
|
import { cn } from "@/lib/utils"
|
||||||
import { useThemeToggle } from "@/app/(create)/hooks/use-theme-toggle"
|
import { Button } from "@/styles/base-nova/ui/button"
|
||||||
|
import { useThemeToggle } from "@/app/(app)/create/hooks/use-theme-toggle"
|
||||||
|
|
||||||
export const DARK_MODE_FORWARD_TYPE = "dark-mode-forward"
|
export const DARK_MODE_FORWARD_TYPE = "dark-mode-forward"
|
||||||
|
|
||||||
@@ -4,7 +4,7 @@ import * as React from "react"
|
|||||||
import { Menu as MenuPrimitive } from "@base-ui/react/menu"
|
import { Menu as MenuPrimitive } from "@base-ui/react/menu"
|
||||||
|
|
||||||
import { cn } from "@/registry/bases/base/lib/utils"
|
import { cn } from "@/registry/bases/base/lib/utils"
|
||||||
import { IconPlaceholder } from "@/app/(create)/components/icon-placeholder"
|
import { IconPlaceholder } from "@/app/(app)/create/components/icon-placeholder"
|
||||||
|
|
||||||
function Picker({ ...props }: MenuPrimitive.Root.Props) {
|
function Picker({ ...props }: MenuPrimitive.Root.Props) {
|
||||||
return <MenuPrimitive.Root data-slot="dropdown-menu" {...props} />
|
return <MenuPrimitive.Root data-slot="dropdown-menu" {...props} />
|
||||||
@@ -19,7 +19,7 @@ function PickerTrigger({ className, ...props }: MenuPrimitive.Trigger.Props) {
|
|||||||
<MenuPrimitive.Trigger
|
<MenuPrimitive.Trigger
|
||||||
data-slot="dropdown-menu-trigger"
|
data-slot="dropdown-menu-trigger"
|
||||||
className={cn(
|
className={cn(
|
||||||
"relative w-40 shrink-0 touch-manipulation rounded-xl p-3 ring-1 ring-foreground/10 select-none hover:bg-muted focus-visible:ring-foreground/50 focus-visible:outline-none disabled:opacity-50 data-popup-open:bg-muted md:w-full md:rounded-lg md:px-2.5 md:py-2",
|
"relative w-36 shrink-0 touch-manipulation rounded-xl p-3 ring-1 ring-foreground/10 select-none hover:bg-muted focus-visible:ring-foreground/50 focus-visible:outline-none disabled:opacity-50 data-popup-open:bg-muted md:w-full md:rounded-lg md:px-2.5 md:py-2",
|
||||||
className
|
className
|
||||||
)}
|
)}
|
||||||
{...props}
|
{...props}
|
||||||
@@ -4,7 +4,7 @@ import * as React from "react"
|
|||||||
import { useRouter } from "next/navigation"
|
import { useRouter } from "next/navigation"
|
||||||
import { generateRandomPreset, isPresetCode } from "shadcn/preset"
|
import { generateRandomPreset, isPresetCode } from "shadcn/preset"
|
||||||
|
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
export function PresetHandler() {
|
export function PresetHandler() {
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
@@ -10,8 +10,8 @@ import {
|
|||||||
PickerRadioGroup,
|
PickerRadioGroup,
|
||||||
PickerRadioItem,
|
PickerRadioItem,
|
||||||
PickerTrigger,
|
PickerTrigger,
|
||||||
} from "@/app/(create)/components/picker"
|
} from "@/app/(app)/create/components/picker"
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
export function PresetPicker({
|
export function PresetPicker({
|
||||||
presets,
|
presets,
|
||||||
@@ -112,13 +112,6 @@ export function PresetPicker({
|
|||||||
closeOnClick={isMobile}
|
closeOnClick={isMobile}
|
||||||
>
|
>
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
{style?.icon && (
|
|
||||||
<div className="flex size-4 shrink-0 items-center justify-center">
|
|
||||||
{React.cloneElement(style.icon, {
|
|
||||||
className: "size-4",
|
|
||||||
})}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
{preset.description}
|
{preset.description}
|
||||||
</div>
|
</div>
|
||||||
</PickerRadioItem>
|
</PickerRadioItem>
|
||||||
37
apps/v4/app/(app)/create/components/preview-switcher.tsx
Normal file
37
apps/v4/app/(app)/create/components/preview-switcher.tsx
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import { Button } from "@/registry/new-york-v4/ui/button"
|
||||||
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
|
const PREVIEW_ITEMS = [
|
||||||
|
{ label: "01", value: "preview-02" },
|
||||||
|
{ label: "02", value: "preview" },
|
||||||
|
]
|
||||||
|
|
||||||
|
export function PreviewSwitcher() {
|
||||||
|
const [params, setParams] = useDesignSystemSearchParams()
|
||||||
|
|
||||||
|
const isPreview =
|
||||||
|
params.item === "preview" || params.item.startsWith("preview-0")
|
||||||
|
|
||||||
|
if (!isPreview) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="dark absolute right-3 bottom-3 z-20 flex items-center gap-1 rounded-xl bg-card/90 p-1 shadow-xl backdrop-blur-xl">
|
||||||
|
{PREVIEW_ITEMS.map((item) => (
|
||||||
|
<Button
|
||||||
|
key={item.value}
|
||||||
|
variant="ghost"
|
||||||
|
size="sm"
|
||||||
|
data-active={params.item === item.value}
|
||||||
|
className="h-7 min-w-8 cursor-pointer rounded-lg px-2.5 text-xs font-medium text-muted-foreground transition-colors hover:text-foreground data-[active=true]:bg-accent data-[active=true]:text-accent-foreground"
|
||||||
|
onClick={() => setParams({ item: item.value })}
|
||||||
|
>
|
||||||
|
{item.label}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -2,18 +2,20 @@
|
|||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
|
|
||||||
import { CMD_K_FORWARD_TYPE } from "@/app/(create)/components/action-menu"
|
import { CMD_K_FORWARD_TYPE } from "@/app/(app)/create/components/action-menu"
|
||||||
import {
|
import {
|
||||||
REDO_FORWARD_TYPE,
|
REDO_FORWARD_TYPE,
|
||||||
UNDO_FORWARD_TYPE,
|
UNDO_FORWARD_TYPE,
|
||||||
} from "@/app/(create)/components/history-buttons"
|
} from "@/app/(app)/create/components/history-buttons"
|
||||||
import { DARK_MODE_FORWARD_TYPE } from "@/app/(create)/components/mode-switcher"
|
import { DARK_MODE_FORWARD_TYPE } from "@/app/(app)/create/components/mode-switcher"
|
||||||
import { RANDOMIZE_FORWARD_TYPE } from "@/app/(create)/components/random-button"
|
import { PreviewSwitcher } from "@/app/(app)/create/components/preview-switcher"
|
||||||
import { sendToIframe } from "@/app/(create)/hooks/use-iframe-sync"
|
import { RANDOMIZE_FORWARD_TYPE } from "@/app/(app)/create/components/random-button"
|
||||||
|
import { sendToIframe } from "@/app/(app)/create/hooks/use-iframe-sync"
|
||||||
|
import { RESET_FORWARD_TYPE } from "@/app/(app)/create/hooks/use-reset"
|
||||||
import {
|
import {
|
||||||
serializeDesignSystemSearchParams,
|
serializeDesignSystemSearchParams,
|
||||||
useDesignSystemSearchParams,
|
useDesignSystemSearchParams,
|
||||||
} from "@/app/(create)/lib/search-params"
|
} from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
// Hoisted — avoids recreating on every message event. (js-hoist-regexp)
|
// Hoisted — avoids recreating on every message event. (js-hoist-regexp)
|
||||||
const MAC_REGEX = /Mac|iPhone|iPad|iPod/
|
const MAC_REGEX = /Mac|iPhone|iPad|iPod/
|
||||||
@@ -70,6 +72,15 @@ function handleMessage(event: MessageEvent) {
|
|||||||
cancelable: true,
|
cancelable: true,
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
|
} else if (type === RESET_FORWARD_TYPE) {
|
||||||
|
document.dispatchEvent(
|
||||||
|
new KeyboardEvent("keydown", {
|
||||||
|
key: "R",
|
||||||
|
shiftKey: true,
|
||||||
|
bubbles: true,
|
||||||
|
cancelable: true,
|
||||||
|
})
|
||||||
|
)
|
||||||
} else if (type === DARK_MODE_FORWARD_TYPE) {
|
} else if (type === DARK_MODE_FORWARD_TYPE) {
|
||||||
document.dispatchEvent(
|
document.dispatchEvent(
|
||||||
new KeyboardEvent("keydown", {
|
new KeyboardEvent("keydown", {
|
||||||
@@ -137,6 +148,7 @@ export function Preview() {
|
|||||||
title="Preview"
|
title="Preview"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
<PreviewSwitcher />
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,14 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { Button } from "@/examples/base/ui/button"
|
import { Copy01Icon, Globe02Icon, Tick02Icon } from "@hugeicons/core-free-icons"
|
||||||
|
import { HugeiconsIcon } from "@hugeicons/react"
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
import { useConfig } from "@/hooks/use-config"
|
||||||
|
import { copyToClipboardWithMeta } from "@/components/copy-button"
|
||||||
|
import { BASES, type BaseName } from "@/registry/config"
|
||||||
|
import { Button } from "@/styles/base-nova/ui/button"
|
||||||
import {
|
import {
|
||||||
Dialog,
|
Dialog,
|
||||||
DialogContent,
|
DialogContent,
|
||||||
@@ -10,7 +17,7 @@ import {
|
|||||||
DialogHeader,
|
DialogHeader,
|
||||||
DialogTitle,
|
DialogTitle,
|
||||||
DialogTrigger,
|
DialogTrigger,
|
||||||
} from "@/examples/base/ui/dialog"
|
} from "@/styles/base-nova/ui/dialog"
|
||||||
import {
|
import {
|
||||||
Field,
|
Field,
|
||||||
FieldContent,
|
FieldContent,
|
||||||
@@ -20,33 +27,26 @@ import {
|
|||||||
FieldSeparator,
|
FieldSeparator,
|
||||||
FieldSet,
|
FieldSet,
|
||||||
FieldTitle,
|
FieldTitle,
|
||||||
} from "@/examples/base/ui/field"
|
} from "@/styles/base-nova/ui/field"
|
||||||
import { RadioGroup, RadioGroupItem } from "@/examples/base/ui/radio-group"
|
import { RadioGroup, RadioGroupItem } from "@/styles/base-nova/ui/radio-group"
|
||||||
import { Switch } from "@/examples/base/ui/switch"
|
import { Switch } from "@/styles/base-nova/ui/switch"
|
||||||
import {
|
import {
|
||||||
Tabs,
|
Tabs,
|
||||||
TabsContent,
|
TabsContent,
|
||||||
TabsList,
|
TabsList,
|
||||||
TabsTrigger,
|
TabsTrigger,
|
||||||
} from "@/examples/base/ui/tabs"
|
} from "@/styles/base-nova/ui/tabs"
|
||||||
import { Copy01Icon, Globe02Icon, Tick02Icon } from "@hugeicons/core-free-icons"
|
import { usePresetCode } from "@/app/(app)/create/hooks/use-design-system"
|
||||||
import { HugeiconsIcon } from "@hugeicons/react"
|
|
||||||
|
|
||||||
import { cn } from "@/lib/utils"
|
|
||||||
import { useConfig } from "@/hooks/use-config"
|
|
||||||
import { copyToClipboardWithMeta } from "@/components/copy-button"
|
|
||||||
import { BASES, type BaseName } from "@/registry/config"
|
|
||||||
import { usePresetCode } from "@/app/(create)/hooks/use-design-system"
|
|
||||||
import {
|
import {
|
||||||
useDesignSystemSearchParams,
|
useDesignSystemSearchParams,
|
||||||
type DesignSystemSearchParams,
|
type DesignSystemSearchParams,
|
||||||
} from "@/app/(create)/lib/search-params"
|
} from "@/app/(app)/create/lib/search-params"
|
||||||
import {
|
import {
|
||||||
getFramework,
|
getFramework,
|
||||||
getTemplateValue,
|
getTemplateValue,
|
||||||
NO_MONOREPO_FRAMEWORKS,
|
NO_MONOREPO_FRAMEWORKS,
|
||||||
TEMPLATES,
|
TEMPLATES,
|
||||||
} from "@/app/(create)/lib/templates"
|
} from "@/app/(app)/create/lib/templates"
|
||||||
|
|
||||||
const TURBOREPO_LOGO =
|
const TURBOREPO_LOGO =
|
||||||
'<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Turborepo</title><path d="M11.9906 4.1957c-4.2998 0-7.7981 3.501-7.7981 7.8043s3.4983 7.8043 7.7981 7.8043c4.2999 0 7.7982-3.501 7.7982-7.8043s-3.4983-7.8043-7.7982-7.8043m0 11.843c-2.229 0-4.0356-1.8079-4.0356-4.0387s1.8065-4.0387 4.0356-4.0387S16.0262 9.7692 16.0262 12s-1.8065 4.0388-4.0356 4.0388m.6534-13.1249V0C18.9726.3386 24 5.5822 24 12s-5.0274 11.66-11.356 12v-2.9139c4.7167-.3372 8.4516-4.2814 8.4516-9.0861s-3.735-8.749-8.4516-9.0861M5.113 17.9586c-1.2502-1.4446-2.0562-3.2845-2.2-5.3046H0c.151 2.8266 1.2808 5.3917 3.051 7.3668l2.0606-2.0622zM11.3372 24v-2.9139c-2.02-.1439-3.8584-.949-5.3019-2.2018l-2.0606 2.0623c1.975 1.773 4.538 2.9022 7.361 3.0534z"/></svg>'
|
'<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Turborepo</title><path d="M11.9906 4.1957c-4.2998 0-7.7981 3.501-7.7981 7.8043s3.4983 7.8043 7.7981 7.8043c4.2999 0 7.7982-3.501 7.7982-7.8043s-3.4983-7.8043-7.7982-7.8043m0 11.843c-2.229 0-4.0356-1.8079-4.0356-4.0387s1.8065-4.0387 4.0356-4.0387S16.0262 9.7692 16.0262 12s-1.8065 4.0388-4.0356 4.0388m.6534-13.1249V0C18.9726.3386 24 5.5822 24 12s-5.0274 11.66-11.356 12v-2.9139c4.7167-.3372 8.4516-4.2814 8.4516-9.0861s-3.735-8.749-8.4516-9.0861M5.113 17.9586c-1.2502-1.4446-2.0562-3.2845-2.2-5.3046H0c.151 2.8266 1.2808 5.3917 3.051 7.3668l2.0606-2.0622zM11.3372 24v-2.9139c-2.02-.1439-3.8584-.949-5.3019-2.2018l-2.0606 2.0623c1.975 1.773 4.538 2.9022 7.361 3.0534z"/></svg>'
|
||||||
@@ -130,7 +130,7 @@ export function ProjectForm({
|
|||||||
<DialogTrigger render={<Button className={cn(className)} />}>
|
<DialogTrigger render={<Button className={cn(className)} />}>
|
||||||
Create Project
|
Create Project
|
||||||
</DialogTrigger>
|
</DialogTrigger>
|
||||||
<DialogContent className="dark no-scrollbar max-h-[calc(100svh-2rem)] overflow-y-auto rounded-2xl border-0 bg-neutral-800 p-6 text-foreground shadow-xl ring-1 ring-neutral-950/80 backdrop-blur-xl [--border:var(--color-neutral-700)]! sm:max-w-sm">
|
<DialogContent className="dark no-scrollbar max-h-[calc(100svh-2rem)] overflow-y-auto rounded-2xl p-6 shadow-xl **:data-[slot=field-separator]:h-2 sm:max-w-sm">
|
||||||
<DialogHeader>
|
<DialogHeader>
|
||||||
<DialogTitle>Create Project</DialogTitle>
|
<DialogTitle>Create Project</DialogTitle>
|
||||||
<DialogDescription>
|
<DialogDescription>
|
||||||
@@ -209,7 +209,7 @@ export function ProjectForm({
|
|||||||
packageManager: value as PackageManager,
|
packageManager: value as PackageManager,
|
||||||
}))
|
}))
|
||||||
}}
|
}}
|
||||||
className="min-w-0 gap-0 overflow-hidden rounded-xl border-0 bg-neutral-950/20 ring-1 ring-neutral-950/80 dark:bg-neutral-900/50 dark:ring-neutral-700/50"
|
className="min-w-0 gap-0 overflow-hidden rounded-xl border-0 ring-1 ring-border"
|
||||||
>
|
>
|
||||||
<div className="flex items-center gap-2 py-1 pr-1.5 pl-1">
|
<div className="flex items-center gap-2 py-1 pr-1.5 pl-1">
|
||||||
<TabsList className="bg-transparent font-mono">
|
<TabsList className="bg-transparent font-mono">
|
||||||
@@ -242,7 +242,7 @@ export function ProjectForm({
|
|||||||
{Object.entries(commands).map(([key, cmd]) => {
|
{Object.entries(commands).map(([key, cmd]) => {
|
||||||
return (
|
return (
|
||||||
<TabsContent key={key} value={key}>
|
<TabsContent key={key} value={key}>
|
||||||
<div className="relative overflow-hidden border-t border-neutral-700/50 bg-neutral-900/50 px-3 py-3 text-neutral-100">
|
<div className="relative overflow-hidden border-t bg-popover p-3">
|
||||||
<div className="no-scrollbar overflow-x-auto">
|
<div className="no-scrollbar overflow-x-auto">
|
||||||
<code className="font-mono text-sm whitespace-nowrap">
|
<code className="font-mono text-sm whitespace-nowrap">
|
||||||
{cmd}
|
{cmd}
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
|
|
||||||
import { RADII, type RadiusValue } from "@/registry/config"
|
import { RADII, type RadiusValue } from "@/registry/config"
|
||||||
import { LockButton } from "@/app/(create)/components/lock-button"
|
import { LockButton } from "@/app/(app)/create/components/lock-button"
|
||||||
import {
|
import {
|
||||||
Picker,
|
Picker,
|
||||||
PickerContent,
|
PickerContent,
|
||||||
@@ -12,8 +12,8 @@ import {
|
|||||||
PickerRadioItem,
|
PickerRadioItem,
|
||||||
PickerSeparator,
|
PickerSeparator,
|
||||||
PickerTrigger,
|
PickerTrigger,
|
||||||
} from "@/app/(create)/components/picker"
|
} from "@/app/(app)/create/components/picker"
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
export function RadiusPicker({
|
export function RadiusPicker({
|
||||||
isMobile,
|
isMobile,
|
||||||
@@ -1,12 +1,13 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import Script from "next/script"
|
import Script from "next/script"
|
||||||
import { Button } from "@/examples/base/ui/button"
|
|
||||||
import { DiceFaces05Icon } from "@hugeicons/core-free-icons"
|
import { DiceFaces05Icon } from "@hugeicons/core-free-icons"
|
||||||
import { HugeiconsIcon } from "@hugeicons/react"
|
import { HugeiconsIcon } from "@hugeicons/react"
|
||||||
|
|
||||||
import { cn } from "@/lib/utils"
|
import { cn } from "@/lib/utils"
|
||||||
import { useRandom } from "@/app/(create)/hooks/use-random"
|
import { Button } from "@/styles/base-nova/ui/button"
|
||||||
|
import { useRandom } from "@/app/(app)/create/hooks/use-random"
|
||||||
|
import { RESET_FORWARD_TYPE } from "@/app/(app)/create/hooks/use-reset"
|
||||||
|
|
||||||
export const RANDOMIZE_FORWARD_TYPE = "randomize-forward"
|
export const RANDOMIZE_FORWARD_TYPE = "randomize-forward"
|
||||||
|
|
||||||
@@ -40,7 +41,7 @@ export function RandomizeScript() {
|
|||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
(function() {
|
(function() {
|
||||||
// Forward R key
|
// Forward r key (shuffle) and Shift+R (reset).
|
||||||
document.addEventListener('keydown', function(e) {
|
document.addEventListener('keydown', function(e) {
|
||||||
if ((e.key === 'r' || e.key === 'R') && !e.metaKey && !e.ctrlKey) {
|
if ((e.key === 'r' || e.key === 'R') && !e.metaKey && !e.ctrlKey) {
|
||||||
if (
|
if (
|
||||||
@@ -53,8 +54,11 @@ export function RandomizeScript() {
|
|||||||
}
|
}
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
if (window.parent && window.parent !== window) {
|
if (window.parent && window.parent !== window) {
|
||||||
|
var type = e.shiftKey
|
||||||
|
? '${RESET_FORWARD_TYPE}'
|
||||||
|
: '${RANDOMIZE_FORWARD_TYPE}';
|
||||||
window.parent.postMessage({
|
window.parent.postMessage({
|
||||||
type: '${RANDOMIZE_FORWARD_TYPE}',
|
type: type,
|
||||||
key: e.key
|
key: e.key
|
||||||
}, '*');
|
}, '*');
|
||||||
}
|
}
|
||||||
@@ -9,9 +9,8 @@ import {
|
|||||||
AlertDialogFooter,
|
AlertDialogFooter,
|
||||||
AlertDialogHeader,
|
AlertDialogHeader,
|
||||||
AlertDialogTitle,
|
AlertDialogTitle,
|
||||||
} from "@/examples/base/ui/alert-dialog"
|
} from "@/styles/base-nova/ui/alert-dialog"
|
||||||
|
import { useReset } from "@/app/(app)/create/hooks/use-reset"
|
||||||
import { useReset } from "@/app/(create)/hooks/use-reset"
|
|
||||||
|
|
||||||
export function ResetDialog() {
|
export function ResetDialog() {
|
||||||
const { showResetDialog, setShowResetDialog, confirmReset } = useReset()
|
const { showResetDialog, setShowResetDialog, confirmReset } = useReset()
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { Button } from "@/examples/base/ui/button"
|
|
||||||
import { Share03Icon, Tick02Icon } from "@hugeicons/core-free-icons"
|
import { Share03Icon, Tick02Icon } from "@hugeicons/core-free-icons"
|
||||||
import { HugeiconsIcon } from "@hugeicons/react"
|
import { HugeiconsIcon } from "@hugeicons/react"
|
||||||
|
|
||||||
import { copyToClipboardWithMeta } from "@/components/copy-button"
|
import { copyToClipboardWithMeta } from "@/components/copy-button"
|
||||||
import { usePresetCode } from "@/app/(create)/hooks/use-design-system"
|
import { Button } from "@/styles/base-nova/ui/button"
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import { usePresetCode } from "@/app/(app)/create/hooks/use-design-system"
|
||||||
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
export function ShareButton() {
|
export function ShareButton() {
|
||||||
const [params] = useDesignSystemSearchParams()
|
const [params] = useDesignSystemSearchParams()
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
|
|
||||||
import { type Style, type StyleName } from "@/registry/config"
|
import { type Style, type StyleName } from "@/registry/config"
|
||||||
import { LockButton } from "@/app/(create)/components/lock-button"
|
import { LockButton } from "@/app/(app)/create/components/lock-button"
|
||||||
import {
|
import {
|
||||||
Picker,
|
Picker,
|
||||||
PickerContent,
|
PickerContent,
|
||||||
@@ -11,8 +11,8 @@ import {
|
|||||||
PickerRadioGroup,
|
PickerRadioGroup,
|
||||||
PickerRadioItem,
|
PickerRadioItem,
|
||||||
PickerTrigger,
|
PickerTrigger,
|
||||||
} from "@/app/(create)/components/picker"
|
} from "@/app/(app)/create/components/picker"
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
export function StylePicker({
|
export function StylePicker({
|
||||||
styles,
|
styles,
|
||||||
@@ -4,7 +4,7 @@ import * as React from "react"
|
|||||||
|
|
||||||
import { useMounted } from "@/hooks/use-mounted"
|
import { useMounted } from "@/hooks/use-mounted"
|
||||||
import { BASE_COLORS, type Theme, type ThemeName } from "@/registry/config"
|
import { BASE_COLORS, type Theme, type ThemeName } from "@/registry/config"
|
||||||
import { LockButton } from "@/app/(create)/components/lock-button"
|
import { LockButton } from "@/app/(app)/create/components/lock-button"
|
||||||
import {
|
import {
|
||||||
Picker,
|
Picker,
|
||||||
PickerContent,
|
PickerContent,
|
||||||
@@ -13,8 +13,8 @@ import {
|
|||||||
PickerRadioItem,
|
PickerRadioItem,
|
||||||
PickerSeparator,
|
PickerSeparator,
|
||||||
PickerTrigger,
|
PickerTrigger,
|
||||||
} from "@/app/(create)/components/picker"
|
} from "@/app/(app)/create/components/picker"
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
export function ThemePicker({
|
export function ThemePicker({
|
||||||
themes,
|
themes,
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { Button } from "@/examples/base/ui/button"
|
|
||||||
import { Skeleton } from "@/examples/base/ui/skeleton"
|
|
||||||
|
|
||||||
import { cn } from "@/lib/utils"
|
import { cn } from "@/lib/utils"
|
||||||
import { useIsMobile } from "@/hooks/use-mobile"
|
import { useIsMobile } from "@/hooks/use-mobile"
|
||||||
import { useMounted } from "@/hooks/use-mounted"
|
import { useMounted } from "@/hooks/use-mounted"
|
||||||
import { Icons } from "@/components/icons"
|
import { Icons } from "@/components/icons"
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import { Button } from "@/styles/base-nova/ui/button"
|
||||||
|
import { Skeleton } from "@/styles/base-nova/ui/skeleton"
|
||||||
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
export function V0Button({ className }: { className?: string }) {
|
export function V0Button({ className }: { className?: string }) {
|
||||||
const [params] = useDesignSystemSearchParams()
|
const [params] = useDesignSystemSearchParams()
|
||||||
@@ -1,7 +1,9 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { Button } from "@/examples/base/ui/button"
|
|
||||||
|
import { Icons } from "@/components/icons"
|
||||||
|
import { Button } from "@/styles/base-nova/ui/button"
|
||||||
import {
|
import {
|
||||||
Dialog,
|
Dialog,
|
||||||
DialogClose,
|
DialogClose,
|
||||||
@@ -10,9 +12,7 @@ import {
|
|||||||
DialogFooter,
|
DialogFooter,
|
||||||
DialogHeader,
|
DialogHeader,
|
||||||
DialogTitle,
|
DialogTitle,
|
||||||
} from "@/examples/base/ui/dialog"
|
} from "@/styles/base-nova/ui/dialog"
|
||||||
|
|
||||||
import { Icons } from "@/components/icons"
|
|
||||||
|
|
||||||
const STORAGE_KEY = "shadcn-create-welcome-dialog"
|
const STORAGE_KEY = "shadcn-create-welcome-dialog"
|
||||||
|
|
||||||
@@ -4,8 +4,8 @@ import * as React from "react"
|
|||||||
import { type RegistryItem } from "shadcn/schema"
|
import { type RegistryItem } from "shadcn/schema"
|
||||||
import useSWR from "swr"
|
import useSWR from "swr"
|
||||||
|
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
import { groupItemsByType } from "@/app/(create)/lib/utils"
|
import { groupItemsByType } from "@/app/(app)/create/lib/utils"
|
||||||
|
|
||||||
const ACTION_MENU_OPEN_KEY = "create:action-menu-open"
|
const ACTION_MENU_OPEN_KEY = "create:action-menu-open"
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { getPresetCode } from "@/app/(create)/lib/preset-code"
|
import { getPresetCode } from "@/app/(app)/create/lib/preset-code"
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
// Returns the canonical preset code derived from the current search params.
|
// Returns the canonical preset code derived from the current search params.
|
||||||
export function usePresetCode() {
|
export function usePresetCode() {
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
|
|
||||||
import type { DesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
import type { DesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
type ParentToIframeMessage = {
|
type ParentToIframeMessage = {
|
||||||
type: "design-system-params"
|
type: "design-system-params"
|
||||||
@@ -12,17 +12,17 @@ import {
|
|||||||
STYLES,
|
STYLES,
|
||||||
type FontHeadingValue,
|
type FontHeadingValue,
|
||||||
} from "@/registry/config"
|
} from "@/registry/config"
|
||||||
import { useLocks } from "@/app/(create)/hooks/use-locks"
|
import { useLocks } from "@/app/(app)/create/hooks/use-locks"
|
||||||
import { FONTS } from "@/app/(create)/lib/fonts"
|
import { FONTS } from "@/app/(app)/create/lib/fonts"
|
||||||
import {
|
import {
|
||||||
applyBias,
|
applyBias,
|
||||||
RANDOMIZE_BIASES,
|
RANDOMIZE_BIASES,
|
||||||
type RandomizeContext,
|
type RandomizeContext,
|
||||||
} from "@/app/(create)/lib/randomize-biases"
|
} from "@/app/(app)/create/lib/randomize-biases"
|
||||||
import {
|
import {
|
||||||
isTranslucentMenuColor,
|
isTranslucentMenuColor,
|
||||||
useDesignSystemSearchParams,
|
useDesignSystemSearchParams,
|
||||||
} from "@/app/(create)/lib/search-params"
|
} from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
function randomItem<T>(array: readonly T[]): T {
|
function randomItem<T>(array: readonly T[]): T {
|
||||||
return array[Math.floor(Math.random() * array.length)]
|
return array[Math.floor(Math.random() * array.length)]
|
||||||
@@ -156,7 +156,7 @@ export function useRandom() {
|
|||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
const down = (e: KeyboardEvent) => {
|
const down = (e: KeyboardEvent) => {
|
||||||
if ((e.key === "r" || e.key === "R") && !e.metaKey && !e.ctrlKey) {
|
if (e.key === "r" && !e.shiftKey && !e.metaKey && !e.ctrlKey) {
|
||||||
if (
|
if (
|
||||||
(e.target instanceof HTMLElement && e.target.isContentEditable) ||
|
(e.target instanceof HTMLElement && e.target.isContentEditable) ||
|
||||||
e.target instanceof HTMLInputElement ||
|
e.target instanceof HTMLInputElement ||
|
||||||
103
apps/v4/app/(app)/create/hooks/use-reset.tsx
Normal file
103
apps/v4/app/(app)/create/hooks/use-reset.tsx
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import * as React from "react"
|
||||||
|
import useSWR from "swr"
|
||||||
|
|
||||||
|
import { DEFAULT_CONFIG, PRESETS } from "@/registry/config"
|
||||||
|
import { useDesignSystemSearchParams } from "@/app/(app)/create/lib/search-params"
|
||||||
|
|
||||||
|
const RESET_DIALOG_KEY = "create:reset-dialog-open"
|
||||||
|
export const RESET_FORWARD_TYPE = "reset-forward"
|
||||||
|
|
||||||
|
export function useReset() {
|
||||||
|
const [params, setParams] = useDesignSystemSearchParams()
|
||||||
|
const { data: showResetDialog = false, mutate: setShowResetDialogData } =
|
||||||
|
useSWR<boolean>(RESET_DIALOG_KEY, {
|
||||||
|
fallbackData: false,
|
||||||
|
revalidateOnFocus: false,
|
||||||
|
revalidateIfStale: false,
|
||||||
|
revalidateOnReconnect: false,
|
||||||
|
})
|
||||||
|
|
||||||
|
const reset = React.useCallback(() => {
|
||||||
|
const preset =
|
||||||
|
PRESETS.find(
|
||||||
|
(preset) => preset.base === params.base && preset.style === params.style
|
||||||
|
) ?? DEFAULT_CONFIG
|
||||||
|
|
||||||
|
setParams({
|
||||||
|
base: params.base,
|
||||||
|
style: params.style,
|
||||||
|
baseColor: preset.baseColor,
|
||||||
|
theme: preset.theme,
|
||||||
|
chartColor: preset.chartColor,
|
||||||
|
iconLibrary: preset.iconLibrary,
|
||||||
|
font: preset.font,
|
||||||
|
fontHeading: preset.fontHeading,
|
||||||
|
menuAccent: preset.menuAccent,
|
||||||
|
menuColor: preset.menuColor,
|
||||||
|
radius: preset.radius,
|
||||||
|
template: DEFAULT_CONFIG.template,
|
||||||
|
item: params.item,
|
||||||
|
})
|
||||||
|
}, [setParams, params.base, params.style, params.item])
|
||||||
|
|
||||||
|
const handleShowResetDialogChange = React.useCallback(
|
||||||
|
(open: boolean) => {
|
||||||
|
void setShowResetDialogData(open, { revalidate: false })
|
||||||
|
},
|
||||||
|
[setShowResetDialogData]
|
||||||
|
)
|
||||||
|
|
||||||
|
const confirmReset = React.useCallback(() => {
|
||||||
|
reset()
|
||||||
|
void setShowResetDialogData(false, { revalidate: false })
|
||||||
|
}, [reset, setShowResetDialogData])
|
||||||
|
|
||||||
|
const showResetDialogRef = React.useRef(showResetDialog)
|
||||||
|
React.useEffect(() => {
|
||||||
|
showResetDialogRef.current = showResetDialog
|
||||||
|
}, [showResetDialog])
|
||||||
|
|
||||||
|
const confirmResetRef = React.useRef(confirmReset)
|
||||||
|
React.useEffect(() => {
|
||||||
|
confirmResetRef.current = confirmReset
|
||||||
|
}, [confirmReset])
|
||||||
|
|
||||||
|
React.useEffect(() => {
|
||||||
|
const down = (e: KeyboardEvent) => {
|
||||||
|
if (e.key === "R" && e.shiftKey && !e.metaKey && !e.ctrlKey) {
|
||||||
|
if (
|
||||||
|
(e.target instanceof HTMLElement && e.target.isContentEditable) ||
|
||||||
|
e.target instanceof HTMLInputElement ||
|
||||||
|
e.target instanceof HTMLTextAreaElement ||
|
||||||
|
e.target instanceof HTMLSelectElement
|
||||||
|
) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
e.preventDefault()
|
||||||
|
|
||||||
|
// If the dialog is already open, confirm the reset.
|
||||||
|
if (showResetDialogRef.current) {
|
||||||
|
confirmResetRef.current()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
handleShowResetDialogChange(true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
document.addEventListener("keydown", down)
|
||||||
|
return () => {
|
||||||
|
document.removeEventListener("keydown", down)
|
||||||
|
}
|
||||||
|
}, [handleShowResetDialogChange])
|
||||||
|
|
||||||
|
return {
|
||||||
|
reset,
|
||||||
|
showResetDialog,
|
||||||
|
setShowResetDialog: handleShowResetDialogChange,
|
||||||
|
confirmReset,
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Suspense } from "react"
|
import { Suspense } from "react"
|
||||||
|
|
||||||
import { HistoryProvider } from "@/app/(create)/hooks/use-history"
|
import { HistoryProvider } from "@/app/(app)/create/hooks/use-history"
|
||||||
import { LocksProvider } from "@/app/(create)/hooks/use-locks"
|
import { LocksProvider } from "@/app/(app)/create/hooks/use-locks"
|
||||||
|
|
||||||
export default function CreateLayout({
|
export default function CreateLayout({
|
||||||
children,
|
children,
|
||||||
@@ -6,7 +6,7 @@ import { BASES, getThemesForBaseColor, type BaseName } from "@/registry/config"
|
|||||||
import {
|
import {
|
||||||
ALLOWED_ITEM_TYPES,
|
ALLOWED_ITEM_TYPES,
|
||||||
EXCLUDED_ITEMS,
|
EXCLUDED_ITEMS,
|
||||||
} from "@/app/(create)/lib/constants"
|
} from "@/app/(app)/create/lib/constants"
|
||||||
|
|
||||||
export async function getItemsForBase(base: BaseName) {
|
export async function getItemsForBase(base: BaseName) {
|
||||||
const { Index } = await import("@/registry/bases/__index__")
|
const { Index } = await import("@/registry/bases/__index__")
|
||||||
233
apps/v4/app/(app)/create/lib/fonts.ts
Normal file
233
apps/v4/app/(app)/create/lib/fonts.ts
Normal file
@@ -0,0 +1,233 @@
|
|||||||
|
import {
|
||||||
|
DM_Sans,
|
||||||
|
Figtree,
|
||||||
|
Geist,
|
||||||
|
Geist_Mono,
|
||||||
|
IBM_Plex_Sans,
|
||||||
|
Instrument_Sans,
|
||||||
|
Inter,
|
||||||
|
JetBrains_Mono,
|
||||||
|
Lora,
|
||||||
|
Manrope,
|
||||||
|
Merriweather,
|
||||||
|
Montserrat,
|
||||||
|
Noto_Sans,
|
||||||
|
Noto_Serif,
|
||||||
|
Nunito_Sans,
|
||||||
|
Outfit,
|
||||||
|
Oxanium,
|
||||||
|
Playfair_Display,
|
||||||
|
Public_Sans,
|
||||||
|
Raleway,
|
||||||
|
Roboto,
|
||||||
|
Roboto_Slab,
|
||||||
|
Source_Sans_3,
|
||||||
|
Space_Grotesk,
|
||||||
|
} from "next/font/google"
|
||||||
|
|
||||||
|
import { FONT_DEFINITIONS, type FontName } from "@/lib/font-definitions"
|
||||||
|
|
||||||
|
type PreviewFont = ReturnType<typeof Inter>
|
||||||
|
|
||||||
|
const geistSans = Geist({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-geist-sans",
|
||||||
|
})
|
||||||
|
|
||||||
|
const inter = Inter({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-inter",
|
||||||
|
})
|
||||||
|
|
||||||
|
const notoSans = Noto_Sans({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-noto-sans",
|
||||||
|
})
|
||||||
|
|
||||||
|
const nunitoSans = Nunito_Sans({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-nunito-sans",
|
||||||
|
})
|
||||||
|
|
||||||
|
const figtree = Figtree({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-figtree",
|
||||||
|
})
|
||||||
|
|
||||||
|
const roboto = Roboto({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-roboto",
|
||||||
|
})
|
||||||
|
|
||||||
|
const raleway = Raleway({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-raleway",
|
||||||
|
})
|
||||||
|
|
||||||
|
const dmSans = DM_Sans({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-dm-sans",
|
||||||
|
})
|
||||||
|
|
||||||
|
const publicSans = Public_Sans({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-public-sans",
|
||||||
|
})
|
||||||
|
|
||||||
|
const outfit = Outfit({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-outfit",
|
||||||
|
})
|
||||||
|
|
||||||
|
const oxanium = Oxanium({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-oxanium",
|
||||||
|
})
|
||||||
|
|
||||||
|
const manrope = Manrope({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-manrope",
|
||||||
|
})
|
||||||
|
|
||||||
|
const spaceGrotesk = Space_Grotesk({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-space-grotesk",
|
||||||
|
})
|
||||||
|
|
||||||
|
const montserrat = Montserrat({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-montserrat",
|
||||||
|
})
|
||||||
|
|
||||||
|
const ibmPlexSans = IBM_Plex_Sans({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-ibm-plex-sans",
|
||||||
|
})
|
||||||
|
|
||||||
|
const sourceSans3 = Source_Sans_3({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-source-sans-3",
|
||||||
|
})
|
||||||
|
|
||||||
|
const instrumentSans = Instrument_Sans({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-instrument-sans",
|
||||||
|
})
|
||||||
|
|
||||||
|
const jetbrainsMono = JetBrains_Mono({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-jetbrains-mono",
|
||||||
|
})
|
||||||
|
|
||||||
|
const geistMono = Geist_Mono({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-geist-mono",
|
||||||
|
})
|
||||||
|
|
||||||
|
const notoSerif = Noto_Serif({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-noto-serif",
|
||||||
|
})
|
||||||
|
|
||||||
|
const robotoSlab = Roboto_Slab({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-roboto-slab",
|
||||||
|
})
|
||||||
|
|
||||||
|
const merriweather = Merriweather({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-merriweather",
|
||||||
|
})
|
||||||
|
|
||||||
|
const lora = Lora({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-lora",
|
||||||
|
})
|
||||||
|
|
||||||
|
const playfairDisplay = Playfair_Display({
|
||||||
|
subsets: ["latin"],
|
||||||
|
variable: "--font-playfair-display",
|
||||||
|
})
|
||||||
|
|
||||||
|
const PREVIEW_FONTS = {
|
||||||
|
geist: geistSans,
|
||||||
|
inter,
|
||||||
|
"noto-sans": notoSans,
|
||||||
|
"nunito-sans": nunitoSans,
|
||||||
|
figtree,
|
||||||
|
roboto,
|
||||||
|
raleway,
|
||||||
|
"dm-sans": dmSans,
|
||||||
|
"public-sans": publicSans,
|
||||||
|
outfit,
|
||||||
|
oxanium,
|
||||||
|
manrope,
|
||||||
|
"space-grotesk": spaceGrotesk,
|
||||||
|
montserrat,
|
||||||
|
"ibm-plex-sans": ibmPlexSans,
|
||||||
|
"source-sans-3": sourceSans3,
|
||||||
|
"instrument-sans": instrumentSans,
|
||||||
|
"jetbrains-mono": jetbrainsMono,
|
||||||
|
"geist-mono": geistMono,
|
||||||
|
"noto-serif": notoSerif,
|
||||||
|
"roboto-slab": robotoSlab,
|
||||||
|
merriweather,
|
||||||
|
lora,
|
||||||
|
"playfair-display": playfairDisplay,
|
||||||
|
} satisfies Record<FontName, PreviewFont>
|
||||||
|
|
||||||
|
function createFontOption(name: FontName) {
|
||||||
|
const definition = FONT_DEFINITIONS.find((font) => font.name === name)
|
||||||
|
|
||||||
|
if (!definition) {
|
||||||
|
throw new Error(`Unknown font definition: ${name}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
name: definition.title,
|
||||||
|
value: definition.name,
|
||||||
|
font: PREVIEW_FONTS[name],
|
||||||
|
type: definition.type,
|
||||||
|
} as const
|
||||||
|
}
|
||||||
|
|
||||||
|
export const FONTS = [
|
||||||
|
createFontOption("geist"),
|
||||||
|
createFontOption("inter"),
|
||||||
|
createFontOption("noto-sans"),
|
||||||
|
createFontOption("nunito-sans"),
|
||||||
|
createFontOption("figtree"),
|
||||||
|
createFontOption("roboto"),
|
||||||
|
createFontOption("raleway"),
|
||||||
|
createFontOption("dm-sans"),
|
||||||
|
createFontOption("public-sans"),
|
||||||
|
createFontOption("outfit"),
|
||||||
|
createFontOption("oxanium"),
|
||||||
|
createFontOption("manrope"),
|
||||||
|
createFontOption("space-grotesk"),
|
||||||
|
createFontOption("montserrat"),
|
||||||
|
createFontOption("ibm-plex-sans"),
|
||||||
|
createFontOption("source-sans-3"),
|
||||||
|
createFontOption("instrument-sans"),
|
||||||
|
createFontOption("geist-mono"),
|
||||||
|
createFontOption("jetbrains-mono"),
|
||||||
|
createFontOption("noto-serif"),
|
||||||
|
createFontOption("roboto-slab"),
|
||||||
|
createFontOption("merriweather"),
|
||||||
|
createFontOption("lora"),
|
||||||
|
createFontOption("playfair-display"),
|
||||||
|
] as const
|
||||||
|
|
||||||
|
export type Font = (typeof FONTS)[number]
|
||||||
|
|
||||||
|
export const FONT_HEADING_OPTIONS = [
|
||||||
|
{
|
||||||
|
name: "Inherit",
|
||||||
|
value: "inherit",
|
||||||
|
font: null,
|
||||||
|
type: "default",
|
||||||
|
},
|
||||||
|
...FONTS,
|
||||||
|
] as const
|
||||||
|
|
||||||
|
export type FontHeadingOption = (typeof FONT_HEADING_OPTIONS)[number]
|
||||||
309
apps/v4/app/(app)/create/lib/search-params.ts
Normal file
309
apps/v4/app/(app)/create/lib/search-params.ts
Normal file
@@ -0,0 +1,309 @@
|
|||||||
|
import * as React from "react"
|
||||||
|
import { useSearchParams } from "next/navigation"
|
||||||
|
import { useQueryStates } from "nuqs"
|
||||||
|
import {
|
||||||
|
createLoader,
|
||||||
|
createSerializer,
|
||||||
|
parseAsBoolean,
|
||||||
|
parseAsInteger,
|
||||||
|
parseAsString,
|
||||||
|
parseAsStringLiteral,
|
||||||
|
type inferParserType,
|
||||||
|
type Options,
|
||||||
|
} from "nuqs/server"
|
||||||
|
import { decodePreset, isPresetCode } from "shadcn/preset"
|
||||||
|
|
||||||
|
import {
|
||||||
|
BASE_COLORS,
|
||||||
|
BASES,
|
||||||
|
DEFAULT_CONFIG,
|
||||||
|
getThemesForBaseColor,
|
||||||
|
iconLibraries,
|
||||||
|
MENU_ACCENTS,
|
||||||
|
MENU_COLORS,
|
||||||
|
RADII,
|
||||||
|
STYLES,
|
||||||
|
THEMES,
|
||||||
|
type BaseColorName,
|
||||||
|
type BaseName,
|
||||||
|
type ChartColorName,
|
||||||
|
type FontHeadingValue,
|
||||||
|
type FontValue,
|
||||||
|
type IconLibraryName,
|
||||||
|
type MenuAccentValue,
|
||||||
|
type MenuColorValue,
|
||||||
|
type RadiusValue,
|
||||||
|
type StyleName,
|
||||||
|
type ThemeName,
|
||||||
|
} from "@/registry/config"
|
||||||
|
import { FONTS } from "@/app/(app)/create/lib/fonts"
|
||||||
|
import { getPresetCode } from "@/app/(app)/create/lib/preset-code"
|
||||||
|
import { resolvePresetOverrides } from "@/app/(app)/create/lib/preset-query"
|
||||||
|
|
||||||
|
const designSystemSearchParams = {
|
||||||
|
preset: parseAsString.withDefault("b2D0wqNxT"),
|
||||||
|
base: parseAsStringLiteral<BaseName>(BASES.map((b) => b.name)).withDefault(
|
||||||
|
DEFAULT_CONFIG.base
|
||||||
|
),
|
||||||
|
item: parseAsString.withDefault("preview-02").withOptions({ shallow: true }),
|
||||||
|
iconLibrary: parseAsStringLiteral<IconLibraryName>(
|
||||||
|
Object.values(iconLibraries).map((i) => i.name)
|
||||||
|
).withDefault(DEFAULT_CONFIG.iconLibrary),
|
||||||
|
style: parseAsStringLiteral<StyleName>(STYLES.map((s) => s.name)).withDefault(
|
||||||
|
DEFAULT_CONFIG.style
|
||||||
|
),
|
||||||
|
theme: parseAsStringLiteral<ThemeName>(THEMES.map((t) => t.name)).withDefault(
|
||||||
|
DEFAULT_CONFIG.theme
|
||||||
|
),
|
||||||
|
chartColor: parseAsStringLiteral<ChartColorName>(
|
||||||
|
THEMES.map((t) => t.name)
|
||||||
|
).withDefault(DEFAULT_CONFIG.chartColor ?? "neutral"),
|
||||||
|
font: parseAsStringLiteral<FontValue>(FONTS.map((f) => f.value)).withDefault(
|
||||||
|
DEFAULT_CONFIG.font
|
||||||
|
),
|
||||||
|
fontHeading: parseAsStringLiteral<FontHeadingValue>([
|
||||||
|
"inherit",
|
||||||
|
...FONTS.map((f) => f.value),
|
||||||
|
]).withDefault(DEFAULT_CONFIG.fontHeading),
|
||||||
|
baseColor: parseAsStringLiteral<BaseColorName>(
|
||||||
|
BASE_COLORS.map((b) => b.name)
|
||||||
|
).withDefault(DEFAULT_CONFIG.baseColor),
|
||||||
|
menuAccent: parseAsStringLiteral<MenuAccentValue>(
|
||||||
|
MENU_ACCENTS.map((a) => a.value)
|
||||||
|
).withDefault(DEFAULT_CONFIG.menuAccent),
|
||||||
|
menuColor: parseAsStringLiteral<MenuColorValue>(
|
||||||
|
MENU_COLORS.map((m) => m.value)
|
||||||
|
).withDefault(DEFAULT_CONFIG.menuColor),
|
||||||
|
radius: parseAsStringLiteral<RadiusValue>(
|
||||||
|
RADII.map((r) => r.name)
|
||||||
|
).withDefault("default"),
|
||||||
|
template: parseAsStringLiteral([
|
||||||
|
"next",
|
||||||
|
"next-monorepo",
|
||||||
|
"start",
|
||||||
|
"start-monorepo",
|
||||||
|
"react-router",
|
||||||
|
"react-router-monorepo",
|
||||||
|
"vite",
|
||||||
|
"vite-monorepo",
|
||||||
|
"astro",
|
||||||
|
"astro-monorepo",
|
||||||
|
"laravel",
|
||||||
|
] as const).withDefault("next"),
|
||||||
|
rtl: parseAsBoolean.withDefault(false),
|
||||||
|
size: parseAsInteger.withDefault(100),
|
||||||
|
custom: parseAsBoolean.withDefault(false),
|
||||||
|
}
|
||||||
|
|
||||||
|
// Design system param keys that get encoded into the preset code.
|
||||||
|
const DESIGN_SYSTEM_KEYS = [
|
||||||
|
"style",
|
||||||
|
"baseColor",
|
||||||
|
"theme",
|
||||||
|
"chartColor",
|
||||||
|
"iconLibrary",
|
||||||
|
"font",
|
||||||
|
"fontHeading",
|
||||||
|
"radius",
|
||||||
|
"menuAccent",
|
||||||
|
"menuColor",
|
||||||
|
] as const
|
||||||
|
|
||||||
|
function normalizeFontHeading(
|
||||||
|
font: FontValue,
|
||||||
|
fontHeading: FontHeadingValue
|
||||||
|
): FontHeadingValue {
|
||||||
|
// Persist "same as body" as an explicit inherit sentinel so the body font
|
||||||
|
// can change later without freezing headings to a concrete previous value.
|
||||||
|
return fontHeading === font ? "inherit" : fontHeading
|
||||||
|
}
|
||||||
|
|
||||||
|
// Non-design-system keys that get passed through as-is.
|
||||||
|
// `base` is not encoded in preset codes — it's an architectural choice, not visual.
|
||||||
|
const NON_DESIGN_SYSTEM_KEYS = [
|
||||||
|
"base",
|
||||||
|
"item",
|
||||||
|
"preset",
|
||||||
|
"template",
|
||||||
|
"rtl",
|
||||||
|
"size",
|
||||||
|
"custom",
|
||||||
|
] as const
|
||||||
|
|
||||||
|
export const loadDesignSystemSearchParams = createLoader(
|
||||||
|
designSystemSearchParams
|
||||||
|
)
|
||||||
|
|
||||||
|
export const serializeDesignSystemSearchParams = createSerializer(
|
||||||
|
designSystemSearchParams
|
||||||
|
)
|
||||||
|
|
||||||
|
export type DesignSystemSearchParams = inferParserType<
|
||||||
|
typeof designSystemSearchParams
|
||||||
|
>
|
||||||
|
|
||||||
|
export function isTranslucentMenuColor(
|
||||||
|
menuColor?: MenuColorValue | null
|
||||||
|
): menuColor is "default-translucent" | "inverted-translucent" {
|
||||||
|
return (
|
||||||
|
menuColor === "default-translucent" || menuColor === "inverted-translucent"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function normalizePartialDesignSystemParams(
|
||||||
|
params: Partial<DesignSystemSearchParams>
|
||||||
|
): Partial<DesignSystemSearchParams> {
|
||||||
|
if (
|
||||||
|
params.menuAccent === "bold" &&
|
||||||
|
isTranslucentMenuColor(params.menuColor ?? undefined)
|
||||||
|
) {
|
||||||
|
return {
|
||||||
|
...params,
|
||||||
|
menuAccent: "subtle",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return params
|
||||||
|
}
|
||||||
|
|
||||||
|
function normalizeDesignSystemParams(
|
||||||
|
params: DesignSystemSearchParams
|
||||||
|
): DesignSystemSearchParams {
|
||||||
|
let result = {
|
||||||
|
...params,
|
||||||
|
fontHeading: normalizeFontHeading(params.font, params.fontHeading),
|
||||||
|
}
|
||||||
|
|
||||||
|
// Validate theme and chartColor against baseColor.
|
||||||
|
if (result.baseColor) {
|
||||||
|
const available = getThemesForBaseColor(result.baseColor)
|
||||||
|
const themeValid = available.some((t) => t.name === result.theme)
|
||||||
|
const chartColorValid = available.some((t) => t.name === result.chartColor)
|
||||||
|
|
||||||
|
if (!themeValid || !chartColorValid) {
|
||||||
|
const fallback = (available[0]?.name ?? result.baseColor) as ThemeName
|
||||||
|
result = {
|
||||||
|
...result,
|
||||||
|
...(!themeValid && { theme: fallback }),
|
||||||
|
...(!chartColorValid && { chartColor: fallback as ChartColorName }),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
result.menuAccent === "bold" &&
|
||||||
|
isTranslucentMenuColor(result.menuColor)
|
||||||
|
) {
|
||||||
|
return {
|
||||||
|
...result,
|
||||||
|
menuAccent: "subtle",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result
|
||||||
|
}
|
||||||
|
|
||||||
|
// If preset param exists, decode it and overlay on raw params.
|
||||||
|
// V1 presets don't encode chartColor — fall back to the colored
|
||||||
|
// theme that base-color themes originally borrowed charts from.
|
||||||
|
type SearchParamsLike = Pick<URLSearchParams, "get" | "has">
|
||||||
|
|
||||||
|
function resolvePresetParams(
|
||||||
|
rawParams: DesignSystemSearchParams,
|
||||||
|
searchParams: SearchParamsLike
|
||||||
|
) {
|
||||||
|
if (rawParams.preset && isPresetCode(rawParams.preset)) {
|
||||||
|
const decoded = decodePreset(rawParams.preset)
|
||||||
|
if (decoded) {
|
||||||
|
const presetOverrides = resolvePresetOverrides(searchParams, decoded)
|
||||||
|
return normalizeDesignSystemParams({
|
||||||
|
...decoded,
|
||||||
|
...presetOverrides,
|
||||||
|
base: rawParams.base,
|
||||||
|
item: rawParams.item,
|
||||||
|
preset: rawParams.preset,
|
||||||
|
template: rawParams.template,
|
||||||
|
rtl: rawParams.rtl,
|
||||||
|
size: rawParams.size,
|
||||||
|
custom: rawParams.custom,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return normalizeDesignSystemParams(rawParams)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wraps nuqs useQueryStates with transparent preset encoding/decoding.
|
||||||
|
// - Reads: if ?preset=CODE is in the URL, decodes it and returns individual values.
|
||||||
|
// - Writes: when design system params are set, encodes them into a preset code.
|
||||||
|
export function useDesignSystemSearchParams(options: Options = {}) {
|
||||||
|
const searchParams = useSearchParams()
|
||||||
|
const [rawParams, rawSetParams] = useQueryStates(designSystemSearchParams, {
|
||||||
|
shallow: false,
|
||||||
|
history: "push",
|
||||||
|
...options,
|
||||||
|
})
|
||||||
|
|
||||||
|
const params = React.useMemo(
|
||||||
|
() => resolvePresetParams(rawParams, searchParams),
|
||||||
|
[rawParams, searchParams]
|
||||||
|
)
|
||||||
|
|
||||||
|
// Use ref so setParams callback stays stable across renders.
|
||||||
|
const paramsRef = React.useRef(params)
|
||||||
|
React.useEffect(() => {
|
||||||
|
paramsRef.current = params
|
||||||
|
}, [params])
|
||||||
|
|
||||||
|
type RawSetParamsInput = Parameters<typeof rawSetParams>[0]
|
||||||
|
|
||||||
|
const setParams = React.useCallback(
|
||||||
|
(
|
||||||
|
updates:
|
||||||
|
| Partial<DesignSystemSearchParams>
|
||||||
|
| ((
|
||||||
|
old: DesignSystemSearchParams
|
||||||
|
) => Partial<DesignSystemSearchParams>),
|
||||||
|
setOptions?: Options
|
||||||
|
) => {
|
||||||
|
const resolvedUpdates = normalizePartialDesignSystemParams(
|
||||||
|
typeof updates === "function" ? updates(paramsRef.current) : updates
|
||||||
|
)
|
||||||
|
|
||||||
|
const hasDesignSystemUpdate = DESIGN_SYSTEM_KEYS.some(
|
||||||
|
(key) => key in resolvedUpdates
|
||||||
|
)
|
||||||
|
|
||||||
|
if (!hasDesignSystemUpdate) {
|
||||||
|
// No design system change, pass through directly.
|
||||||
|
return rawSetParams(resolvedUpdates as RawSetParamsInput, setOptions)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Merge current decoded values with updates.
|
||||||
|
const merged = normalizeDesignSystemParams({
|
||||||
|
...paramsRef.current,
|
||||||
|
...resolvedUpdates,
|
||||||
|
})
|
||||||
|
// Encode design system fields into a preset code.
|
||||||
|
// Cast needed: merged values may include null from nuqs resets,
|
||||||
|
// but encodePreset handles missing values by falling back to defaults.
|
||||||
|
const code = getPresetCode(merged)
|
||||||
|
// Build update: set preset, clear individual DS params from URL.
|
||||||
|
const rawUpdate: Record<string, unknown> = { preset: code }
|
||||||
|
for (const key of DESIGN_SYSTEM_KEYS) {
|
||||||
|
rawUpdate[key] = null
|
||||||
|
}
|
||||||
|
|
||||||
|
// Pass through non-DS params that were explicitly in the update.
|
||||||
|
for (const key of NON_DESIGN_SYSTEM_KEYS) {
|
||||||
|
if (key in resolvedUpdates) {
|
||||||
|
rawUpdate[key] = (resolvedUpdates as Record<string, unknown>)[key]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return rawSetParams(rawUpdate as RawSetParamsInput, setOptions)
|
||||||
|
},
|
||||||
|
[rawSetParams]
|
||||||
|
)
|
||||||
|
|
||||||
|
return [params, setParams] as const
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"
|
||||||
|
|
||||||
import { DEFAULT_CONFIG } from "@/registry/config"
|
import { DEFAULT_CONFIG } from "@/registry/config"
|
||||||
import { buildV0Payload } from "@/app/(create)/lib/v0"
|
import { buildV0Payload } from "@/app/(app)/create/lib/v0"
|
||||||
|
|
||||||
vi.mock("shadcn/schema", async () => {
|
vi.mock("shadcn/schema", async () => {
|
||||||
return await vi.importActual("shadcn/schema")
|
return await vi.importActual("shadcn/schema")
|
||||||
@@ -2,12 +2,11 @@ import { type Metadata } from "next"
|
|||||||
|
|
||||||
import { siteConfig } from "@/lib/config"
|
import { siteConfig } from "@/lib/config"
|
||||||
import { absoluteUrl } from "@/lib/utils"
|
import { absoluteUrl } from "@/lib/utils"
|
||||||
import { SiteHeader } from "@/components/site-header"
|
import { Customizer } from "@/app/(app)/create/components/customizer"
|
||||||
import { Customizer } from "@/app/(create)/components/customizer"
|
import { PresetHandler } from "@/app/(app)/create/components/preset-handler"
|
||||||
import { PresetHandler } from "@/app/(create)/components/preset-handler"
|
import { Preview } from "@/app/(app)/create/components/preview"
|
||||||
import { Preview } from "@/app/(create)/components/preview"
|
import { WelcomeDialog } from "@/app/(app)/create/components/welcome-dialog"
|
||||||
import { WelcomeDialog } from "@/app/(create)/components/welcome-dialog"
|
import { getAllItems } from "@/app/(app)/create/lib/api"
|
||||||
import { getAllItems } from "@/app/(create)/lib/api"
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "New Project",
|
title: "New Project",
|
||||||
@@ -42,20 +41,16 @@ export default async function CreatePage() {
|
|||||||
const itemsByBase = await getAllItems()
|
const itemsByBase = await getAllItems()
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div className="relative z-10 flex min-h-0 flex-1 flex-col overflow-hidden section-soft [--customizer-width:--spacing(48)] [--gap:--spacing(4)] md:[--gap:--spacing(6)] 2xl:[--customizer-width:--spacing(56)]">
|
||||||
data-slot="layout"
|
<div
|
||||||
className="group/layout relative z-10 flex h-svh flex-col overflow-hidden section-soft [--customizer-width:--spacing(56)] [--gap:--spacing(4)] md:[--gap:--spacing(6)]"
|
|
||||||
>
|
|
||||||
<SiteHeader />
|
|
||||||
<main
|
|
||||||
data-slot="designer"
|
data-slot="designer"
|
||||||
className="flex min-h-0 flex-1 flex-col gap-(--gap) p-(--gap) pt-[calc(var(--gap)*0.25)] md:flex-row-reverse"
|
className="flex min-h-0 flex-1 flex-col gap-(--gap) p-(--gap) pt-[calc(var(--gap)*0.25)] md:flex-row-reverse"
|
||||||
>
|
>
|
||||||
<Preview />
|
<Preview />
|
||||||
<Customizer itemsByBase={itemsByBase} />
|
<Customizer itemsByBase={itemsByBase} />
|
||||||
<PresetHandler />
|
</div>
|
||||||
<WelcomeDialog />
|
<PresetHandler />
|
||||||
</main>
|
<WelcomeDialog />
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
import Link from "next/link"
|
import Link from "next/link"
|
||||||
import { Button } from "@/examples/radix/ui/button"
|
|
||||||
import { mdxComponents } from "@/mdx-components"
|
import { mdxComponents } from "@/mdx-components"
|
||||||
import { IconRss } from "@tabler/icons-react"
|
import { IconRss } from "@tabler/icons-react"
|
||||||
|
|
||||||
import { getChangelogPages, type ChangelogPageData } from "@/lib/changelog"
|
import { getChangelogPages, type ChangelogPageData } from "@/lib/changelog"
|
||||||
import { absoluteUrl } from "@/lib/utils"
|
import { absoluteUrl } from "@/lib/utils"
|
||||||
import { OpenInV0Cta } from "@/components/open-in-v0-cta"
|
import { OpenInV0Cta } from "@/components/open-in-v0-cta"
|
||||||
|
import { Button } from "@/styles/radix-nova/ui/button"
|
||||||
|
|
||||||
export const revalidate = false
|
export const revalidate = false
|
||||||
export const dynamic = "force-static"
|
export const dynamic = "force-static"
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { Button } from "@/examples/base/ui-rtl/button"
|
import { IconMinus, IconPlus } from "@tabler/icons-react"
|
||||||
import { ButtonGroup } from "@/examples/base/ui-rtl/button-group"
|
|
||||||
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
|
import { Button } from "@/styles/base-nova/ui-rtl/button"
|
||||||
|
import { ButtonGroup } from "@/styles/base-nova/ui-rtl/button-group"
|
||||||
import {
|
import {
|
||||||
Field,
|
Field,
|
||||||
FieldContent,
|
FieldContent,
|
||||||
@@ -13,13 +16,13 @@ import {
|
|||||||
FieldSeparator,
|
FieldSeparator,
|
||||||
FieldSet,
|
FieldSet,
|
||||||
FieldTitle,
|
FieldTitle,
|
||||||
} from "@/examples/base/ui-rtl/field"
|
} from "@/styles/base-nova/ui-rtl/field"
|
||||||
import { Input } from "@/examples/base/ui-rtl/input"
|
import { Input } from "@/styles/base-nova/ui-rtl/input"
|
||||||
import { RadioGroup, RadioGroupItem } from "@/examples/base/ui-rtl/radio-group"
|
import {
|
||||||
import { Switch } from "@/examples/base/ui-rtl/switch"
|
RadioGroup,
|
||||||
import { IconMinus, IconPlus } from "@tabler/icons-react"
|
RadioGroupItem,
|
||||||
|
} from "@/styles/base-nova/ui-rtl/radio-group"
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
import { Switch } from "@/styles/base-nova/ui-rtl/switch"
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -1,22 +1,6 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { Button } from "@/examples/base/ui-rtl/button"
|
|
||||||
import { ButtonGroup } from "@/examples/base/ui-rtl/button-group"
|
|
||||||
import {
|
|
||||||
DropdownMenu,
|
|
||||||
DropdownMenuContent,
|
|
||||||
DropdownMenuGroup,
|
|
||||||
DropdownMenuItem,
|
|
||||||
DropdownMenuPortal,
|
|
||||||
DropdownMenuRadioGroup,
|
|
||||||
DropdownMenuRadioItem,
|
|
||||||
DropdownMenuSeparator,
|
|
||||||
DropdownMenuSub,
|
|
||||||
DropdownMenuSubContent,
|
|
||||||
DropdownMenuSubTrigger,
|
|
||||||
DropdownMenuTrigger,
|
|
||||||
} from "@/examples/base/ui-rtl/dropdown-menu"
|
|
||||||
import {
|
import {
|
||||||
ArchiveIcon,
|
ArchiveIcon,
|
||||||
ArrowLeftIcon,
|
ArrowLeftIcon,
|
||||||
@@ -30,6 +14,22 @@ import {
|
|||||||
} from "lucide-react"
|
} from "lucide-react"
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
|
import { Button } from "@/styles/base-nova/ui-rtl/button"
|
||||||
|
import { ButtonGroup } from "@/styles/base-nova/ui-rtl/button-group"
|
||||||
|
import {
|
||||||
|
DropdownMenu,
|
||||||
|
DropdownMenuContent,
|
||||||
|
DropdownMenuGroup,
|
||||||
|
DropdownMenuItem,
|
||||||
|
DropdownMenuPortal,
|
||||||
|
DropdownMenuRadioGroup,
|
||||||
|
DropdownMenuRadioItem,
|
||||||
|
DropdownMenuSeparator,
|
||||||
|
DropdownMenuSub,
|
||||||
|
DropdownMenuSubContent,
|
||||||
|
DropdownMenuSubTrigger,
|
||||||
|
DropdownMenuTrigger,
|
||||||
|
} from "@/styles/base-nova/ui-rtl/dropdown-menu"
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { Button } from "@/examples/base/ui-rtl/button"
|
import { AudioLinesIcon, PlusIcon } from "lucide-react"
|
||||||
import { ButtonGroup } from "@/examples/base/ui-rtl/button-group"
|
|
||||||
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
|
import { Button } from "@/styles/base-nova/ui-rtl/button"
|
||||||
|
import { ButtonGroup } from "@/styles/base-nova/ui-rtl/button-group"
|
||||||
import {
|
import {
|
||||||
InputGroup,
|
InputGroup,
|
||||||
InputGroupAddon,
|
InputGroupAddon,
|
||||||
InputGroupButton,
|
InputGroupButton,
|
||||||
InputGroupInput,
|
InputGroupInput,
|
||||||
} from "@/examples/base/ui-rtl/input-group"
|
} from "@/styles/base-nova/ui-rtl/input-group"
|
||||||
import {
|
import {
|
||||||
Tooltip,
|
Tooltip,
|
||||||
TooltipContent,
|
TooltipContent,
|
||||||
TooltipTrigger,
|
TooltipTrigger,
|
||||||
} from "@/examples/base/ui-rtl/tooltip"
|
} from "@/styles/base-nova/ui-rtl/tooltip"
|
||||||
import { AudioLinesIcon, PlusIcon } from "lucide-react"
|
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { Button } from "@/examples/base/ui-rtl/button"
|
|
||||||
import { ButtonGroup } from "@/examples/base/ui-rtl/button-group"
|
|
||||||
import { ArrowLeftIcon, ArrowRightIcon } from "lucide-react"
|
import { ArrowLeftIcon, ArrowRightIcon } from "lucide-react"
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
|
import { Button } from "@/styles/base-nova/ui-rtl/button"
|
||||||
|
import { ButtonGroup } from "@/styles/base-nova/ui-rtl/button-group"
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { Button } from "@/examples/base/ui-rtl/button"
|
import { BotIcon, ChevronDownIcon } from "lucide-react"
|
||||||
import { ButtonGroup } from "@/examples/base/ui-rtl/button-group"
|
|
||||||
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
|
import { Button } from "@/styles/base-nova/ui-rtl/button"
|
||||||
|
import { ButtonGroup } from "@/styles/base-nova/ui-rtl/button-group"
|
||||||
import {
|
import {
|
||||||
Popover,
|
Popover,
|
||||||
PopoverContent,
|
PopoverContent,
|
||||||
PopoverTrigger,
|
PopoverTrigger,
|
||||||
} from "@/examples/base/ui-rtl/popover"
|
} from "@/styles/base-nova/ui-rtl/popover"
|
||||||
import { Separator } from "@/examples/base/ui-rtl/separator"
|
import { Separator } from "@/styles/base-nova/ui-rtl/separator"
|
||||||
import { Textarea } from "@/examples/base/ui-rtl/textarea"
|
import { Textarea } from "@/styles/base-nova/ui-rtl/textarea"
|
||||||
import { BotIcon, ChevronDownIcon } from "lucide-react"
|
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -1,12 +1,15 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
|
import { PlusIcon } from "lucide-react"
|
||||||
|
|
||||||
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
import {
|
import {
|
||||||
Avatar,
|
Avatar,
|
||||||
AvatarFallback,
|
AvatarFallback,
|
||||||
AvatarGroup,
|
AvatarGroup,
|
||||||
AvatarImage,
|
AvatarImage,
|
||||||
} from "@/examples/base/ui-rtl/avatar"
|
} from "@/styles/base-nova/ui-rtl/avatar"
|
||||||
import { Button } from "@/examples/base/ui-rtl/button"
|
import { Button } from "@/styles/base-nova/ui-rtl/button"
|
||||||
import {
|
import {
|
||||||
Empty,
|
Empty,
|
||||||
EmptyContent,
|
EmptyContent,
|
||||||
@@ -14,10 +17,7 @@ import {
|
|||||||
EmptyHeader,
|
EmptyHeader,
|
||||||
EmptyMedia,
|
EmptyMedia,
|
||||||
EmptyTitle,
|
EmptyTitle,
|
||||||
} from "@/examples/base/ui-rtl/empty"
|
} from "@/styles/base-nova/ui-rtl/empty"
|
||||||
import { PlusIcon } from "lucide-react"
|
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { Checkbox } from "@/examples/base/ui-rtl/checkbox"
|
|
||||||
import { Field, FieldLabel } from "@/examples/base/ui-rtl/field"
|
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
|
import { Checkbox } from "@/styles/base-nova/ui-rtl/checkbox"
|
||||||
|
import { Field, FieldLabel } from "@/styles/base-nova/ui-rtl/field"
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { Button } from "@/examples/base/ui-rtl/button"
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
import { Checkbox } from "@/examples/base/ui-rtl/checkbox"
|
import { Button } from "@/styles/base-nova/ui-rtl/button"
|
||||||
|
import { Checkbox } from "@/styles/base-nova/ui-rtl/checkbox"
|
||||||
import {
|
import {
|
||||||
Field,
|
Field,
|
||||||
FieldDescription,
|
FieldDescription,
|
||||||
@@ -10,8 +11,8 @@ import {
|
|||||||
FieldLegend,
|
FieldLegend,
|
||||||
FieldSeparator,
|
FieldSeparator,
|
||||||
FieldSet,
|
FieldSet,
|
||||||
} from "@/examples/base/ui-rtl/field"
|
} from "@/styles/base-nova/ui-rtl/field"
|
||||||
import { Input } from "@/examples/base/ui-rtl/input"
|
import { Input } from "@/styles/base-nova/ui-rtl/input"
|
||||||
import {
|
import {
|
||||||
Select,
|
Select,
|
||||||
SelectContent,
|
SelectContent,
|
||||||
@@ -19,10 +20,8 @@ import {
|
|||||||
SelectItem,
|
SelectItem,
|
||||||
SelectTrigger,
|
SelectTrigger,
|
||||||
SelectValue,
|
SelectValue,
|
||||||
} from "@/examples/base/ui-rtl/select"
|
} from "@/styles/base-nova/ui-rtl/select"
|
||||||
import { Textarea } from "@/examples/base/ui-rtl/textarea"
|
import { Textarea } from "@/styles/base-nova/ui-rtl/textarea"
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
@@ -140,7 +139,7 @@ export function FieldDemo() {
|
|||||||
<div className="grid grid-cols-2 gap-4">
|
<div className="grid grid-cols-2 gap-4">
|
||||||
<Field>
|
<Field>
|
||||||
<FieldLabel htmlFor="rtl-exp-month">{t.month}</FieldLabel>
|
<FieldLabel htmlFor="rtl-exp-month">{t.month}</FieldLabel>
|
||||||
<Select defaultValue="" items={months}>
|
<Select defaultValue="">
|
||||||
<SelectTrigger id="rtl-exp-month">
|
<SelectTrigger id="rtl-exp-month">
|
||||||
<SelectValue placeholder="MM" />
|
<SelectValue placeholder="MM" />
|
||||||
</SelectTrigger>
|
</SelectTrigger>
|
||||||
@@ -157,7 +156,7 @@ export function FieldDemo() {
|
|||||||
</Field>
|
</Field>
|
||||||
<Field>
|
<Field>
|
||||||
<FieldLabel htmlFor="rtl-exp-year">{t.year}</FieldLabel>
|
<FieldLabel htmlFor="rtl-exp-year">{t.year}</FieldLabel>
|
||||||
<Select defaultValue="" items={years}>
|
<Select defaultValue="">
|
||||||
<SelectTrigger id="rtl-exp-year">
|
<SelectTrigger id="rtl-exp-year">
|
||||||
<SelectValue placeholder="YYYY" />
|
<SelectValue placeholder="YYYY" />
|
||||||
</SelectTrigger>
|
</SelectTrigger>
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { Card, CardContent } from "@/examples/base/ui-rtl/card"
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
import { Checkbox } from "@/examples/base/ui-rtl/checkbox"
|
import { Card, CardContent } from "@/styles/base-nova/ui-rtl/card"
|
||||||
|
import { Checkbox } from "@/styles/base-nova/ui-rtl/checkbox"
|
||||||
import {
|
import {
|
||||||
Field,
|
Field,
|
||||||
FieldDescription,
|
FieldDescription,
|
||||||
@@ -10,9 +11,7 @@ import {
|
|||||||
FieldLegend,
|
FieldLegend,
|
||||||
FieldSet,
|
FieldSet,
|
||||||
FieldTitle,
|
FieldTitle,
|
||||||
} from "@/examples/base/ui-rtl/field"
|
} from "@/styles/base-nova/ui-rtl/field"
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { useState } from "react"
|
import { useState } from "react"
|
||||||
|
|
||||||
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
import {
|
import {
|
||||||
Field,
|
Field,
|
||||||
FieldDescription,
|
FieldDescription,
|
||||||
FieldTitle,
|
FieldTitle,
|
||||||
} from "@/examples/base/ui-rtl/field"
|
} from "@/styles/base-nova/ui-rtl/field"
|
||||||
import { Slider } from "@/examples/base/ui-rtl/slider"
|
import { Slider } from "@/styles/base-nova/ui-rtl/slider"
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { DirectionProvider } from "@/examples/base/ui-rtl/direction"
|
|
||||||
import { FieldSeparator } from "@/examples/base/ui-rtl/field"
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
LanguageProvider,
|
LanguageProvider,
|
||||||
LanguageSelector,
|
LanguageSelector,
|
||||||
useLanguageContext,
|
useLanguageContext,
|
||||||
} from "@/components/language-selector"
|
} from "@/components/language-selector"
|
||||||
|
import { DirectionProvider } from "@/styles/base-nova/ui-rtl/direction"
|
||||||
|
import { FieldSeparator } from "@/styles/base-nova/ui-rtl/field"
|
||||||
|
|
||||||
import { AppearanceSettings } from "./appearance-settings"
|
import { AppearanceSettings } from "./appearance-settings"
|
||||||
import { ButtonGroupDemo } from "./button-group-demo"
|
import { ButtonGroupDemo } from "./button-group-demo"
|
||||||
|
|||||||
@@ -1,21 +1,21 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
|
import { IconInfoCircle, IconStar } from "@tabler/icons-react"
|
||||||
|
|
||||||
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
import {
|
import {
|
||||||
InputGroup,
|
InputGroup,
|
||||||
InputGroupAddon,
|
InputGroupAddon,
|
||||||
InputGroupButton,
|
InputGroupButton,
|
||||||
InputGroupInput,
|
InputGroupInput,
|
||||||
} from "@/examples/base/ui-rtl/input-group"
|
} from "@/styles/base-nova/ui-rtl/input-group"
|
||||||
import { Label } from "@/examples/base/ui-rtl/label"
|
import { Label } from "@/styles/base-nova/ui-rtl/label"
|
||||||
import {
|
import {
|
||||||
Popover,
|
Popover,
|
||||||
PopoverContent,
|
PopoverContent,
|
||||||
PopoverTrigger,
|
PopoverTrigger,
|
||||||
} from "@/examples/base/ui-rtl/popover"
|
} from "@/styles/base-nova/ui-rtl/popover"
|
||||||
import { IconInfoCircle, IconStar } from "@tabler/icons-react"
|
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -1,25 +1,5 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import {
|
|
||||||
DropdownMenu,
|
|
||||||
DropdownMenuContent,
|
|
||||||
DropdownMenuItem,
|
|
||||||
DropdownMenuTrigger,
|
|
||||||
} from "@/examples/base/ui-rtl/dropdown-menu"
|
|
||||||
import {
|
|
||||||
InputGroup,
|
|
||||||
InputGroupAddon,
|
|
||||||
InputGroupButton,
|
|
||||||
InputGroupInput,
|
|
||||||
InputGroupText,
|
|
||||||
InputGroupTextarea,
|
|
||||||
} from "@/examples/base/ui-rtl/input-group"
|
|
||||||
import { Separator } from "@/examples/base/ui-rtl/separator"
|
|
||||||
import {
|
|
||||||
Tooltip,
|
|
||||||
TooltipContent,
|
|
||||||
TooltipTrigger,
|
|
||||||
} from "@/examples/base/ui-rtl/tooltip"
|
|
||||||
import {
|
import {
|
||||||
IconCheck,
|
IconCheck,
|
||||||
IconChevronDown,
|
IconChevronDown,
|
||||||
@@ -29,6 +9,26 @@ import {
|
|||||||
import { ArrowUpIcon, Search } from "lucide-react"
|
import { ArrowUpIcon, Search } from "lucide-react"
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
|
import {
|
||||||
|
DropdownMenu,
|
||||||
|
DropdownMenuContent,
|
||||||
|
DropdownMenuItem,
|
||||||
|
DropdownMenuTrigger,
|
||||||
|
} from "@/styles/base-nova/ui-rtl/dropdown-menu"
|
||||||
|
import {
|
||||||
|
InputGroup,
|
||||||
|
InputGroupAddon,
|
||||||
|
InputGroupButton,
|
||||||
|
InputGroupInput,
|
||||||
|
InputGroupText,
|
||||||
|
InputGroupTextarea,
|
||||||
|
} from "@/styles/base-nova/ui-rtl/input-group"
|
||||||
|
import { Separator } from "@/styles/base-nova/ui-rtl/separator"
|
||||||
|
import {
|
||||||
|
Tooltip,
|
||||||
|
TooltipContent,
|
||||||
|
TooltipTrigger,
|
||||||
|
} from "@/styles/base-nova/ui-rtl/tooltip"
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { Button } from "@/examples/base/ui-rtl/button"
|
import { BadgeCheckIcon, ChevronRightIcon } from "lucide-react"
|
||||||
|
|
||||||
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
|
import { Button } from "@/styles/base-nova/ui-rtl/button"
|
||||||
import {
|
import {
|
||||||
Item,
|
Item,
|
||||||
ItemActions,
|
ItemActions,
|
||||||
@@ -8,10 +11,7 @@ import {
|
|||||||
ItemDescription,
|
ItemDescription,
|
||||||
ItemMedia,
|
ItemMedia,
|
||||||
ItemTitle,
|
ItemTitle,
|
||||||
} from "@/examples/base/ui-rtl/item"
|
} from "@/styles/base-nova/ui-rtl/item"
|
||||||
import { BadgeCheckIcon, ChevronRightIcon } from "lucide-react"
|
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -1,47 +1,6 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { useMemo, useState } from "react"
|
import { useMemo, useState } from "react"
|
||||||
import {
|
|
||||||
Avatar,
|
|
||||||
AvatarFallback,
|
|
||||||
AvatarImage,
|
|
||||||
} from "@/examples/base/ui-rtl/avatar"
|
|
||||||
import { Badge } from "@/examples/base/ui-rtl/badge"
|
|
||||||
import {
|
|
||||||
Command,
|
|
||||||
CommandEmpty,
|
|
||||||
CommandGroup,
|
|
||||||
CommandInput,
|
|
||||||
CommandItem,
|
|
||||||
CommandList,
|
|
||||||
} from "@/examples/base/ui-rtl/command"
|
|
||||||
import {
|
|
||||||
DropdownMenu,
|
|
||||||
DropdownMenuCheckboxItem,
|
|
||||||
DropdownMenuContent,
|
|
||||||
DropdownMenuGroup,
|
|
||||||
DropdownMenuItem,
|
|
||||||
DropdownMenuLabel,
|
|
||||||
DropdownMenuSeparator,
|
|
||||||
DropdownMenuSub,
|
|
||||||
DropdownMenuSubContent,
|
|
||||||
DropdownMenuSubTrigger,
|
|
||||||
DropdownMenuTrigger,
|
|
||||||
} from "@/examples/base/ui-rtl/dropdown-menu"
|
|
||||||
import { Field, FieldLabel } from "@/examples/base/ui-rtl/field"
|
|
||||||
import {
|
|
||||||
InputGroup,
|
|
||||||
InputGroupAddon,
|
|
||||||
InputGroupButton,
|
|
||||||
InputGroupTextarea,
|
|
||||||
} from "@/examples/base/ui-rtl/input-group"
|
|
||||||
import { Popover, PopoverContent } from "@/examples/base/ui-rtl/popover"
|
|
||||||
import { Switch } from "@/examples/base/ui-rtl/switch"
|
|
||||||
import {
|
|
||||||
Tooltip,
|
|
||||||
TooltipContent,
|
|
||||||
TooltipTrigger,
|
|
||||||
} from "@/examples/base/ui-rtl/tooltip"
|
|
||||||
import {
|
import {
|
||||||
IconApps,
|
IconApps,
|
||||||
IconArrowUp,
|
IconArrowUp,
|
||||||
@@ -55,6 +14,47 @@ import {
|
|||||||
} from "@tabler/icons-react"
|
} from "@tabler/icons-react"
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
|
import {
|
||||||
|
Avatar,
|
||||||
|
AvatarFallback,
|
||||||
|
AvatarImage,
|
||||||
|
} from "@/styles/base-nova/ui-rtl/avatar"
|
||||||
|
import { Badge } from "@/styles/base-nova/ui-rtl/badge"
|
||||||
|
import {
|
||||||
|
Command,
|
||||||
|
CommandEmpty,
|
||||||
|
CommandGroup,
|
||||||
|
CommandInput,
|
||||||
|
CommandItem,
|
||||||
|
CommandList,
|
||||||
|
} from "@/styles/base-nova/ui-rtl/command"
|
||||||
|
import {
|
||||||
|
DropdownMenu,
|
||||||
|
DropdownMenuCheckboxItem,
|
||||||
|
DropdownMenuContent,
|
||||||
|
DropdownMenuGroup,
|
||||||
|
DropdownMenuItem,
|
||||||
|
DropdownMenuLabel,
|
||||||
|
DropdownMenuSeparator,
|
||||||
|
DropdownMenuSub,
|
||||||
|
DropdownMenuSubContent,
|
||||||
|
DropdownMenuSubTrigger,
|
||||||
|
DropdownMenuTrigger,
|
||||||
|
} from "@/styles/base-nova/ui-rtl/dropdown-menu"
|
||||||
|
import { Field, FieldLabel } from "@/styles/base-nova/ui-rtl/field"
|
||||||
|
import {
|
||||||
|
InputGroup,
|
||||||
|
InputGroupAddon,
|
||||||
|
InputGroupButton,
|
||||||
|
InputGroupTextarea,
|
||||||
|
} from "@/styles/base-nova/ui-rtl/input-group"
|
||||||
|
import { Popover, PopoverContent } from "@/styles/base-nova/ui-rtl/popover"
|
||||||
|
import { Switch } from "@/styles/base-nova/ui-rtl/switch"
|
||||||
|
import {
|
||||||
|
Tooltip,
|
||||||
|
TooltipContent,
|
||||||
|
TooltipTrigger,
|
||||||
|
} from "@/styles/base-nova/ui-rtl/tooltip"
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { Badge } from "@/examples/base/ui-rtl/badge"
|
|
||||||
import { Spinner } from "@/examples/base/ui-rtl/spinner"
|
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
|
import { Badge } from "@/styles/base-nova/ui-rtl/badge"
|
||||||
|
import { Spinner } from "@/styles/base-nova/ui-rtl/spinner"
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { Button } from "@/examples/base/ui-rtl/button"
|
import { useLanguageContext } from "@/components/language-selector"
|
||||||
|
import { Button } from "@/styles/base-nova/ui-rtl/button"
|
||||||
import {
|
import {
|
||||||
Empty,
|
Empty,
|
||||||
EmptyContent,
|
EmptyContent,
|
||||||
@@ -8,10 +9,8 @@ import {
|
|||||||
EmptyHeader,
|
EmptyHeader,
|
||||||
EmptyMedia,
|
EmptyMedia,
|
||||||
EmptyTitle,
|
EmptyTitle,
|
||||||
} from "@/examples/base/ui-rtl/empty"
|
} from "@/styles/base-nova/ui-rtl/empty"
|
||||||
import { Spinner } from "@/examples/base/ui-rtl/spinner"
|
import { Spinner } from "@/styles/base-nova/ui-rtl/spinner"
|
||||||
|
|
||||||
import { useLanguageContext } from "@/components/language-selector"
|
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
ar: {
|
ar: {
|
||||||
|
|||||||
@@ -5,10 +5,10 @@ export default function AppLayout({ children }: { children: React.ReactNode }) {
|
|||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
data-slot="layout"
|
data-slot="layout"
|
||||||
className="relative z-10 flex min-h-svh flex-col bg-background"
|
className="group/layout relative z-10 flex min-h-svh flex-col bg-background has-data-[slot=designer]:h-svh has-data-[slot=designer]:overflow-hidden"
|
||||||
>
|
>
|
||||||
<SiteHeader />
|
<SiteHeader />
|
||||||
<main className="flex flex-1 flex-col">{children}</main>
|
<main className="flex min-h-0 flex-1 flex-col">{children}</main>
|
||||||
<SiteFooter />
|
<SiteFooter />
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,64 +0,0 @@
|
|||||||
import { type Metadata } from "next"
|
|
||||||
import Link from "next/link"
|
|
||||||
|
|
||||||
import { Announcement } from "@/components/announcement"
|
|
||||||
import {
|
|
||||||
PageActions,
|
|
||||||
PageHeader,
|
|
||||||
PageHeaderDescription,
|
|
||||||
PageHeaderHeading,
|
|
||||||
} from "@/components/page-header"
|
|
||||||
import { Button } from "@/registry/new-york-v4/ui/button"
|
|
||||||
|
|
||||||
const title = "Pick a Color. Make it yours."
|
|
||||||
const description =
|
|
||||||
"Try our hand-picked themes. Copy and paste them into your project. New theme editor coming soon."
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
|
||||||
title,
|
|
||||||
description,
|
|
||||||
openGraph: {
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: `/og?title=${encodeURIComponent(
|
|
||||||
title
|
|
||||||
)}&description=${encodeURIComponent(description)}`,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: `/og?title=${encodeURIComponent(
|
|
||||||
title
|
|
||||||
)}&description=${encodeURIComponent(description)}`,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function ThemesLayout({
|
|
||||||
children,
|
|
||||||
}: {
|
|
||||||
children: React.ReactNode
|
|
||||||
}) {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<PageHeader>
|
|
||||||
<Announcement />
|
|
||||||
<PageHeaderHeading>{title}</PageHeaderHeading>
|
|
||||||
<PageHeaderDescription>{description}</PageHeaderDescription>
|
|
||||||
<PageActions>
|
|
||||||
<Button asChild size="sm">
|
|
||||||
<a href="#themes">Browse Themes</a>
|
|
||||||
</Button>
|
|
||||||
<Button asChild variant="ghost" size="sm">
|
|
||||||
<Link href="/docs/theming">Documentation</Link>
|
|
||||||
</Button>
|
|
||||||
</PageActions>
|
|
||||||
</PageHeader>
|
|
||||||
{children}
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
import { CardsDemo } from "@/components/cards"
|
|
||||||
import { ThemeCustomizer } from "@/components/theme-customizer"
|
|
||||||
|
|
||||||
export const dynamic = "force-static"
|
|
||||||
export const revalidate = false
|
|
||||||
|
|
||||||
export default function ThemesPage() {
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<div id="themes" className="container-wrapper scroll-mt-20">
|
|
||||||
<div className="container flex items-center justify-between gap-8 px-6 py-4 md:px-8">
|
|
||||||
<ThemeCustomizer />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div className="container-wrapper flex flex-1 flex-col section-soft pb-6">
|
|
||||||
<div className="container flex flex-1 flex-col theme-container">
|
|
||||||
<CardsDemo />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1,75 +1,3 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { lazy, Suspense } from "react"
|
export { IconPlaceholder } from "@/app/(app)/create/components/icon-placeholder"
|
||||||
import { SquareIcon } from "lucide-react"
|
|
||||||
import type { IconLibraryName } from "shadcn/icons"
|
|
||||||
|
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
|
||||||
|
|
||||||
const IconLucide = lazy(() =>
|
|
||||||
import("@/registry/icons/icon-lucide").then((mod) => ({
|
|
||||||
default: mod.IconLucide,
|
|
||||||
}))
|
|
||||||
)
|
|
||||||
|
|
||||||
const IconTabler = lazy(() =>
|
|
||||||
import("@/registry/icons/icon-tabler").then((mod) => ({
|
|
||||||
default: mod.IconTabler,
|
|
||||||
}))
|
|
||||||
)
|
|
||||||
|
|
||||||
const IconHugeicons = lazy(() =>
|
|
||||||
import("@/registry/icons/icon-hugeicons").then((mod) => ({
|
|
||||||
default: mod.IconHugeicons,
|
|
||||||
}))
|
|
||||||
)
|
|
||||||
|
|
||||||
const IconPhosphor = lazy(() =>
|
|
||||||
import("@/registry/icons/icon-phosphor").then((mod) => ({
|
|
||||||
default: mod.IconPhosphor,
|
|
||||||
}))
|
|
||||||
)
|
|
||||||
|
|
||||||
const IconRemixicon = lazy(() =>
|
|
||||||
import("@/registry/icons/icon-remixicon").then((mod) => ({
|
|
||||||
default: mod.IconRemixicon,
|
|
||||||
}))
|
|
||||||
)
|
|
||||||
|
|
||||||
// Preload all icon renderer modules so switching libraries is instant.
|
|
||||||
// These warm the browser module cache; React.lazy resolves immediately
|
|
||||||
// for modules that are already loaded.
|
|
||||||
void import("@/registry/icons/icon-lucide")
|
|
||||||
void import("@/registry/icons/icon-tabler")
|
|
||||||
void import("@/registry/icons/icon-hugeicons")
|
|
||||||
void import("@/registry/icons/icon-phosphor")
|
|
||||||
void import("@/registry/icons/icon-remixicon")
|
|
||||||
|
|
||||||
export function IconPlaceholder({
|
|
||||||
...props
|
|
||||||
}: {
|
|
||||||
[K in IconLibraryName]: string
|
|
||||||
} & React.ComponentProps<"svg">) {
|
|
||||||
const [{ iconLibrary }] = useDesignSystemSearchParams()
|
|
||||||
const iconName = props[iconLibrary]
|
|
||||||
|
|
||||||
if (!iconName) {
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Suspense fallback={<SquareIcon {...props} />}>
|
|
||||||
{iconLibrary === "lucide" && <IconLucide name={iconName} {...props} />}
|
|
||||||
{iconLibrary === "tabler" && <IconTabler name={iconName} {...props} />}
|
|
||||||
{iconLibrary === "hugeicons" && (
|
|
||||||
<IconHugeicons name={iconName} {...props} />
|
|
||||||
)}
|
|
||||||
{iconLibrary === "phosphor" && (
|
|
||||||
<IconPhosphor name={iconName} {...props} />
|
|
||||||
)}
|
|
||||||
{iconLibrary === "remixicon" && (
|
|
||||||
<IconRemixicon name={iconName} {...props} />
|
|
||||||
)}
|
|
||||||
</Suspense>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,57 +0,0 @@
|
|||||||
"use client"
|
|
||||||
|
|
||||||
import * as React from "react"
|
|
||||||
import useSWR from "swr"
|
|
||||||
|
|
||||||
import { DEFAULT_CONFIG } from "@/registry/config"
|
|
||||||
import { useDesignSystemSearchParams } from "@/app/(create)/lib/search-params"
|
|
||||||
|
|
||||||
const RESET_DIALOG_KEY = "create:reset-dialog-open"
|
|
||||||
|
|
||||||
export function useReset() {
|
|
||||||
const [params, setParams] = useDesignSystemSearchParams()
|
|
||||||
const { data: showResetDialog = false, mutate: setShowResetDialogData } =
|
|
||||||
useSWR<boolean>(RESET_DIALOG_KEY, {
|
|
||||||
fallbackData: false,
|
|
||||||
revalidateOnFocus: false,
|
|
||||||
revalidateIfStale: false,
|
|
||||||
revalidateOnReconnect: false,
|
|
||||||
})
|
|
||||||
|
|
||||||
const reset = React.useCallback(() => {
|
|
||||||
setParams({
|
|
||||||
base: params.base,
|
|
||||||
style: DEFAULT_CONFIG.style,
|
|
||||||
baseColor: DEFAULT_CONFIG.baseColor,
|
|
||||||
theme: DEFAULT_CONFIG.theme,
|
|
||||||
chartColor: DEFAULT_CONFIG.chartColor,
|
|
||||||
iconLibrary: DEFAULT_CONFIG.iconLibrary,
|
|
||||||
font: DEFAULT_CONFIG.font,
|
|
||||||
fontHeading: DEFAULT_CONFIG.fontHeading,
|
|
||||||
menuAccent: DEFAULT_CONFIG.menuAccent,
|
|
||||||
menuColor: DEFAULT_CONFIG.menuColor,
|
|
||||||
radius: DEFAULT_CONFIG.radius,
|
|
||||||
template: DEFAULT_CONFIG.template,
|
|
||||||
item: "preview",
|
|
||||||
})
|
|
||||||
}, [setParams, params.base])
|
|
||||||
|
|
||||||
const handleShowResetDialogChange = React.useCallback(
|
|
||||||
(open: boolean) => {
|
|
||||||
void setShowResetDialogData(open, { revalidate: false })
|
|
||||||
},
|
|
||||||
[setShowResetDialogData]
|
|
||||||
)
|
|
||||||
|
|
||||||
const confirmReset = React.useCallback(() => {
|
|
||||||
reset()
|
|
||||||
void setShowResetDialogData(false, { revalidate: false })
|
|
||||||
}, [reset, setShowResetDialogData])
|
|
||||||
|
|
||||||
return {
|
|
||||||
reset,
|
|
||||||
showResetDialog,
|
|
||||||
setShowResetDialog: handleShowResetDialogChange,
|
|
||||||
confirmReset,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -4,7 +4,7 @@ import {
|
|||||||
designSystemConfigSchema,
|
designSystemConfigSchema,
|
||||||
type DesignSystemConfig,
|
type DesignSystemConfig,
|
||||||
} from "@/registry/config"
|
} from "@/registry/config"
|
||||||
import { resolvePresetOverrides } from "@/app/(create)/lib/preset-query"
|
import { resolvePresetOverrides } from "@/app/(app)/create/lib/preset-query"
|
||||||
|
|
||||||
// Parses design system config from URL search params.
|
// Parses design system config from URL search params.
|
||||||
export function parseDesignSystemConfig(searchParams: URLSearchParams) {
|
export function parseDesignSystemConfig(searchParams: URLSearchParams) {
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ import { isPresetCode } from "shadcn/preset"
|
|||||||
import { registryItemSchema } from "shadcn/schema"
|
import { registryItemSchema } from "shadcn/schema"
|
||||||
|
|
||||||
import { buildRegistryBase } from "@/registry/config"
|
import { buildRegistryBase } from "@/registry/config"
|
||||||
|
import { getPresetCode } from "@/app/(app)/create/lib/preset-code"
|
||||||
import { parseDesignSystemConfig } from "@/app/(create)/init/parse-config"
|
import { parseDesignSystemConfig } from "@/app/(create)/init/parse-config"
|
||||||
import { getPresetCode } from "@/app/(create)/lib/preset-code"
|
|
||||||
|
|
||||||
export async function GET(request: NextRequest) {
|
export async function GET(request: NextRequest) {
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -2,9 +2,9 @@ import { after, NextResponse, type NextRequest } from "next/server"
|
|||||||
import { track } from "@vercel/analytics/server"
|
import { track } from "@vercel/analytics/server"
|
||||||
import { isPresetCode } from "shadcn/preset"
|
import { isPresetCode } from "shadcn/preset"
|
||||||
|
|
||||||
|
import { getPresetCode } from "@/app/(app)/create/lib/preset-code"
|
||||||
|
import { buildV0Payload } from "@/app/(app)/create/lib/v0"
|
||||||
import { parseDesignSystemConfig } from "@/app/(create)/init/parse-config"
|
import { parseDesignSystemConfig } from "@/app/(create)/init/parse-config"
|
||||||
import { getPresetCode } from "@/app/(create)/lib/preset-code"
|
|
||||||
import { buildV0Payload } from "@/app/(create)/lib/v0"
|
|
||||||
|
|
||||||
export async function GET(request: NextRequest) {
|
export async function GET(request: NextRequest) {
|
||||||
try {
|
try {
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user