import * as React from "react"
import { mergeProps } from "@base-ui/react/merge-props"
import { useRender } from "@base-ui/react/use-render"
import { cva } from "class-variance-authority";
import { cn } from "@/lib/utils"
import { Separator } from "@/registry/optics/separator"
function ItemGroup({
className = "",
...props
}) {
return (
<div
role="list"
data-slot="item-group"
className={cn(
"gap-4 has-[[data-size=sm]]:gap-2.5 has-[[data-size=xs]]:gap-2 group/item-group flex w-full flex-col",
className
)}
{...props} />
);
}
function ItemSeparator({
className = "",
...props
}) {
return (
<Separator
data-slot="item-separator"
orientation="horizontal"
className={cn("my-2", className)}
{...props} />
);
}
const itemVariants = cva(
"[a]:hover:bg-muted rounded-md border text-xs/relaxed w-full group/item focus-visible:border-ring focus-visible:ring-ring/50 flex items-center flex-wrap outline-none transition-colors duration-100 focus-visible:ring-[3px] [a]:transition-colors",
{
variants: {
variant: {
default: "border-transparent",
outline: "border-border",
muted: "bg-muted/50 border-transparent",
},
size: {
default: "gap-2.5 px-3 py-2.5",
sm: "gap-2.5 px-3 py-2.5",
xs: "gap-2.5 px-2.5 py-2 [[data-slot=dropdown-menu-content]_&]:p-0",
},
},
defaultVariants: {
variant: "default",
size: "default",
},
}
)
function Item({
className = "",
variant = "default",
size = "default",
render = undefined,
...props
}) {
return useRender({
defaultTagName: "div",
props: mergeProps({
className: cn(itemVariants({ variant, size, className })),
}, props),
render,
state: {
slot: "item",
variant,
size,
},
});
}
const itemMediaVariants = cva(
"gap-2 group-has-[[data-slot=item-description]]/item:translate-y-0.5 group-has-[[data-slot=item-description]]/item:self-start flex shrink-0 items-center justify-center [&_svg]:pointer-events-none",
{
variants: {
variant: {
default: "bg-transparent",
icon: "[&_svg:not([class*='size-'])]:size-4",
image: "size-8 overflow-hidden rounded-sm group-data-[size=sm]/item:size-8 group-data-[size=xs]/item:size-6 [&_img]:size-full [&_img]:object-cover",
},
},
defaultVariants: {
variant: "default",
},
}
)
function ItemMedia({
className = "",
variant = "default",
...props
}) {
return (
<div
data-slot="item-media"
data-variant={variant}
className={cn(itemMediaVariants({ variant, className }))}
{...props} />
);
}
function ItemContent({
className = "",
...props
}) {
return (
<div
data-slot="item-content"
className={cn(
"gap-1 group-data-[size=xs]/item:gap-0.5 flex flex-1 flex-col [&+[data-slot=item-content]]:flex-none",
className
)}
{...props} />
);
}
function ItemTitle({
className = "",
...props
}) {
return (
<div
data-slot="item-title"
className={cn(
"gap-2 text-xs/relaxed leading-snug font-medium underline-offset-4 line-clamp-1 flex w-fit items-center",
className
)}
{...props} />
);
}
function ItemDescription({
className = "",
...props
}) {
return (
<p
data-slot="item-description"
className={cn(
"text-muted-foreground text-left text-xs/relaxed [&>a:hover]:text-primary line-clamp-2 font-normal [&>a]:underline [&>a]:underline-offset-4",
className
)}
{...props} />
);
}
function ItemActions({
className = "",
...props
}) {
return (
<div
data-slot="item-actions"
className={cn("gap-2 flex items-center", className)}
{...props} />
);
}
function ItemHeader({
className = "",
...props
}) {
return (
<div
data-slot="item-header"
className={cn("gap-2 flex basis-full items-center justify-between", className)}
{...props} />
);
}
function ItemFooter({
className = "",
...props
}) {
return (
<div
data-slot="item-footer"
className={cn("gap-2 flex basis-full items-center justify-between", className)}
{...props} />
);
}
export {
Item,
ItemMedia,
ItemContent,
ItemActions,
ItemGroup,
ItemSeparator,
ItemTitle,
ItemDescription,
ItemHeader,
ItemFooter,
}