| import { MagnifyingGlass } from "@phosphor-icons/react"; | |
| import { cn } from "@reactive-resume/utils"; | |
| import { Command as CommandPrimitive } from "cmdk"; | |
| import { forwardRef } from "react"; | |
| export const Command = forwardRef< | |
| React.ElementRef<typeof CommandPrimitive>, | |
| React.ComponentPropsWithoutRef<typeof CommandPrimitive> | |
| >(({ className, ...props }, ref) => ( | |
| <CommandPrimitive | |
| ref={ref} | |
| className={cn("flex size-full flex-col overflow-hidden rounded border", className)} | |
| {...props} | |
| /> | |
| )); | |
| Command.displayName = CommandPrimitive.displayName; | |
| export const CommandInput = forwardRef< | |
| React.ElementRef<typeof CommandPrimitive.Input>, | |
| React.ComponentPropsWithoutRef<typeof CommandPrimitive.Input> | |
| >(({ className, ...props }, ref) => ( | |
| <div className="flex items-center border-b px-3" cmdk-input-wrapper=""> | |
| <MagnifyingGlass size={16} className="mr-1 shrink-0 opacity-50" /> | |
| <CommandPrimitive.Input | |
| ref={ref} | |
| className={cn( | |
| "flex h-9 w-full rounded border-none bg-transparent py-3 text-sm outline-none focus:ring-transparent disabled:cursor-not-allowed disabled:opacity-50", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| </div> | |
| )); | |
| CommandInput.displayName = CommandPrimitive.Input.displayName; | |
| export const CommandList = forwardRef< | |
| React.ElementRef<typeof CommandPrimitive.List>, | |
| React.ComponentPropsWithoutRef<typeof CommandPrimitive.List> | |
| >(({ className, ...props }, ref) => ( | |
| <CommandPrimitive.List | |
| ref={ref} | |
| className={cn("max-h-[300px] overflow-y-auto overflow-x-hidden", className)} | |
| {...props} | |
| /> | |
| )); | |
| CommandList.displayName = CommandPrimitive.List.displayName; | |
| export const CommandEmpty = forwardRef< | |
| React.ElementRef<typeof CommandPrimitive.Empty>, | |
| React.ComponentPropsWithoutRef<typeof CommandPrimitive.Empty> | |
| >((props, ref) => ( | |
| <CommandPrimitive.Empty ref={ref} className="py-6 text-center text-sm" {...props} /> | |
| )); | |
| CommandEmpty.displayName = CommandPrimitive.Empty.displayName; | |
| export const CommandGroup = forwardRef< | |
| React.ElementRef<typeof CommandPrimitive.Group>, | |
| React.ComponentPropsWithoutRef<typeof CommandPrimitive.Group> | |
| >(({ className, ...props }, ref) => ( | |
| <CommandPrimitive.Group | |
| ref={ref} | |
| className={cn( | |
| "overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:opacity-60", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| )); | |
| CommandGroup.displayName = CommandPrimitive.Group.displayName; | |
| export const CommandSeparator = forwardRef< | |
| React.ElementRef<typeof CommandPrimitive.Separator>, | |
| React.ComponentPropsWithoutRef<typeof CommandPrimitive.Separator> | |
| >(({ className, ...props }, ref) => ( | |
| <CommandPrimitive.Separator | |
| ref={ref} | |
| className={cn("-mx-1 h-px bg-border", className)} | |
| {...props} | |
| /> | |
| )); | |
| CommandSeparator.displayName = CommandPrimitive.Separator.displayName; | |
| export const CommandItem = forwardRef< | |
| React.ElementRef<typeof CommandPrimitive.Item>, | |
| React.ComponentPropsWithoutRef<typeof CommandPrimitive.Item> | |
| >(({ className, ...props }, ref) => ( | |
| <CommandPrimitive.Item | |
| ref={ref} | |
| className={cn( | |
| "relative flex cursor-default select-none items-center rounded px-2 py-1.5 text-sm outline-none aria-selected:bg-secondary/40 aria-selected:text-secondary-foreground data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| )); | |
| CommandItem.displayName = CommandPrimitive.Item.displayName; | |