2026-06-29 07:55:47 +02:00
|
|
|
import React, { useState, useRef, useEffect } from 'react';
|
|
|
|
|
import clsx from 'clsx';
|
|
|
|
|
import { useNavigate } from 'react-router-dom';
|
|
|
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
|
import { useAuthStore } from '@/store/authStore';
|
|
|
|
|
import { useUIStore } from '@/store/uiStore';
|
|
|
|
|
import { useLogout } from '@/api/hooks';
|
|
|
|
|
import { Avatar } from '@/components/ui/Avatar';
|
2026-06-29 11:01:39 +02:00
|
|
|
import { SearchDropdown } from '@/components/shared/SearchDropdown';
|
2026-07-18 11:21:51 +02:00
|
|
|
import { SuggestionBadge } from '@/components/ai/SuggestionBadge';
|
2026-07-23 03:21:05 +02:00
|
|
|
import { Building, ChevronDown, Menu } from 'lucide-react';
|
2026-06-29 07:55:47 +02:00
|
|
|
|
|
|
|
|
export function TopBar() {
|
|
|
|
|
const { t } = useTranslation();
|
|
|
|
|
const navigate = useNavigate();
|
2026-07-19 14:41:38 +02:00
|
|
|
const { user, currentTenant } = useAuthStore();
|
|
|
|
|
const tenants = user?.tenants || [];
|
2026-07-22 01:22:15 +02:00
|
|
|
const { toggleSidebar, toggleMessageSidebar } = useUIStore();
|
2026-06-29 07:55:47 +02:00
|
|
|
const logoutMutation = useLogout();
|
|
|
|
|
|
|
|
|
|
const [userMenuOpen, setUserMenuOpen] = useState(false);
|
|
|
|
|
const userRef = useRef<HTMLDivElement>(null);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
const handleClickOutside = (e: MouseEvent) => {
|
|
|
|
|
if (userRef.current && !userRef.current.contains(e.target as Node)) setUserMenuOpen(false);
|
|
|
|
|
};
|
|
|
|
|
document.addEventListener('mousedown', handleClickOutside);
|
|
|
|
|
return () => document.removeEventListener('mousedown', handleClickOutside);
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
const handleLogout = async () => {
|
|
|
|
|
try {
|
|
|
|
|
await logoutMutation.mutateAsync();
|
|
|
|
|
} catch {
|
|
|
|
|
// ignore
|
|
|
|
|
}
|
|
|
|
|
navigate('/login');
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const fullName = user ? `${user.first_name} ${user.last_name}` : '';
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<header
|
2026-07-19 00:09:17 +02:00
|
|
|
className="h-[58px] bg-white border-b border-secondary-200 flex items-center justify-between px-4 sticky top-0 z-20"
|
2026-06-29 07:55:47 +02:00
|
|
|
role="banner"
|
|
|
|
|
data-testid="topbar"
|
|
|
|
|
>
|
|
|
|
|
<div className="flex items-center gap-3">
|
|
|
|
|
<button
|
|
|
|
|
onClick={toggleSidebar}
|
2026-07-21 22:28:05 +02:00
|
|
|
className="p-2 rounded-md bg-secondary-900 text-secondary-300 hover:bg-secondary-800 min-h-touch min-w-touch flex items-center justify-center focus:outline-none focus-visible:ring-2 focus-visible:ring-primary-500"
|
2026-06-29 07:55:47 +02:00
|
|
|
aria-label="Seitenleiste ein-/ausklappen"
|
|
|
|
|
aria-expanded={true}
|
|
|
|
|
>
|
2026-07-23 03:21:05 +02:00
|
|
|
<Menu className="w-4 h-4" aria-hidden="true" strokeWidth={2} />
|
2026-06-29 07:55:47 +02:00
|
|
|
</button>
|
|
|
|
|
|
2026-07-19 14:41:38 +02:00
|
|
|
{/* Tenant switcher */}
|
|
|
|
|
{tenants && tenants.length > 0 && (
|
|
|
|
|
<div className="relative">
|
|
|
|
|
<button
|
|
|
|
|
className="flex items-center gap-1.5 px-2 py-1 rounded-md hover:bg-secondary-100 min-h-touch text-sm font-medium text-secondary-700 focus:outline-none focus-visible:ring-2 focus-visible:ring-primary-500"
|
|
|
|
|
aria-label={t('topbar.switchTenant')}
|
|
|
|
|
>
|
2026-07-23 03:21:05 +02:00
|
|
|
<Building className="w-4 h-4 text-secondary-500" aria-hidden="true" strokeWidth={2} />
|
2026-07-19 14:41:38 +02:00
|
|
|
{currentTenant?.name || tenants[0]?.name || ''}
|
2026-07-23 03:21:05 +02:00
|
|
|
<ChevronDown className="w-3 h-3 text-secondary-400" aria-hidden="true" strokeWidth={2} />
|
2026-07-19 14:41:38 +02:00
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
2026-06-29 07:55:47 +02:00
|
|
|
{/* Search */}
|
2026-06-29 11:01:39 +02:00
|
|
|
<div className="hidden md:block">
|
|
|
|
|
<SearchDropdown placeholder={t('topbar.search')} />
|
2026-06-29 07:55:47 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
|
{/* User menu */}
|
|
|
|
|
<div ref={userRef} className="relative">
|
|
|
|
|
<button
|
|
|
|
|
onClick={() => setUserMenuOpen(!userMenuOpen)}
|
|
|
|
|
className="flex items-center gap-2 p-1 rounded-md hover:bg-secondary-100 min-h-touch focus:outline-none focus-visible:ring-2 focus-visible:ring-primary-500"
|
|
|
|
|
aria-label={t('topbar.userMenu')}
|
|
|
|
|
aria-expanded={userMenuOpen}
|
|
|
|
|
aria-haspopup="menu"
|
|
|
|
|
>
|
|
|
|
|
<Avatar name={fullName || 'User'} src={user?.avatar_url} size="sm" />
|
|
|
|
|
<span className="hidden md:block text-sm font-medium text-secondary-700 max-w-24 truncate">
|
|
|
|
|
{user?.first_name || ''}
|
|
|
|
|
</span>
|
2026-07-23 03:21:05 +02:00
|
|
|
<ChevronDown className="w-4 h-4 text-secondary-400" aria-hidden="true" strokeWidth={2} />
|
2026-06-29 07:55:47 +02:00
|
|
|
</button>
|
|
|
|
|
{userMenuOpen && (
|
|
|
|
|
<div
|
|
|
|
|
className="absolute top-full right-0 mt-1 w-56 bg-white rounded-md shadow-lg border border-secondary-200 py-1 z-50"
|
|
|
|
|
role="menu"
|
|
|
|
|
aria-label={t('topbar.userMenu')}
|
|
|
|
|
>
|
|
|
|
|
<div className="px-3 py-2 border-b border-secondary-100">
|
|
|
|
|
<p className="text-sm font-medium text-secondary-900 truncate">{fullName}</p>
|
|
|
|
|
<p className="text-xs text-secondary-500 truncate">{user?.email}</p>
|
|
|
|
|
</div>
|
2026-07-21 22:08:32 +02:00
|
|
|
<button
|
|
|
|
|
onClick={() => { setUserMenuOpen(false); navigate('/profile'); }}
|
|
|
|
|
className="w-full text-left px-3 py-2 text-sm hover:bg-secondary-50 min-h-touch focus:outline-none focus-visible:ring-2 focus-visible:ring-primary-500"
|
|
|
|
|
role="menuitem"
|
|
|
|
|
>
|
|
|
|
|
{t('topbar.profile')}
|
|
|
|
|
</button>
|
2026-06-29 07:55:47 +02:00
|
|
|
<button
|
|
|
|
|
onClick={() => { setUserMenuOpen(false); navigate('/settings'); }}
|
|
|
|
|
className="w-full text-left px-3 py-2 text-sm hover:bg-secondary-50 min-h-touch focus:outline-none focus-visible:ring-2 focus-visible:ring-primary-500"
|
|
|
|
|
role="menuitem"
|
|
|
|
|
>
|
|
|
|
|
{t('topbar.settings')}
|
|
|
|
|
</button>
|
2026-07-20 00:10:22 +02:00
|
|
|
<button
|
|
|
|
|
onClick={() => { setUserMenuOpen(false); navigate('/audit-log'); }}
|
|
|
|
|
className="w-full text-left px-3 py-2 text-sm hover:bg-secondary-50 min-h-touch focus:outline-none focus-visible:ring-2 focus-visible:ring-primary-500"
|
|
|
|
|
role="menuitem"
|
|
|
|
|
>
|
|
|
|
|
{t('nav.auditLog')}
|
|
|
|
|
</button>
|
2026-06-29 07:55:47 +02:00
|
|
|
<button
|
|
|
|
|
onClick={handleLogout}
|
|
|
|
|
className="w-full text-left px-3 py-2 text-sm text-danger-600 hover:bg-danger-50 min-h-touch focus:outline-none focus-visible:ring-2 focus-visible:ring-danger-500"
|
|
|
|
|
role="menuitem"
|
|
|
|
|
>
|
|
|
|
|
{t('topbar.logout')}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
);
|
|
|
|
|
}
|