| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330 |
- "use client";
- import { useState, useRef, useEffect } from "react";
- import { useAuth } from "@/features/agent/hooks/useAuth";
- import { getAvatarUrl, getAvatarColor, getAvatarInitial } from "@/utils/avatar";
- import { Button } from "@/components/ui/button";
- import { websiteConfig } from "@/lib/website-config";
- export type NavigationPage = "dashboard" | "faqs" | "users" | "settings";
- interface NavigationSidebarProps {
- currentPage?: NavigationPage;
- onNavigate?: (page: NavigationPage) => void;
- onProfileClick?: () => void;
- onLogout?: () => void;
- avatarUrl?: string | null;
- }
- export function NavigationSidebar({
- currentPage = "dashboard",
- onNavigate,
- onProfileClick,
- onLogout,
- avatarUrl,
- }: NavigationSidebarProps) {
- const { agent } = useAuth();
- const [profileMenuOpen, setProfileMenuOpen] = useState(false);
- const menuRef = useRef<HTMLDivElement>(null);
-
- // 检查当前用户是否是管理员
- const isAdmin = agent?.role === "admin";
- const handleNavigate = (page: NavigationPage) => {
- if (onNavigate) {
- onNavigate(page);
- }
- };
- // 点击外部关闭菜单
- useEffect(() => {
- const handleClickOutside = (event: MouseEvent) => {
- if (menuRef.current && !menuRef.current.contains(event.target as Node)) {
- setProfileMenuOpen(false);
- }
- };
- if (profileMenuOpen) {
- document.addEventListener("mousedown", handleClickOutside);
- }
- return () => {
- document.removeEventListener("mousedown", handleClickOutside);
- };
- }, [profileMenuOpen]);
- // 头像相关
- const avatarColor = getAvatarColor(agent?.username || "");
- const displayInitial = getAvatarInitial(agent?.username || "");
- const fullAvatarUrl = getAvatarUrl(avatarUrl);
- return (
- <div className="w-16 bg-gray-50 flex flex-col items-center py-4 border-r border-gray-200 h-full">
- <button
- className={`w-10 h-10 rounded-lg flex items-center justify-center mb-4 transition-colors ${
- currentPage === "dashboard"
- ? "bg-green-600 hover:bg-green-700"
- : "bg-white border border-gray-200 hover:bg-gray-100"
- }`}
- title="对话"
- onClick={() => handleNavigate("dashboard")}
- >
- <svg
- className={`w-6 h-6 ${
- currentPage === "dashboard" ? "text-white" : "text-gray-600"
- }`}
- fill="none"
- stroke="currentColor"
- viewBox="0 0 24 24"
- >
- <path
- strokeLinecap="round"
- strokeLinejoin="round"
- strokeWidth={2}
- d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"
- />
- </svg>
- </button>
- <button
- className="w-10 h-10 rounded-lg bg-white border border-gray-200 flex items-center justify-center mb-4 hover:bg-gray-100 transition-colors"
- title="知识库"
- disabled
- >
- <svg
- className="w-6 h-6 text-gray-600"
- fill="none"
- stroke="currentColor"
- viewBox="0 0 24 24"
- >
- <path
- strokeLinecap="round"
- strokeLinejoin="round"
- strokeWidth={2}
- d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5s3.332.477 4.5 1.253v13C19.832 18.477 18.246 18 16.5 18s-3.332.477-4.5 1.253"
- />
- </svg>
- </button>
- <button
- className={`w-10 h-10 rounded-lg flex items-center justify-center mb-4 transition-colors ${
- currentPage === "faqs"
- ? "bg-green-600 hover:bg-green-700"
- : "bg-white border border-gray-200 hover:bg-gray-100"
- }`}
- title="事件管理"
- onClick={() => handleNavigate("faqs")}
- >
- <svg
- className={`w-6 h-6 ${
- currentPage === "faqs" ? "text-white" : "text-gray-600"
- }`}
- fill="none"
- stroke="currentColor"
- viewBox="0 0 24 24"
- >
- <path
- strokeLinecap="round"
- strokeLinejoin="round"
- strokeWidth={2}
- d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"
- />
- </svg>
- </button>
- {isAdmin && (
- <button
- className={`w-10 h-10 rounded-lg flex items-center justify-center mb-4 transition-colors ${
- currentPage === "users"
- ? "bg-green-600 hover:bg-green-700"
- : "bg-white border border-gray-200 hover:bg-gray-100"
- }`}
- title="用户管理"
- onClick={() => handleNavigate("users")}
- >
- <svg
- className={`w-6 h-6 ${
- currentPage === "users" ? "text-white" : "text-gray-600"
- }`}
- fill="none"
- stroke="currentColor"
- viewBox="0 0 24 24"
- >
- <path
- strokeLinecap="round"
- strokeLinejoin="round"
- strokeWidth={2}
- d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z"
- />
- </svg>
- </button>
- )}
- <button
- className={`w-10 h-10 rounded-lg flex items-center justify-center mb-4 transition-colors ${
- currentPage === "settings"
- ? "bg-green-600 hover:bg-green-700"
- : "bg-white border border-gray-200 hover:bg-gray-100"
- }`}
- title="AI 配置"
- onClick={() => handleNavigate("settings")}
- >
- <svg
- className={`w-6 h-6 ${
- currentPage === "settings" ? "text-white" : "text-gray-600"
- }`}
- fill="none"
- stroke="currentColor"
- viewBox="0 0 24 24"
- >
- <path
- strokeLinecap="round"
- strokeLinejoin="round"
- strokeWidth={2}
- d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"
- />
- </svg>
- </button>
- {/* 个人资料按钮和 GitHub 按钮(固定在底部) */}
- <div className="mt-auto flex flex-col items-center gap-2">
- {/* 个人资料按钮 */}
- <div className="relative" ref={menuRef}>
- <button
- className={`w-10 h-10 rounded-lg flex items-center justify-center transition-colors ${
- profileMenuOpen
- ? "bg-primary text-primary-foreground"
- : "bg-white border border-gray-200 hover:bg-gray-100"
- }`}
- title="个人资料"
- onClick={() => setProfileMenuOpen(!profileMenuOpen)}
- >
- {fullAvatarUrl ? (
- <img
- src={fullAvatarUrl}
- alt={agent?.username || "用户"}
- className="w-8 h-8 rounded-full object-cover"
- />
- ) : (
- <div
- className="w-8 h-8 rounded-full flex items-center justify-center text-white text-xs font-semibold"
- style={{ backgroundColor: avatarColor }}
- >
- {displayInitial}
- </div>
- )}
- </button>
- {/* 下拉菜单 */}
- {profileMenuOpen && (
- <div className="absolute bottom-12 left-0 w-64 bg-white border border-gray-200 rounded-lg shadow-lg z-50">
- {/* 用户信息 */}
- <div className="p-4 border-b border-gray-200">
- <div className="flex items-center gap-3">
- {fullAvatarUrl ? (
- <img
- src={fullAvatarUrl}
- alt={agent?.username || "用户"}
- className="w-12 h-12 rounded-full object-cover"
- />
- ) : (
- <div
- className="w-12 h-12 rounded-full flex items-center justify-center text-white text-sm font-semibold"
- style={{ backgroundColor: avatarColor }}
- >
- {displayInitial}
- </div>
- )}
- <div>
- <div className="text-sm font-semibold text-foreground">
- {agent?.username || "用户"}
- </div>
- <div className="text-xs text-muted-foreground">
- {agent?.role === "admin" ? "管理员" : "客服"}
- </div>
- </div>
- </div>
- </div>
- {/* 菜单项 */}
- <div className="p-2">
- <Button
- variant="ghost"
- size="sm"
- className="w-full justify-start"
- onClick={() => {
- setProfileMenuOpen(false);
- onProfileClick?.();
- }}
- >
- <svg
- className="w-4 h-4 mr-2"
- fill="none"
- stroke="currentColor"
- viewBox="0 0 24 24"
- >
- <path
- strokeLinecap="round"
- strokeLinejoin="round"
- strokeWidth={2}
- d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"
- />
- </svg>
- 个人资料
- </Button>
- <Button
- variant="ghost"
- size="sm"
- className="w-full justify-start text-red-600 hover:text-red-700 hover:bg-red-50"
- onClick={() => {
- setProfileMenuOpen(false);
- onLogout?.();
- }}
- >
- <svg
- className="w-4 h-4 mr-2"
- fill="none"
- stroke="currentColor"
- viewBox="0 0 24 24"
- >
- <path
- strokeLinecap="round"
- strokeLinejoin="round"
- strokeWidth={2}
- d="M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1"
- />
- </svg>
- 退出登录
- </Button>
- </div>
- </div>
- )}
- </div>
- {/* GitHub 链接按钮(个人资料下方) */}
- <Button
- variant="ghost"
- size="sm"
- asChild
- className="w-10 h-10 rounded-lg bg-white border border-gray-200 hover:bg-gray-100 transition-colors p-0"
- title="GitHub"
- >
- <a
- href={websiteConfig.github.repo}
- target="_blank"
- rel="noopener noreferrer"
- >
- <svg
- className="w-5 h-5 text-gray-600"
- fill="currentColor"
- viewBox="0 0 24 24"
- >
- <path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" />
- </svg>
- </a>
- </Button>
- </div>
- </div>
- );
- }
|