1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
'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'
);
|