-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add switch, nav menu, breadcrumb
- Loading branch information
Showing
4 changed files
with
236 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
import { Slot } from "@radix-ui/react-slot"; | ||
import { ChevronRightIcon, EllipsisIcon } from "lucide-react"; | ||
import { type ComponentProps, type ComponentPropsWithoutRef, type ReactNode, forwardRef } from "react"; | ||
import { cn } from "./cn"; | ||
|
||
const Breadcrumb = forwardRef< | ||
HTMLElement, | ||
ComponentPropsWithoutRef<"nav"> & { | ||
separator?: ReactNode; | ||
} | ||
>(({ ...props }, ref) => <nav ref={ref} aria-label="breadcrumb" {...props} />); | ||
|
||
const BreadcrumbList = forwardRef<HTMLOListElement, ComponentPropsWithoutRef<"ol">>(({ className, ...props }, ref) => ( | ||
<ol | ||
ref={ref} | ||
className={cn( | ||
"flex flex-wrap items-center gap-1.5 break-words text-muted-foreground text-sm sm:gap-2.5", | ||
className, | ||
)} | ||
{...props} | ||
/> | ||
)); | ||
|
||
const BreadcrumbItem = forwardRef<HTMLLIElement, ComponentPropsWithoutRef<"li">>(({ className, ...props }, ref) => ( | ||
<li ref={ref} className={cn("inline-flex items-center gap-1.5", className)} {...props} /> | ||
)); | ||
|
||
const BreadcrumbLink = forwardRef< | ||
HTMLAnchorElement, | ||
ComponentPropsWithoutRef<"a"> & { | ||
asChild?: boolean; | ||
} | ||
>(({ asChild, className, ...props }, ref) => { | ||
const Comp = asChild ? Slot : "a"; | ||
|
||
return <Comp ref={ref} className={cn("transition-colors hover:text-foreground", className)} {...props} />; | ||
}); | ||
|
||
const BreadcrumbPage = forwardRef<HTMLSpanElement, ComponentPropsWithoutRef<"span">>(({ className, ...props }, ref) => ( | ||
<span | ||
ref={ref} | ||
role="link" | ||
aria-disabled="true" | ||
aria-current="page" | ||
className={cn("font-normal text-foreground", className)} | ||
{...props} | ||
/> | ||
)); | ||
|
||
const BreadcrumbSeparator = ({ children, className, ...props }: ComponentProps<"li">) => ( | ||
<li role="presentation" aria-hidden="true" className={cn("[&>svg]:size-3.5", className)} {...props}> | ||
{children ?? <ChevronRightIcon />} | ||
</li> | ||
); | ||
|
||
const BreadcrumbEllipsis = ({ className, ...props }: ComponentProps<"span">) => ( | ||
<span | ||
role="presentation" | ||
aria-hidden="true" | ||
className={cn("flex h-9 w-9 items-center justify-center", className)} | ||
{...props} | ||
> | ||
<EllipsisIcon className="h-4 w-4" /> | ||
<span className="sr-only">More</span> | ||
</span> | ||
); | ||
|
||
BreadcrumbEllipsis.displayName = "BreadcrumbElipssis"; | ||
BreadcrumbSeparator.displayName = "BreadcrumbSeparator"; | ||
BreadcrumbPage.displayName = "BreadcrumbPage"; | ||
BreadcrumbLink.displayName = "BreadcrumbLink"; | ||
Breadcrumb.displayName = "Breadcrumb"; | ||
BreadcrumbList.displayName = "BreadcrumbList"; | ||
BreadcrumbItem.displayName = "BreadcrumbItem"; | ||
|
||
export { | ||
Breadcrumb, | ||
BreadcrumbList, | ||
BreadcrumbItem, | ||
BreadcrumbLink, | ||
BreadcrumbPage, | ||
BreadcrumbSeparator, | ||
BreadcrumbEllipsis, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu"; | ||
import { cva } from "class-variance-authority"; | ||
import { ChevronDownIcon } from "lucide-react"; | ||
import { type ComponentPropsWithoutRef, type ElementRef, forwardRef } from "react"; | ||
import { cn } from "./cn"; | ||
|
||
const NavigationMenu = forwardRef< | ||
ElementRef<typeof NavigationMenuPrimitive.Root>, | ||
ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Root> | ||
>(({ className, children, ...props }, ref) => ( | ||
<NavigationMenuPrimitive.Root | ||
ref={ref} | ||
className={cn("relative z-10 flex max-w-max flex-1 items-center justify-center", className)} | ||
{...props} | ||
> | ||
{children} | ||
<NavigationMenuViewport /> | ||
</NavigationMenuPrimitive.Root> | ||
)); | ||
|
||
const NavigationMenuList = forwardRef< | ||
ElementRef<typeof NavigationMenuPrimitive.List>, | ||
ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.List> | ||
>(({ className, ...props }, ref) => ( | ||
<NavigationMenuPrimitive.List | ||
ref={ref} | ||
className={cn("group flex flex-1 list-none items-center justify-center space-x-1", className)} | ||
{...props} | ||
/> | ||
)); | ||
|
||
const NavigationMenuItem = NavigationMenuPrimitive.Item; | ||
|
||
const navigationMenuTriggerStyle = cva( | ||
"group inline-flex h-9 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[active]:bg-accent/50 data-[state=open]:bg-accent/50", | ||
); | ||
|
||
const NavigationMenuTrigger = forwardRef< | ||
ElementRef<typeof NavigationMenuPrimitive.Trigger>, | ||
ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Trigger> | ||
>(({ className, children, ...props }, ref) => ( | ||
<NavigationMenuPrimitive.Trigger | ||
ref={ref} | ||
className={cn(navigationMenuTriggerStyle(), "group", className)} | ||
{...props} | ||
> | ||
{children}{" "} | ||
<ChevronDownIcon | ||
className="relative top-[1px] ml-1 h-3 w-3 transition duration-300 group-data-[state=open]:rotate-180" | ||
aria-hidden="true" | ||
/> | ||
</NavigationMenuPrimitive.Trigger> | ||
)); | ||
|
||
const NavigationMenuContent = forwardRef< | ||
ElementRef<typeof NavigationMenuPrimitive.Content>, | ||
ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Content> | ||
>(({ className, ...props }, ref) => ( | ||
<NavigationMenuPrimitive.Content | ||
ref={ref} | ||
className={cn( | ||
"data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52 data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52 top-0 left-0 w-full md:absolute md:w-auto data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out", | ||
className, | ||
)} | ||
{...props} | ||
/> | ||
)); | ||
|
||
const NavigationMenuLink = NavigationMenuPrimitive.Link; | ||
|
||
const NavigationMenuViewport = forwardRef< | ||
ElementRef<typeof NavigationMenuPrimitive.Viewport>, | ||
ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Viewport> | ||
>(({ className, ...props }, ref) => ( | ||
<div className={cn("absolute top-full left-0 flex justify-center")}> | ||
<NavigationMenuPrimitive.Viewport | ||
className={cn( | ||
"data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full origin-top-center overflow-hidden rounded-md border bg-popover text-popover-foreground shadow md:w-[var(--radix-navigation-menu-viewport-width)] data-[state=closed]:animate-out data-[state=open]:animate-in", | ||
className, | ||
)} | ||
ref={ref} | ||
{...props} | ||
/> | ||
</div> | ||
)); | ||
|
||
const NavigationMenuIndicator = forwardRef< | ||
ElementRef<typeof NavigationMenuPrimitive.Indicator>, | ||
ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Indicator> | ||
>(({ className, ...props }, ref) => ( | ||
<NavigationMenuPrimitive.Indicator | ||
ref={ref} | ||
className={cn( | ||
"data-[state=hidden]:fade-out data-[state=visible]:fade-in top-full z-[1] flex h-1.5 items-end justify-center overflow-hidden data-[state=hidden]:animate-out data-[state=visible]:animate-in", | ||
className, | ||
)} | ||
{...props} | ||
> | ||
<div className="relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm bg-border shadow-md" /> | ||
</NavigationMenuPrimitive.Indicator> | ||
)); | ||
|
||
NavigationMenuIndicator.displayName = NavigationMenuPrimitive.Indicator.displayName; | ||
NavigationMenuViewport.displayName = NavigationMenuPrimitive.Viewport.displayName; | ||
NavigationMenuContent.displayName = NavigationMenuPrimitive.Content.displayName; | ||
NavigationMenuTrigger.displayName = NavigationMenuPrimitive.Trigger.displayName; | ||
NavigationMenu.displayName = NavigationMenuPrimitive.Root.displayName; | ||
NavigationMenuList.displayName = NavigationMenuPrimitive.List.displayName; | ||
|
||
export { | ||
navigationMenuTriggerStyle, | ||
NavigationMenu, | ||
NavigationMenuList, | ||
NavigationMenuItem, | ||
NavigationMenuContent, | ||
NavigationMenuTrigger, | ||
NavigationMenuLink, | ||
NavigationMenuIndicator, | ||
NavigationMenuViewport, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
"use client"; | ||
|
||
import * as SwitchPrimitives from "@radix-ui/react-switch"; | ||
import { type ComponentPropsWithoutRef, type ElementRef, forwardRef } from "react"; | ||
import { cn } from "./cn"; | ||
|
||
const Switch = forwardRef< | ||
ElementRef<typeof SwitchPrimitives.Root>, | ||
ComponentPropsWithoutRef<typeof SwitchPrimitives.Root> | ||
>(({ className, ...props }, ref) => ( | ||
<SwitchPrimitives.Root | ||
className={cn( | ||
"peer inline-flex h-5 w-9 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent shadow-sm transition-colors disabled:cursor-not-allowed data-[state=checked]:bg-primary data-[state=unchecked]:bg-input disabled:opacity-50 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background", | ||
className, | ||
)} | ||
{...props} | ||
ref={ref} | ||
> | ||
<SwitchPrimitives.Thumb | ||
className={cn( | ||
"pointer-events-none block h-4 w-4 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-4 data-[state=unchecked]:translate-x-0", | ||
)} | ||
/> | ||
</SwitchPrimitives.Root> | ||
)); | ||
|
||
Switch.displayName = SwitchPrimitives.Root.displayName; | ||
|
||
export { Switch }; |