Command
Fast, composable, unstyled command menu.
No results found.
Calendar
Search Emojis
Calculator
Profile
⌘P
Billing
⌘B
Settings
⌘S
Installation
Install Dialog
if you haven't already.
Install the following dependencies:
pnpm add cmdk
Copy and paste the following code into your project.
"use client";
import type { DialogProps } from "@radix-ui/react-dialog";
import { Command as CommandPrimitive } from "cmdk";
import { SearchIcon } from "lucide-react";
import { cn } from "~/utils/tailwind";
import { Dialog, DialogContent, DialogTitle } from "~/components/ui/Dialog";
import {
menuSeparatorVariants,
Shortcut,
ShortcutGroup,
} from "~/components/ui/_Menu";
import { VisuallyHidden } from "~/components/ui/_VisuallyHidden";
function Command({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive>) {
return (
<CommandPrimitive
className={cn(
"flex size-full flex-col overflow-hidden rounded-3 bg-popover text-popover-foreground",
className,
)}
{...props}
/>
);
}
const CommandDialog = ({ children, ...props }: DialogProps) => {
return (
<Dialog {...props}>
<VisuallyHidden>
<DialogTitle>Command</DialogTitle>
</VisuallyHidden>
<DialogContent
showCloseButton={false}
className="overflow-hidden rounded-3 p-0"
>
<Command>{children}</Command>
</DialogContent>
</Dialog>
);
};
function CommandInput({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive.Input>) {
return (
<div
className={cn(
"relative flex items-center border-b pl-9 pr-3",
"[&>svg]:absolute [&>svg]:left-3 [&>svg]:top-1/2 [&>svg]:size-4 [&>svg]:-translate-y-1/2 [&>svg]:text-muted-foreground",
"[&>[cmdk-input]]:h-11 [&>[cmdk-input]]:w-full [&>[cmdk-input]]:items-center [&>[cmdk-input]]:bg-transparent [&>[cmdk-input]]:text-3.5 [&>[cmdk-input]]:outline-none",
"[&>[cmdk-input]]:placeholder:text-muted-foreground",
"[&>[cmdk-input]]:disabled:cursor-not-allowed [&>[cmdk-input]]:disabled:opacity-50",
className,
)}
>
<SearchIcon />
<CommandPrimitive.Input {...props} />
</div>
);
}
function CommandList({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive.List>) {
return (
<CommandPrimitive.List
className={cn(
"max-h-72 overflow-y-auto overflow-x-hidden overscroll-contain",
className,
)}
{...props}
/>
);
}
function CommandEmpty({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive.Empty>) {
return (
<CommandPrimitive.Empty
className={cn("px-3.5 pb-3.5 pt-3 text-3.5", className)}
{...props}
/>
);
}
function CommandGroup({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive.Group>) {
return (
<CommandPrimitive.Group
className={cn(
"overflow-hidden p-1.5 text-foreground",
"[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-3 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground",
className,
)}
{...props}
/>
);
}
function CommandSeparator({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive.Separator>) {
return (
<CommandPrimitive.Separator
className={menuSeparatorVariants({
className: cn("my-0", className),
})}
{...props}
/>
);
}
function CommandItem({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive.Item>) {
return (
<CommandPrimitive.Item
className={cn(
"relative flex h-10 cursor-pointer select-none items-center rounded-1.5 pl-8.5 pr-3 text-3.5 outline-none",
"data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground",
"data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50",
"[&>svg]:left-2 [&>svg]:top-1/2 [&>svg]:-translate-y-1/2 [&>svg]:pointer-events-none [&>svg]:absolute [&>svg]:size-4.5",
className,
)}
{...props}
/>
);
}
function CommandShortcutGroup(props: React.ComponentProps<"div">) {
return <ShortcutGroup {...props} />;
}
function CommandShortcut(props: React.ComponentProps<"span">) {
return <Shortcut {...props} />;
}
export {
Command,
CommandDialog,
CommandInput,
CommandList,
CommandEmpty,
CommandGroup,
CommandItem,
CommandShortcutGroup,
CommandShortcut,
CommandSeparator,
};
Update the import paths to match your project setup.
Usage
import {
Command,
CommandDialog,
CommandEmpty,
CommandGroup,
CommandInput,
CommandItem,
CommandList,
CommandSeparator,
CommandShortcut,
} from "~/components/ui/Command";
<Command>
<CommandInput placeholder="Type a command or search..." />
<CommandList>
<CommandEmpty>No results found.</CommandEmpty>
<CommandGroup heading="Suggestions">
<CommandItem>Calendar</CommandItem>
<CommandItem>Search Emoji</CommandItem>
<CommandItem>Calculator</CommandItem>
</CommandGroup>
<CommandSeparator />
<CommandGroup heading="Settings">
<CommandItem>Profile</CommandItem>
<CommandItem>Billing</CommandItem>
<CommandItem>Settings</CommandItem>
</CommandGroup>
</CommandList>
</Command>
Examples
Dialog
Press
⌘J