/* Copyright (C) 2023-2026 QuantumNous This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . For commercial licensing, please contact support@quantumnous.com */ import * as React from 'react' import { mergeProps } from '@base-ui/react/merge-props' import { useRender } from '@base-ui/react/use-render' import { cva, type VariantProps } from 'class-variance-authority' import { cn } from '@/lib/utils' import { Separator } from '@/components/ui/separator' function ItemGroup({ className, ...props }: React.ComponentProps<'div'>) { return (
) } function ItemSeparator({ className, ...props }: React.ComponentProps) { return ( ) } const itemVariants = cva( 'group/item flex w-full flex-wrap items-center rounded-lg border text-sm transition-colors duration-100 outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 [a]:transition-colors [a]:hover:bg-muted', { variants: { variant: { default: 'border-transparent', outline: 'border-border', muted: 'border-transparent bg-muted/50', }, size: { default: 'gap-2.5 px-3 py-2.5', sm: 'gap-2.5 px-3 py-2.5', xs: 'gap-2 px-2.5 py-2 in-data-[slot=dropdown-menu-content]:p-0', }, }, defaultVariants: { variant: 'default', size: 'default', }, } ) function Item({ className, variant = 'default', size = 'default', render, ...props }: useRender.ComponentProps<'div'> & VariantProps) { return useRender({ defaultTagName: 'div', props: mergeProps<'div'>( { className: cn(itemVariants({ variant, size, className })), }, props ), render, state: { slot: 'item', variant, size, }, }) } const itemMediaVariants = cva( 'flex shrink-0 items-center justify-center gap-2 group-has-data-[slot=item-description]/item:translate-y-0.5 group-has-data-[slot=item-description]/item:self-start [&_svg]:pointer-events-none', { variants: { variant: { default: 'bg-transparent', icon: "[&_svg:not([class*='size-'])]:size-4", image: 'size-10 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 }: React.ComponentProps<'div'> & VariantProps) { return (
) } function ItemContent({ className, ...props }: React.ComponentProps<'div'>) { return (
) } function ItemTitle({ className, ...props }: React.ComponentProps<'div'>) { return (
) } function ItemDescription({ className, ...props }: React.ComponentProps<'p'>) { return (

a:hover]:text-primary line-clamp-2 text-left text-sm leading-normal font-normal group-data-[size=xs]/item:text-xs [&>a]:underline [&>a]:underline-offset-4', className )} {...props} /> ) } function ItemActions({ className, ...props }: React.ComponentProps<'div'>) { return (

) } function ItemHeader({ className, ...props }: React.ComponentProps<'div'>) { return (
) } function ItemFooter({ className, ...props }: React.ComponentProps<'div'>) { return (
) } export { Item, ItemMedia, ItemContent, ItemActions, ItemGroup, ItemSeparator, ItemTitle, ItemDescription, ItemHeader, ItemFooter, }