mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-11 17:44:45 +08:00
61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
"use client";
|
|
|
|
import { MessageSquarePlus } from "lucide-react";
|
|
import Link from "next/link";
|
|
import { usePathname } from "next/navigation";
|
|
|
|
import {
|
|
SidebarMenu,
|
|
SidebarMenuButton,
|
|
SidebarMenuItem,
|
|
SidebarTrigger,
|
|
useSidebar,
|
|
} from "@/components/ui/sidebar";
|
|
import { useI18n } from "@/core/i18n/hooks";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
export function WorkspaceHeader({ className }: { className?: string }) {
|
|
const { t } = useI18n();
|
|
const { state } = useSidebar();
|
|
const pathname = usePathname();
|
|
return (
|
|
<>
|
|
<div
|
|
className={cn(
|
|
"group/workspace-header flex h-12 flex-col justify-center",
|
|
className,
|
|
)}
|
|
>
|
|
{state === "collapsed" ? (
|
|
<div className="group-has-data-[collapsible=icon]/sidebar-wrapper:-translate-y flex w-full cursor-pointer items-center justify-center">
|
|
<div className="text-primary block pt-1 font-serif group-hover/workspace-header:hidden">
|
|
DF
|
|
</div>
|
|
<SidebarTrigger className="hidden pl-2 group-hover/workspace-header:block" />
|
|
</div>
|
|
) : (
|
|
<div className="flex items-center justify-between gap-2">
|
|
<Link href="/" className="text-primary ml-2 font-serif">
|
|
DeerFlow
|
|
</Link>
|
|
<SidebarTrigger />
|
|
</div>
|
|
)}
|
|
</div>
|
|
<SidebarMenu>
|
|
<SidebarMenuItem>
|
|
<SidebarMenuButton
|
|
isActive={pathname === "/workspace/chats/new"}
|
|
asChild
|
|
>
|
|
<Link className="text-muted-foreground" href="/workspace/chats/new">
|
|
<MessageSquarePlus size={16} />
|
|
<span>{t.sidebar.newChat}</span>
|
|
</Link>
|
|
</SidebarMenuButton>
|
|
</SidebarMenuItem>
|
|
</SidebarMenu>
|
|
</>
|
|
);
|
|
}
|