Spaces:
Sleeping
Sleeping
File size: 5,987 Bytes
05c5ed5 | 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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | "use client";
import { appStore } from "@/app/store";
import {
getShortcutKeyList,
isShortcutEvent,
Shortcuts,
} from "lib/keyboard-shortcuts";
import {
Check,
CheckIcon,
ClipboardCheck,
Infinity,
PenOff,
Settings2,
} from "lucide-react";
import { useEffect, useState } from "react";
import { Button } from "ui/button";
import { useTranslations } from "next-intl";
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuGroup,
DropdownMenuItem,
DropdownMenuLabel,
DropdownMenuSeparator,
DropdownMenuShortcut,
DropdownMenuTrigger,
} from "ui/dropdown-menu";
import { useShallow } from "zustand/shallow";
import { Tooltip, TooltipContent, TooltipTrigger } from "ui/tooltip";
import { capitalizeFirstLetter, cn, createDebounce } from "lib/utils";
const debounce = createDebounce();
export const ToolModeDropdown = ({ disabled }: { disabled?: boolean }) => {
const t = useTranslations("Chat.Tool");
const [toolChoice, appStoreMutate] = appStore(
useShallow((state) => [state.toolChoice, state.mutate]),
);
const [open, setOpen] = useState(false);
const [toolChoiceChangeInfo, setToolChoiceChangeInfo] = useState(false);
useEffect(() => {
const handleKeyDown = (e: KeyboardEvent) => {
if (isShortcutEvent(e, Shortcuts.toolMode)) {
e.preventDefault();
e.stopPropagation();
appStoreMutate(({ toolChoice }) => {
return {
toolChoice:
toolChoice == "auto"
? "manual"
: toolChoice == "manual"
? "none"
: "auto",
};
});
setToolChoiceChangeInfo(true);
debounce(() => {
setToolChoiceChangeInfo(false);
}, 1000);
}
};
window.addEventListener("keydown", handleKeyDown);
return () => window.removeEventListener("keydown", handleKeyDown);
}, []);
return (
<DropdownMenu open={open} onOpenChange={setOpen}>
<DropdownMenuTrigger asChild disabled={disabled}>
<div className="relative">
<Tooltip open={toolChoiceChangeInfo}>
<TooltipTrigger asChild>
<span className="absolute inset-0 -z-10" />
</TooltipTrigger>
<TooltipContent className="flex items-center gap-2">
{capitalizeFirstLetter(toolChoice)}
<CheckIcon className="size-2.5" />
</TooltipContent>
</Tooltip>
<Tooltip>
<TooltipTrigger asChild>
<Button
variant={"ghost"}
size={"sm"}
className={cn(
"rounded-full p-2! data-[state=open]:bg-input! hover:bg-input!",
toolChoice == "none" && "text-muted-foreground",
open && "bg-input!",
)}
onClick={() => setOpen(true)}
>
<Settings2 />
</Button>
</TooltipTrigger>
<TooltipContent className="flex items-center gap-2" side="top">
{t("selectToolMode")}
<span className="text-muted-foreground ml-2">
{getShortcutKeyList(Shortcuts.toolMode).join("")}
</span>
</TooltipContent>
</Tooltip>
</div>
</DropdownMenuTrigger>
<DropdownMenuContent align="start" side="top">
<DropdownMenuLabel className="text-muted-foreground flex items-center gap-2">
{t("selectToolMode")}
<DropdownMenuShortcut>
<span className="text-xs text-muted-foreground bg-muted rounded-md px-2 py-0.5">
{getShortcutKeyList(Shortcuts.toolMode).join("")}
</span>
</DropdownMenuShortcut>
</DropdownMenuLabel>
<DropdownMenuSeparator />
<DropdownMenuGroup>
<DropdownMenuItem
onClick={() => appStoreMutate({ toolChoice: "auto" })}
>
<div className="flex flex-col gap-2 w-full">
<div className="flex items-center gap-2">
<Infinity />
<span className="font-bold">{t("auto")}</span>
{toolChoice == "auto" && <Check className="ml-auto" />}
</div>
<p className="text-xs text-muted-foreground">
{t("autoToolModeDescription")}
</p>
</div>
</DropdownMenuItem>
<div className="px-2 py-1">
<DropdownMenuSeparator />
</div>
<DropdownMenuItem
onClick={() => appStoreMutate({ toolChoice: "manual" })}
>
<div className="flex flex-col gap-2 w-full">
<div className="flex items-center gap-2">
<ClipboardCheck />
<span className="font-bold">{t("manual")}</span>
{toolChoice == "manual" && <Check className="ml-auto" />}
</div>
<p className="text-xs text-muted-foreground">
{t("manualToolModeDescription")}
</p>
</div>
</DropdownMenuItem>
<div className="px-2 py-1">
<DropdownMenuSeparator />
</div>
<DropdownMenuItem
onClick={() => appStoreMutate({ toolChoice: "none" })}
>
<div className="flex flex-col gap-2 w-full">
<div className="flex items-center gap-2">
<PenOff />
<span className="font-bold">{t("none")}</span>
<span className="text-xs text-muted-foreground ml-4">
{t("mentionOnly")}
</span>
{toolChoice == "none" && <Check className="ml-auto" />}
</div>
<p className="text-xs text-muted-foreground">
{t("noneToolModeDescription")}
</p>
</div>
</DropdownMenuItem>
</DropdownMenuGroup>
</DropdownMenuContent>
</DropdownMenu>
);
};
|