Spaces:
Sleeping
Sleeping
File size: 7,815 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 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 | "use client";
import { useSidebar } from "ui/sidebar";
import { Tooltip, TooltipContent, TooltipTrigger } from "ui/tooltip";
import {
AudioWaveformIcon,
ChevronDown,
MessageCircleDashed,
PanelLeft,
} from "lucide-react";
import { Button } from "ui/button";
import { Separator } from "ui/separator";
import { useEffect, useMemo } from "react";
import { ThreadDropdown } from "../thread-dropdown";
import { appStore } from "@/app/store";
import { usePathname, useSearchParams } from "next/navigation";
import { useShallow } from "zustand/shallow";
import { getShortcutKeyList, Shortcuts } from "lib/keyboard-shortcuts";
import { useTranslations } from "next-intl";
import { TextShimmer } from "ui/text-shimmer";
import { buildReturnUrl } from "lib/admin/navigation-utils";
import { BackButton } from "@/components/layouts/back-button";
export function AppHeader() {
const t = useTranslations();
const [appStoreMutate] = appStore(useShallow((state) => [state.mutate]));
const { toggleSidebar, open } = useSidebar();
const currentPaths = usePathname();
const searchParams = useSearchParams();
const showActionButtons = useMemo(() => {
if (currentPaths.startsWith("/admin")) {
return false;
}
return true;
}, [currentPaths]);
const componentByPage = useMemo(() => {
if (currentPaths.startsWith("/chat/")) {
return <ThreadDropdownComponent />;
}
if (
currentPaths.startsWith("/admin/users/") &&
currentPaths.split("/").length > 3
) {
const searchPageParams = searchParams.get("searchPageParams");
const returnUrl = buildReturnUrl("/admin/users", searchPageParams || "");
return (
<BackButton
data-testid="admin-users-back-button"
returnUrl={returnUrl}
title={t("Admin.Users.backToUsers")}
/>
);
}
}, [currentPaths, searchParams]);
return (
<header className="sticky top-0 z-50 flex items-center px-3 py-2">
<Tooltip>
<TooltipTrigger asChild>
<Button
variant="ghost"
size="icon"
aria-label="Toggle Sidebar"
onClick={(e) => {
e.preventDefault();
e.stopPropagation();
toggleSidebar();
}}
data-testid="sidebar-toggle"
data-state={open ? "open" : "closed"}
>
<PanelLeft />
</Button>
</TooltipTrigger>
<TooltipContent align="start" side="bottom">
<div className="flex items-center gap-2">
{t("KeyboardShortcuts.toggleSidebar")}
<div className="text-xs text-muted-foreground flex items-center gap-1">
{getShortcutKeyList(Shortcuts.toggleSidebar).map((key) => (
<span
key={key}
className="w-5 h-5 flex items-center justify-center bg-muted rounded "
>
{key}
</span>
))}
</div>
</div>
</TooltipContent>
</Tooltip>
{componentByPage}
<div className="flex-1" />
{showActionButtons && (
<div className="flex items-center gap-2">
<Tooltip>
<TooltipTrigger asChild>
<Button
size={"icon"}
variant={"ghost"}
className="bg-secondary/40"
onClick={() => {
appStoreMutate((state) => ({
voiceChat: {
...state.voiceChat,
isOpen: true,
agentId: undefined,
},
}));
}}
>
<AudioWaveformIcon className="size-4" />
</Button>
</TooltipTrigger>
<TooltipContent align="end" side="bottom">
<div className="text-xs flex items-center gap-2">
{t("KeyboardShortcuts.toggleVoiceChat")}
<div className="text-xs text-muted-foreground flex items-center gap-1">
{getShortcutKeyList(Shortcuts.toggleVoiceChat).map((key) => (
<span
className="w-5 h-5 flex items-center justify-center bg-muted rounded "
key={key}
>
{key}
</span>
))}
</div>
</div>
</TooltipContent>
</Tooltip>
<Tooltip>
<TooltipTrigger asChild>
<Button
size={"icon"}
variant={"secondary"}
className="bg-secondary/40"
onClick={() => {
appStoreMutate((state) => ({
temporaryChat: {
...state.temporaryChat,
isOpen: !state.temporaryChat.isOpen,
},
}));
}}
>
<MessageCircleDashed className="size-4" />
</Button>
</TooltipTrigger>
<TooltipContent align="end" side="bottom">
<div className="text-xs flex items-center gap-2">
{t("KeyboardShortcuts.toggleTemporaryChat")}
<div className="text-xs text-muted-foreground flex items-center gap-1">
{getShortcutKeyList(Shortcuts.toggleTemporaryChat).map(
(key) => (
<span
className="w-5 h-5 flex items-center justify-center bg-muted rounded "
key={key}
>
{key}
</span>
),
)}
</div>
</div>
</TooltipContent>
</Tooltip>
</div>
)}
</header>
);
}
function ThreadDropdownComponent() {
const [threadList, currentThreadId, generatingTitleThreadIds] = appStore(
useShallow((state) => [
state.threadList,
state.currentThreadId,
state.generatingTitleThreadIds,
]),
);
const currentThread = useMemo(() => {
return threadList.find((thread) => thread.id === currentThreadId);
}, [threadList, currentThreadId]);
useEffect(() => {
if (currentThread?.id) {
document.title = currentThread.title || "New Chat";
}
}, [currentThread?.id]);
if (!currentThread) return null;
return (
<div className="items-center gap-1 hidden md:flex">
<div className="w-1 h-4">
<Separator orientation="vertical" />
</div>
<ThreadDropdown
threadId={currentThread.id}
beforeTitle={currentThread.title}
>
<div>
<Tooltip>
<TooltipTrigger asChild>
<Button
variant="ghost"
className="data-[state=open]:bg-input! hover:text-foreground cursor-pointer flex gap-1 items-center px-2 py-1 rounded-md hover:bg-accent"
>
{generatingTitleThreadIds.includes(currentThread.id) ? (
<TextShimmer className="truncate max-w-60 min-w-0 mr-1">
{currentThread.title || "New Chat"}
</TextShimmer>
) : (
<p className="truncate max-w-60 min-w-0 mr-1">
{currentThread.title || "New Chat"}
</p>
)}
<ChevronDown size={14} />
</Button>
</TooltipTrigger>
<TooltipContent className="max-w-[200px] p-4 break-all overflow-y-auto max-h-[200px]">
{currentThread.title || "New Chat"}
</TooltipContent>
</Tooltip>
</div>
</ThreadDropdown>
</div>
);
}
|