mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
88 lines
2.9 KiB
TypeScript
88 lines
2.9 KiB
TypeScript
'use client';
|
|
|
|
import * as React from 'react';
|
|
|
|
import type { DialogProps } from '@radix-ui/react-dialog';
|
|
|
|
import {
|
|
cn,
|
|
createPrimitiveElement,
|
|
withCn,
|
|
withRef,
|
|
withVariants,
|
|
} from '@udecode/cn';
|
|
import { Command as CommandPrimitive } from 'cmdk';
|
|
import { Search } from 'lucide-react';
|
|
|
|
import { Dialog, DialogContent, DialogTitle } from './dialog';
|
|
import { inputVariants } from './input';
|
|
|
|
export const Command = withCn(
|
|
CommandPrimitive,
|
|
'flex size-full flex-col overflow-hidden rounded-md bg-popover text-popover-foreground'
|
|
);
|
|
|
|
export function CommandDialog({ children, ...props }: DialogProps) {
|
|
return (
|
|
<Dialog {...props}>
|
|
<DialogContent className="overflow-hidden p-0 shadow-lg">
|
|
<DialogTitle className="sr-only">Command Dialog</DialogTitle>
|
|
<Command className="[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:size-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:size-5">
|
|
{children}
|
|
</Command>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|
|
|
|
export const CommandInput = withRef<typeof CommandPrimitive.Input>(
|
|
({ className, ...props }, ref) => (
|
|
<div className="flex items-center border-b px-3" cmdk-input-wrapper="">
|
|
<Search className="mr-2 size-4 shrink-0 opacity-50" />
|
|
<CommandPrimitive.Input
|
|
ref={ref}
|
|
className={cn(
|
|
'flex h-11 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
</div>
|
|
)
|
|
);
|
|
|
|
export const InputCommand = withVariants(
|
|
CommandPrimitive.Input,
|
|
inputVariants,
|
|
['variant']
|
|
);
|
|
|
|
export const CommandList = withCn(
|
|
CommandPrimitive.List,
|
|
'max-h-[500px] overflow-y-auto overflow-x-hidden'
|
|
);
|
|
|
|
export const CommandEmpty = withCn(
|
|
CommandPrimitive.Empty,
|
|
'py-6 text-center text-sm'
|
|
);
|
|
|
|
export const CommandGroup = withCn(
|
|
CommandPrimitive.Group,
|
|
'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]]:text-muted-foreground'
|
|
);
|
|
|
|
export const CommandSeparator = withCn(
|
|
CommandPrimitive.Separator,
|
|
'-mx-1 h-px bg-border'
|
|
);
|
|
|
|
export const CommandItem = withCn(
|
|
CommandPrimitive.Item,
|
|
'relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled=true]:pointer-events-none data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0'
|
|
);
|
|
|
|
export const CommandShortcut = withCn(
|
|
createPrimitiveElement('span'),
|
|
'ml-auto text-xs tracking-widest text-muted-foreground'
|
|
);
|