-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommand.tsx
104 lines (92 loc) · 3.59 KB
/
command.tsx
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
"use client";
import type { DialogProps } from "@radix-ui/react-dialog";
import { Command as CommandPrimitive } from "cmdk";
import { SearchIcon } from "lucide-react";
import type { ComponentProps, HTMLAttributes } from "react";
import type { Simplify } from "type-fest";
import { cn } from "./cn";
import { Dialog, DialogContent } from "./dialog";
function Command({ className, ...rest }: ComponentProps<typeof CommandPrimitive>) {
return (
<CommandPrimitive
className={cn(
"flex h-full w-full flex-col overflow-hidden rounded-md bg-popover text-popover-foreground",
className,
)}
{...rest}
/>
);
}
export type CommandDialogProps = Simplify<DialogProps>;
function CommandDialog({ children, ...rest }: CommandDialogProps) {
return (
<Dialog {...rest}>
<DialogContent className="overflow-hidden p-0">
<Command className="[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5">
{children}
</Command>
</DialogContent>
</Dialog>
);
}
function CommandInput({ className, ...rest }: ComponentProps<typeof CommandPrimitive.Input>) {
return (
<div className="flex items-center border-b px-3" cmdk-input-wrapper="">
<SearchIcon className="mr-2 size-4 shrink-0 opacity-50" />
<CommandPrimitive.Input
className={cn(
"flex h-10 w-full rounded-md bg-transparent py-3 text-sm outline-hidden placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50",
className,
)}
{...rest}
/>
</div>
);
}
function CommandList({ className, ...rest }: ComponentProps<typeof CommandPrimitive.List>) {
return (
<CommandPrimitive.List className={cn("max-h-[300px] overflow-y-auto overflow-x-hidden", className)} {...rest} />
);
}
function CommandEmpty({ ...rest }: ComponentProps<typeof CommandPrimitive.Empty>) {
return <CommandPrimitive.Empty className="py-6 text-center text-sm" {...rest} />;
}
function CommandGroup({ className, ...rest }: ComponentProps<typeof CommandPrimitive.Group>) {
return (
<CommandPrimitive.Group
className={cn(
"overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group-heading]]:text-xs",
className,
)}
{...rest}
/>
);
}
function CommandSeparator({ className, ...rest }: ComponentProps<typeof CommandPrimitive.Separator>) {
return <CommandPrimitive.Separator className={cn("-mx-1 h-px bg-border", className)} {...rest} />;
}
function CommandItem({ className, ...rest }: ComponentProps<typeof CommandPrimitive.Item>) {
return (
<CommandPrimitive.Item
className={cn(
"relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-hidden aria-selected:bg-accent aria-selected:text-accent-foreground data-[disabled='true']:pointer-events-none data-[disabled='true']:opacity-50",
className,
)}
{...rest}
/>
);
}
function CommandShortcut({ className, ...rest }: HTMLAttributes<HTMLSpanElement>) {
return <span className={cn("ml-auto text-muted-foreground text-xs tracking-widest", className)} {...rest} />;
}
export {
Command,
CommandDialog,
CommandInput,
CommandList,
CommandEmpty,
CommandGroup,
CommandItem,
CommandShortcut,
CommandSeparator,
};