'use client' import * as React from 'react' import type { VariantProps } from 'class-variance-authority' import { Button } from '@admin/components/ui/button' import { Input } from '@admin/components/ui/input' import { Textarea } from '@admin/components/ui/textarea' import { cn } from '@admin/utils/shared/cn' import { cva } from 'class-variance-authority' function InputGroup({ className, ...props }: React.ComponentProps<'div'>) { return (
[data-align=block-end]]:h-auto has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-start]]:h-auto has-[>[data-align=block-start]]:flex-col has-[>textarea]:h-auto has-[>[data-align=block-end]]:[&>input]:pt-3 has-[>[data-align=block-start]]:[&>input]:pb-3 has-[>[data-align=inline-end]]:[&>input]:pr-1.5 has-[>[data-align=inline-start]]:[&>input]:pl-1.5', className )} {...props} /> ) } const inputGroupAddonVariants = cva( "flex h-auto cursor-text items-center justify-center gap-2 py-2 text-sm font-medium text-muted-foreground select-none group-data-[disabled=true]/input-group:opacity-50 **:data-[slot=kbd]:rounded-4xl **:data-[slot=kbd]:bg-muted-foreground/10 **:data-[slot=kbd]:px-1.5 [&>svg:not([class*='size-'])]:size-4", { variants: { align: { 'inline-start': 'order-first pl-3 has-[>button]:-ml-1 has-[>kbd]:ml-[-0.15rem]', 'inline-end': 'order-last pr-3 has-[>button]:-mr-1 has-[>kbd]:mr-[-0.15rem]', 'block-start': 'order-first w-full justify-start px-3 pt-3 group-has-[>input]/input-group:pt-3 [.border-b]:pb-3', 'block-end': 'order-last w-full justify-start px-3 pb-3 group-has-[>input]/input-group:pb-3 [.border-t]:pt-3' } }, defaultVariants: { align: 'inline-start' } } ) function InputGroupAddon({ className, align = 'inline-start', ...props }: React.ComponentProps<'div'> & VariantProps) { return ( // oxlint-disable-next-line jsx-a11y/no-noninteractive-element-interactions
{ if ((e.target as HTMLElement).closest('button')) { return } e.currentTarget.parentElement?.querySelector('input')?.focus() }} onKeyDown={(e) => { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault() e.currentTarget.parentElement?.querySelector('input')?.focus() } }} {...props} /> ) } const inputGroupButtonVariants = cva('flex items-center gap-2 rounded-4xl text-sm shadow-none', { variants: { size: { xs: "h-6 gap-1 px-1.5 [&>svg:not([class*='size-'])]:size-3.5", sm: '', 'icon-xs': 'size-6 p-0 has-[>svg]:p-0', 'icon-sm': 'size-8 p-0 has-[>svg]:p-0' } }, defaultVariants: { size: 'xs' } }) function InputGroupButton({ className, type = 'button', variant = 'ghost', size = 'xs', ...props }: Omit, 'size' | 'type'> & VariantProps & { type?: 'button' | 'submit' | 'reset' }) { return (