import React, { useState, useEffect } from 'react'; import clsx from 'clsx'; import { NavLink, useLocation } from 'react-router-dom'; import { useTranslation } from 'react-i18next'; import { useUIStore } from '@/store/uiStore'; interface NavLeaf { to: string; labelKey: string; } interface NavTreeItem { labelKey: string; icon: React.ReactNode; children: NavLeaf[]; } interface NavSingleItem { to: string; labelKey: string; icon: React.ReactNode; } const navIcon = (path: string) => ( ); const chevronIcon = (expanded: boolean) => ( ); const singleItems: NavSingleItem[] = [ { to: '/dashboard', labelKey: 'nav.dashboard', icon: navIcon('M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6') }, { to: '/contacts', labelKey: 'nav.contacts', icon: navIcon('M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6-3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z') }, ]; const treeItems: NavTreeItem[] = [ { labelKey: 'nav.calendar', icon: navIcon('M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'), children: [ { to: '/calendar', labelKey: 'nav.calendar' }, { to: '/calendar/kanban', labelKey: 'nav.calendarKanban' }, ], }, { labelKey: 'nav.files', icon: navIcon('M7 21h10a2 2 0 002-2V9.414a1 1 0 00-.293-.707l-5.414-5.414A1 1 0 0012.586 3H7a2 2 0 00-2 2v14a2 2 0 002 2z'), children: [ { to: '/dms', labelKey: 'nav.files' }, { to: '/dms/trash', labelKey: 'nav.filesTrash' }, ], }, { labelKey: 'nav.email', icon: navIcon('M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'), children: [ { to: '/mail', labelKey: 'nav.email' }, { to: '/mail/settings', labelKey: 'nav.emailSettings' }, ], }, ]; const bottomItems: NavSingleItem[] = [ { to: '/ai-assistant', labelKey: 'nav.aiAssistant', icon: navIcon('M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z') }, ]; export function Sidebar() { const { t } = useTranslation(); const { sidebarOpen, setSidebarOpen } = useUIStore(); const location = useLocation(); const initialExpanded = treeItems .filter((item) => item.children.some((child) => location.pathname.startsWith(child.to))) .map((item) => item.labelKey); const [expandedItems, setExpandedItems] = useState>(new Set(initialExpanded)); useEffect(() => { setExpandedItems((prev) => { const next = new Set(prev); treeItems.forEach((item) => { const isActive = item.children.some((child) => location.pathname.startsWith(child.to)); if (isActive) next.add(item.labelKey); }); return next; }); }, [location.pathname]); const toggleExpand = (labelKey: string) => { setExpandedItems((prev) => { const next = new Set(prev); if (next.has(labelKey)) next.delete(labelKey); else next.add(labelKey); return next; }); }; const isChildActive = (children: NavLeaf[]) => children.some((child) => location.pathname.startsWith(child.to)); return ( <> {sidebarOpen && (
setSidebarOpen(false)} aria-hidden="true" data-testid="sidebar-overlay" /> )} ); }