Spaces:
Sleeping
Sleeping
File size: 18,158 Bytes
05c5ed5 def2bad 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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 | "use client";
import { useObjectState } from "@/hooks/use-object-state";
import { UserPreferences } from "app-types/user";
import { authClient } from "auth/client";
import { fetcher } from "lib/utils";
import {
AlertCircle,
ArrowLeft,
LinkIcon,
Loader,
Share2,
Trash2,
} from "lucide-react";
import { useTranslations } from "next-intl";
import { useMemo, useState } from "react";
import { toast } from "sonner";
import useSWR from "swr";
import { safe } from "ts-safe";
import { Button } from "ui/button";
import { ExamplePlaceholder } from "ui/example-placeholder";
import { Input } from "ui/input";
import { Label } from "ui/label";
import { Skeleton } from "ui/skeleton";
import { Textarea } from "ui/textarea";
import { McpServerCustomizationContent } from "./mcp-customization-popup";
import { MCPServerInfo } from "app-types/mcp";
import { useMcpList } from "@/hooks/queries/use-mcp-list";
import { ChatExportSummary } from "app-types/chat-export";
import { formatDistanceToNow } from "date-fns";
import { notify } from "lib/notify";
export function UserInstructionsContent() {
const t = useTranslations();
const responseStyleExamples = useMemo(
() => [
t("Chat.ChatPreferences.responseStyleExample1"),
t("Chat.ChatPreferences.responseStyleExample2"),
t("Chat.ChatPreferences.responseStyleExample3"),
t("Chat.ChatPreferences.responseStyleExample4"),
],
[],
);
const professionExamples = useMemo(
() => [
t("Chat.ChatPreferences.professionExample1"),
t("Chat.ChatPreferences.professionExample2"),
t("Chat.ChatPreferences.professionExample3"),
t("Chat.ChatPreferences.professionExample4"),
t("Chat.ChatPreferences.professionExample5"),
],
[],
);
const { data: session } = authClient.useSession();
const [preferences, setPreferences] = useObjectState<UserPreferences>({
displayName: "",
responseStyleExample: "",
profession: "",
botName: "",
});
const {
data,
mutate: fetchPreferences,
isLoading,
isValidating,
} = useSWR<UserPreferences>("/api/user/preferences", fetcher, {
fallback: {},
dedupingInterval: 0,
onSuccess: (data) => {
setPreferences(data);
},
});
const [isSaving, setIsSaving] = useState(false);
const savePreferences = async () => {
safe(() => setIsSaving(true))
.ifOk(() =>
fetch("/api/user/preferences", {
method: "PUT",
body: JSON.stringify(preferences),
}),
)
.ifOk(() => fetchPreferences())
.watch((result) => {
if (result.isOk)
toast.success(t("Chat.ChatPreferences.preferencesSaved"));
else toast.error(t("Chat.ChatPreferences.failedToSavePreferences"));
})
.watch(() => setIsSaving(false));
};
const isDiff = useMemo(() => {
if ((data?.displayName || "") !== (preferences.displayName || ""))
return true;
if ((data?.profession || "") !== (preferences.profession || ""))
return true;
if (
(data?.responseStyleExample || "") !==
(preferences.responseStyleExample || "")
)
return true;
if ((data?.botName || "") !== (preferences.botName || "")) return true;
return false;
}, [preferences, data]);
return (
<div className="flex flex-col">
<h3 className="text-xl font-semibold">
{t("Chat.ChatPreferences.userInstructions")}
</h3>
<p className="text-sm text-muted-foreground py-2 pb-6">
{t("Chat.ChatPreferences.userInstructionsDescription")}
</p>
<div className="flex flex-col gap-6 w-full">
<div className="flex flex-col gap-2">
<Label>{t("Chat.ChatPreferences.whatShouldWeCallYou")}</Label>
{isLoading ? (
<Skeleton className="h-9" />
) : (
<Input
placeholder={session?.user.name || ""}
value={preferences.displayName}
onChange={(e) => {
setPreferences({
displayName: e.target.value,
});
}}
/>
)}
</div>
<div className="flex flex-col gap-2">
<Label>{t("Chat.ChatPreferences.botName")}</Label>
{isLoading ? (
<Skeleton className="h-9" />
) : (
<Input
placeholder="better-chatbot"
value={preferences.botName}
onChange={(e) => {
setPreferences({
botName: e.target.value,
});
}}
/>
)}
</div>
<div className="flex flex-col gap-2 text-foreground flex-1">
<Label>{t("Chat.ChatPreferences.whatBestDescribesYourWork")}</Label>
<div className="relative w-full">
{isLoading ? (
<Skeleton className="h-9" />
) : (
<>
<Input
value={preferences.profession}
onChange={(e) => {
setPreferences({
profession: e.target.value,
});
}}
/>
{(preferences.profession?.length ?? 0) === 0 && (
<div className="absolute left-0 top-0 w-full h-full py-2 px-4 pointer-events-none">
<ExamplePlaceholder placeholder={professionExamples} />
</div>
)}
</>
)}
</div>
</div>
<div className="flex flex-col gap-2 text-foreground">
<Label>
{t(
"Chat.ChatPreferences.whatPersonalPreferencesShouldBeTakenIntoAccountInResponses",
)}
</Label>
<span className="text-xs text-muted-foreground"></span>
<div className="relative w-full">
{isLoading ? (
<Skeleton className="h-60" />
) : (
<>
<Textarea
className="h-60 resize-none"
value={preferences.responseStyleExample}
onChange={(e) => {
setPreferences({
responseStyleExample: e.target.value,
});
}}
/>
{(preferences.responseStyleExample?.length ?? 0) === 0 && (
<div className="absolute left-0 top-0 w-full h-full py-2 px-4 pointer-events-none">
<ExamplePlaceholder placeholder={responseStyleExamples} />
</div>
)}
</>
)}
</div>
</div>
</div>
{isDiff && !isValidating && (
<div className="flex pt-4 items-center justify-end fade-in animate-in duration-300">
<Button variant="ghost">{t("Common.cancel")}</Button>
<Button disabled={isSaving || isLoading} onClick={savePreferences}>
{t("Common.save")}
{isSaving && <Loader className="size-4 ml-2 animate-spin" />}
</Button>
</div>
)}
</div>
);
}
export function MCPInstructionsContent() {
const t = useTranslations("");
const [search, setSearch] = useState("");
const [mcpServer, setMcpServer] = useState<
(MCPServerInfo & { id: string }) | null
>(null);
const { isLoading, data: mcpList } = useMcpList();
if (mcpServer) {
return (
<McpServerCustomizationContent
title={
<div className="flex flex-col">
<button
onClick={() => setMcpServer(null)}
className="flex items-center gap-2 text-muted-foreground text-sm hover:text-foreground transition-colors mb-8"
>
<ArrowLeft className="size-3" />
{t("Common.back")}
</button>
{mcpServer.name}
</div>
}
mcpServerInfo={mcpServer}
/>
);
}
return (
<div className="flex flex-col">
<h3 className="text-xl font-semibold">
{t("Chat.ChatPreferences.mcpInstructions")}
</h3>
<p className="text-sm text-muted-foreground py-2 pb-6">
{t("Chat.ChatPreferences.mcpInstructionsDescription")}
</p>
<div className="flex flex-col gap-6 w-full">
<div className="flex flex-col gap-2 text-foreground flex-1">
<Input
value={search}
onChange={(e) => {
setSearch(e.target.value);
}}
placeholder={t("Common.search")}
/>
</div>
<div className="flex flex-col gap-2 text-foreground flex-1">
{isLoading ? (
Array.from({ length: 10 }).map((_, index) => (
<Skeleton key={index} className="h-14" />
))
) : mcpList?.length === 0 ? (
<div className="flex flex-col gap-2 text-foreground flex-1">
<p className="text-center py-8 text-muted-foreground">
{t("MCP.configureYourMcpServerConnectionSettings")}
</p>
</div>
) : (
<div className="flex gap-2">
{mcpList?.map((mcp) => (
<Button
onClick={() => setMcpServer({ ...mcp, id: mcp.id })}
variant={"outline"}
size={"lg"}
key={mcp.id}
>
<p>{mcp.name}</p>
{mcp.error ? (
<AlertCircle className="size-3.5 text-destructive" />
) : mcp.status == "loading" ? (
<Loader className="size-3.5 animate-spin" />
) : null}
</Button>
))}
</div>
)}
</div>
</div>
</div>
);
}
export function ExportsManagementContent() {
const t = useTranslations();
const {
data: exports,
mutate: refetchExports,
isLoading,
} = useSWR<ChatExportSummary[]>("/api/export", fetcher);
const [deletingId, setDeletingId] = useState<string | null>(null);
const handleDelete = async (exportId: string) => {
const answer = await notify.confirm({
description: t("Chat.ChatPreferences.confirmDeleteExport"),
});
if (!answer) {
return;
}
try {
setDeletingId(exportId);
const response = await fetch(`/api/export/${exportId}`, {
method: "DELETE",
});
if (!response.ok) {
throw new Error("Failed to delete export");
}
toast.success(t("Chat.ChatPreferences.exportDeleted"));
refetchExports();
} catch (_error) {
toast.error(t("Chat.ChatPreferences.failedToDeleteExport"));
} finally {
setDeletingId(null);
}
};
const handleCopyLink = (exportId: string) => {
const link = `${window.location.origin}/export/${exportId}`;
navigator.clipboard.writeText(link);
toast.success(t("Chat.ChatPreferences.linkCopied"));
};
return (
<div className="flex flex-col">
<h3 className="text-xl font-semibold">
{t("Chat.ChatPreferences.myExports")}
</h3>
<p className="text-sm text-muted-foreground py-2 pb-6">
{t("Chat.ChatPreferences.myExportsDescription")}
</p>
<div className="flex flex-col gap-4 w-full">
{isLoading ? (
Array.from({ length: 5 }).map((_, index) => (
<Skeleton key={index} className="h-24" />
))
) : !exports || exports.length === 0 ? (
<div className="flex flex-col items-center justify-center py-12 text-center">
<Share2 className="size-12 text-muted-foreground/50 mb-4" />
<p className="text-muted-foreground">
{t("Chat.ChatPreferences.noExportsYet")}
</p>
<p className="text-sm text-muted-foreground mt-2">
{t("Chat.ChatPreferences.exportHint")}
</p>
</div>
) : (
<div className="space-y-3">
{exports.map((exportItem) => (
<div
key={exportItem.id}
onClick={() => {
window.open(`/export/${exportItem.id}`, "_blank");
}}
className="border rounded-lg p-4 hover:bg-accent/50 transition-colors cursor-pointer"
>
<div className="flex items-start justify-between gap-4">
<div className="flex-1 min-w-0">
<h4 className="font-medium truncate">{exportItem.title}</h4>
<div className="flex flex-col sm:flex-row sm:items-center gap-1 sm:gap-3 mt-2 text-sm text-muted-foreground">
<span>
{t("Chat.ChatPreferences.exported")}{" "}
{formatDistanceToNow(new Date(exportItem.exportedAt), {
addSuffix: true,
})}
</span>
{exportItem.expiresAt && (
<>
<span className="hidden sm:inline">•</span>
<span>
{t("Chat.ChatPreferences.expires")}{" "}
{formatDistanceToNow(
new Date(exportItem.expiresAt),
{
addSuffix: true,
},
)}
</span>
</>
)}
{exportItem.commentCount > 0 && (
<>
<span className="hidden sm:inline">•</span>
<span>
{exportItem.commentCount}{" "}
{t("Chat.ChatPreferences.comments")}
</span>
</>
)}
</div>
</div>
<div className="flex items-center gap-2">
<Button
variant="ghost"
size="icon"
onClick={(e) => {
e.preventDefault();
e.stopPropagation();
handleCopyLink(exportItem.id);
}}
title={t("Chat.ChatPreferences.copyLink")}
>
<LinkIcon className="size-4" />
</Button>
<Button
variant="ghost"
size="icon"
onClick={(e) => {
e.preventDefault();
e.stopPropagation();
handleDelete(exportItem.id);
}}
disabled={deletingId === exportItem.id}
title={t("Common.delete")}
>
{deletingId === exportItem.id ? (
<Loader className="size-4 animate-spin" />
) : (
<Trash2 className="size-4 hover:text-destructive" />
)}
</Button>
</div>
</div>
</div>
))}
</div>
)}
</div>
</div>
);
}
export function APIKeysManagementContent() {
const t = useTranslations();
authClient.useSession();
const [preferences, setPreferences] = useObjectState<UserPreferences>({
apiKeys: {},
});
const {
data,
mutate: fetchPreferences,
isLoading,
isValidating,
} = useSWR<UserPreferences>("/api/user/preferences", fetcher, {
fallback: {},
dedupingInterval: 0,
onSuccess: (data) => {
setPreferences({ apiKeys: data.apiKeys || {} });
},
});
const [isSaving, setIsSaving] = useState(false);
const savePreferences = async () => {
safe(() => setIsSaving(true))
.ifOk(() =>
fetch("/api/user/preferences", {
method: "PUT",
body: JSON.stringify({ apiKeys: preferences.apiKeys }),
}),
)
.ifOk(() => fetchPreferences())
.watch((result) => {
if (result.isOk)
toast.success(t("Chat.ChatPreferences.preferencesSaved") || "API Keys saved");
else toast.error(t("Chat.ChatPreferences.failedToSavePreferences") || "Failed to save API Keys");
})
.watch(() => setIsSaving(false));
};
const isDiff = useMemo(() => {
const currentKeys = JSON.stringify(data?.apiKeys || {});
const newKeys = JSON.stringify(preferences.apiKeys || {});
return currentKeys !== newKeys;
}, [preferences.apiKeys, data?.apiKeys]);
return (
<div className="flex flex-col">
<h3 className="text-xl font-semibold">
API Keys
</h3>
<p className="text-sm text-muted-foreground py-2 pb-6">
Configure your personal API keys for different providers. These keys are stored securely in your user profile.
</p>
<div className="flex flex-col gap-6 w-full">
<div className="flex flex-col gap-2">
<Label>NVIDIA NIM API Key</Label>
{isLoading ? (
<Skeleton className="h-9" />
) : (
<Input
type="password"
placeholder="nvapi-..."
value={preferences.apiKeys?.["nvidia_nim"] || ""}
onChange={(e) => {
setPreferences({
apiKeys: {
...(preferences.apiKeys || {}),
"nvidia_nim": e.target.value,
},
});
}}
/>
)}
</div>
</div>
{isDiff && !isValidating && (
<div className="flex pt-4 items-center justify-end fade-in animate-in duration-300">
<Button variant="ghost">{t("Common.cancel")}</Button>
<Button disabled={isSaving || isLoading} onClick={savePreferences}>
{t("Common.save")}
{isSaving && <Loader className="size-4 ml-2 animate-spin" />}
</Button>
</div>
)}
</div>
);
}
|