UI: Suchfeld 10% niedriger, Kontakt-Baum mit Firmen/Privatpersonen Trennung, Toolbar vereinfacht (Sort+View Toggle)

This commit is contained in:
Agent Zero
2026-07-20 00:25:58 +02:00
parent beb4d7a9ff
commit 4bc11efc25
5 changed files with 165 additions and 96 deletions
@@ -1,4 +1,4 @@
import React from 'react';
import React, { useState } from 'react';
import clsx from 'clsx';
import { useTranslation } from 'react-i18next';
@@ -11,12 +11,28 @@ export interface ContactFolderTreeProps {
loading?: boolean;
}
const folderIcon = (path: string) => (
<svg className="w-4 h-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
const icon = (path: string, cls = 'w-4 h-4') => (
<svg className={cls} fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d={path} />
</svg>
);
const chevron = (open: boolean) => (
<svg
className={clsx('w-3.5 h-3.5 transition-transform flex-shrink-0', open && 'rotate-90')}
fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true"
>
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 5l7 7-7 7" />
</svg>
);
const ICONS = {
all: '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',
company: 'M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4',
person: 'M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z',
tag: 'M7 7h.01M7 3h5a1.99 1.99 0 01.832.184l4 2A2 2 0 0118 7v10a2 2 0 01-2 2H7a2 2 0 01-2-2V5a2 2 0 012-2z',
};
export function ContactFolderTree({
selectedFilter,
onSelect,
@@ -24,74 +40,79 @@ export function ContactFolderTree({
loading,
}: ContactFolderTreeProps) {
const { t } = useTranslation();
const [tagsOpen, setTagsOpen] = useState(true);
const folders: { key: ContactFilter; label: string; icon: React.ReactNode }[] = [
{
key: 'all',
label: t('contacts.allContacts'),
icon: folderIcon('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'),
},
{
key: 'company',
label: t('contacts.companies'),
icon: folderIcon('M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4'),
},
{
key: 'person',
label: t('contacts.persons'),
icon: folderIcon('M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z'),
},
];
const itemCls = (active: boolean) =>
clsx(
'flex items-center gap-2 w-full px-2 py-1.5 rounded-md text-sm font-medium min-h-touch text-left',
'transition-colors focus:outline-none focus-visible:ring-2 focus-visible:ring-primary-500',
active ? 'bg-primary-50 text-primary-700' : 'text-secondary-700 hover:bg-secondary-100',
);
return (
<nav className="space-y-1" aria-label={t('contacts.title')} data-testid="contact-folder-tree">
{folders.map((folder) => (
<button
key={folder.key}
onClick={() => onSelect(folder.key)}
className={clsx(
'flex items-center gap-2 w-full px-2 py-1.5 rounded-md text-sm font-medium min-h-touch text-left',
'transition-colors focus:outline-none focus-visible:ring-2 focus-visible:ring-primary-500',
selectedFilter === folder.key
? 'bg-primary-50 text-primary-700'
: 'text-secondary-700 hover:bg-secondary-100',
)}
aria-current={selectedFilter === folder.key ? 'true' : undefined}
>
{folder.icon}
<span>{folder.label}</span>
</button>
))}
<nav className="space-y-0.5" aria-label={t('contacts.title')} data-testid="contact-folder-tree">
{/* Alle Kontakte */}
<button
onClick={() => onSelect('all')}
className={itemCls(selectedFilter === 'all')}
aria-current={selectedFilter === 'all' ? 'true' : undefined}
>
{icon(ICONS.all)}
<span>{t('contacts.allContacts')}</span>
</button>
{/* Firmen */}
<button
onClick={() => onSelect('company')}
className={itemCls(selectedFilter === 'company')}
aria-current={selectedFilter === 'company' ? 'true' : undefined}
>
{icon(ICONS.company)}
<span>{t('contacts.companies')}</span>
</button>
{/* Privatpersonen */}
<button
onClick={() => onSelect('person')}
className={itemCls(selectedFilter === 'person')}
aria-current={selectedFilter === 'person' ? 'true' : undefined}
>
{icon(ICONS.person)}
<span>{t('contacts.persons')}</span>
</button>
{/* Tags — collapsible */}
{tags.length > 0 && (
<>
<div className="my-2 border-t border-secondary-200" />
<div className="px-2 py-1 text-xs font-semibold text-secondary-500 uppercase tracking-wide">
{t('tags.title')}
</div>
{tags.map((tag) => {
const key = `tag:${tag}` as ContactFilter;
return (
<button
key={key}
onClick={() => onSelect(key)}
className={clsx(
'flex items-center gap-2 w-full px-2 py-1.5 rounded-md text-sm font-medium min-h-touch text-left',
'transition-colors focus:outline-none focus-visible:ring-2 focus-visible:ring-primary-500',
selectedFilter === key
? 'bg-primary-50 text-primary-700'
: 'text-secondary-700 hover:bg-secondary-100',
)}
aria-current={selectedFilter === key ? 'true' : undefined}
>
<svg className="w-3 h-3" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M7 7h.01M7 3h5a1.99 1.99 0 01.832.184l4 2A2 2 0 0118 7v10a2 2 0 01-2 2H7a2 2 0 01-2-2V5a2 2 0 012-2z" />
</svg>
<span className="truncate">{tag}</span>
</button>
);
})}
</>
<div className="pt-1">
<button
onClick={() => setTagsOpen(!tagsOpen)}
className="flex items-center gap-1.5 w-full px-2 py-1.5 rounded-md text-xs font-semibold text-secondary-500 uppercase tracking-wide hover:bg-secondary-100 min-h-touch text-left"
aria-expanded={tagsOpen}
>
{chevron(tagsOpen)}
{icon(ICONS.tag, 'w-3.5 h-3.5')}
<span>{t('tags.title')}</span>
</button>
{tagsOpen && (
<div className="mt-0.5 space-y-0.5">
{tags.map((tag) => {
const key = `tag:${tag}` as ContactFilter;
return (
<button
key={key}
onClick={() => onSelect(key)}
style={{ paddingLeft: '32px' }}
className={itemCls(selectedFilter === key)}
aria-current={selectedFilter === key ? 'true' : undefined}
>
{icon(ICONS.tag, 'w-3.5 h-3.5')}
<span className="truncate">{tag}</span>
</button>
);
})}
</div>
)}
</div>
)}
{loading && (
@@ -89,7 +89,7 @@ export function SearchDropdown({ placeholder }: SearchDropdownProps) {
onFocus={() => query && setOpen(true)}
onKeyDown={handleKeyDown}
placeholder={placeholder || t('topbar.search')}
className="w-64 pl-10 pr-3 py-1.5 text-sm rounded-md border border-secondary-300 focus:outline-none focus:ring-2 focus:ring-primary-500 min-h-touch"
className="w-64 pl-10 pr-3 py-1 text-sm rounded-md border border-secondary-300 focus:outline-none focus:ring-2 focus:ring-primary-500"
aria-label={t('topbar.search')}
role="combobox"
aria-expanded={open}