120 lines
2.4 KiB
TypeScript
120 lines
2.4 KiB
TypeScript
import { Slot } from 'radix-ui';
|
|
import * as React from 'react';
|
|
|
|
import { cn } from '@/lib/utils';
|
|
import { CaretRightIcon, DotsThreeIcon } from '@phosphor-icons/react';
|
|
|
|
function Breadcrumb({ className, ...props }: React.ComponentProps<'nav'>) {
|
|
return (
|
|
<nav
|
|
aria-label="breadcrumb"
|
|
data-slot="breadcrumb"
|
|
className={cn(className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function BreadcrumbList({ className, ...props }: React.ComponentProps<'ol'>) {
|
|
return (
|
|
<ol
|
|
data-slot="breadcrumb-list"
|
|
className={cn(
|
|
'text-muted-foreground gap-1.5 text-xs/relaxed flex flex-wrap items-center wrap-break-word',
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function BreadcrumbItem({ className, ...props }: React.ComponentProps<'li'>) {
|
|
return (
|
|
<li
|
|
data-slot="breadcrumb-item"
|
|
className={cn('gap-1 inline-flex items-center', className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function BreadcrumbLink({
|
|
asChild,
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<'a'> & {
|
|
asChild?: boolean;
|
|
}) {
|
|
const Comp = asChild ? Slot.Root : 'a';
|
|
|
|
return (
|
|
<Comp
|
|
data-slot="breadcrumb-link"
|
|
className={cn('hover:text-foreground transition-colors', className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function BreadcrumbPage({ className, ...props }: React.ComponentProps<'span'>) {
|
|
return (
|
|
<span
|
|
data-slot="breadcrumb-page"
|
|
role="link"
|
|
aria-disabled="true"
|
|
aria-current="page"
|
|
className={cn('text-foreground font-normal', className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function BreadcrumbSeparator({
|
|
children,
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<'li'>) {
|
|
return (
|
|
<li
|
|
data-slot="breadcrumb-separator"
|
|
role="presentation"
|
|
aria-hidden="true"
|
|
className={cn('[&>svg]:size-3.5', className)}
|
|
{...props}
|
|
>
|
|
{children ?? <CaretRightIcon />}
|
|
</li>
|
|
);
|
|
}
|
|
|
|
function BreadcrumbEllipsis({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<'span'>) {
|
|
return (
|
|
<span
|
|
data-slot="breadcrumb-ellipsis"
|
|
role="presentation"
|
|
aria-hidden="true"
|
|
className={cn(
|
|
'size-4 [&>svg]:size-3.5 flex items-center justify-center',
|
|
className,
|
|
)}
|
|
{...props}
|
|
>
|
|
<DotsThreeIcon />
|
|
<span className="sr-only">More</span>
|
|
</span>
|
|
);
|
|
}
|
|
|
|
export {
|
|
Breadcrumb,
|
|
BreadcrumbEllipsis,
|
|
BreadcrumbItem,
|
|
BreadcrumbLink,
|
|
BreadcrumbList,
|
|
BreadcrumbPage,
|
|
BreadcrumbSeparator,
|
|
};
|