Files
leocrm/frontend/src/pages/Settings.tsx
T
Agent Zero 33b4b52206 feat(templates): UI fuer Berechtigungs-Vorlagen — Modul 6/16 des UI-Backlogs
Backend existierte vollstaendig (list mit entity_type-Filter, create, update,
delete, apply — templates:read/write, seit Audit-Fix im Katalog), Frontend
hatte 0% Abdeckung.

- api/permissionTemplates.ts: TanStack-Hooks (usePermissionTemplates,
  create/update/delete/apply mit Cache-Invalidierung, TemplateLevel-Typ)
- pages/PermissionTemplates.tsx: Template-Karten (Name, Level-Badge,
  Entity-Type, Auto-Share-Zusammenfassung), Create/Edit-Dialog mit
  Level-Select und JSON-Textarea inkl. Array-Validierung mit Fehlertext,
  Apply-Dialog (Entity-Type vorbelegt, Entity-ID), Ergebnis-Banner mit
  Anzahl erstellter Berechtigungen, Delete mit Confirm — alle Aktionen
  hinter templates:write gegated
- Platzierung: Settings-Subpage /settings/permission-templates (statisch,
  Core-Route) + Settings-Nav-Item
- i18n permissionTemplates.* de/en

Verifikation: Vitest 10/10 (Rendering, Level-Badges, Create mit validem +
invalidem JSON, Edit prefilled, Apply mit Ergebnis, Delete-Confirm,
Permission-Gating, Empty/Error) · tsc exit 0 · production build exit 0.
2026-09-13 10:27:10 +02:00

115 lines
4.9 KiB
TypeScript

import React, { useMemo } from 'react';
import { NavLink, Outlet } from 'react-router-dom';
import { useTranslation } from 'react-i18next';
import { usePluginStore } from '@/store/pluginStore';
import { useUIStore } from '@/store/uiStore';
import { usePermission } from '@/hooks/usePermission';
import { useAuthStore } from '@/store/authStore';
import { Settings, Mail, Bell, Sparkles, Bot, Shield, Users, UsersRound, Package, ArrowLeft, FileText } from 'lucide-react';
const ICON_MAP: Record<string, React.ComponentType<{ className?: string }>> = {
Settings,
Mail,
Bell,
Sparkles,
Bot,
Shield,
Users,
UsersRound,
FileText,
};
const FALLBACK_ICON = Package;
export function SettingsPage() {
const { t } = useTranslation();
const manifests = usePluginStore(s => s.manifests);
const sidebarOpen = useUIStore((state) => state.sidebarOpen);
const { hasPermission } = usePermission();
const user = useAuthStore((state) => state.user);
const pluginSettingsPages = useMemo(
() => (manifests || [])
.flatMap((m) => (Array.isArray(m.settings_pages) ? m.settings_pages : []))
.filter((p): p is NonNullable<typeof p> => !!p && !!p.path)
// ARCH-006 parity: hide settings pages the user has no permission for
// (fail-closed while permissions are loading)
.filter(p => !p.permission || (user?.is_system_admin || hasPermission(p.permission)))
.sort((a, b) => a.order - b.order),
[manifests, user]
);
// W3b (#358): Only true core settings — plugin settings come exclusively
// via pluginNavItems (settings_pages contributions). No duplication.
const hardcodedNavItems = [
{ to: '/settings/stammdaten', label: 'Stammdaten', icon: '\ud83c\udfe2' },
{ to: '/settings/user-management', label: 'Nutzerverwaltung', icon: '\ud83d\udc65' },
{ to: '/settings/system', label: 'System', icon: '\u2699\ufe0f' },
{ to: '/settings/custom-fields', label: 'Custom Fields', icon: '\ud83d\udccb' },
{ to: '/settings/webhooks', label: 'Webhooks', icon: '\ud83d\udd14' },
{ to: '/settings/workspaces', label: 'Workspaces', icon: '\ud83d\udd58\ufe0f' },
{ to: '/settings/backup', label: 'Backup & Restore', icon: '\ud83d\udcbe' },
{ to: '/settings/api-tokens', label: 'API-Tokens', icon: '\ud83d\udd11' },
{ to: '/settings/tenants', label: 'Mandanten', icon: '\ud83c\udfe2' },
{ to: '/settings/permission-templates', label: 'Berechtigungs-Vorlagen', icon: '\ud83d\udd11' },
];
const existingPaths = new Set(hardcodedNavItems.map(item => item.to));
// Path-based dedup only — the old label-based hack hid legitimate plugin
// pages whenever their English label collided with a hardcoded one.
const pluginNavItems = pluginSettingsPages
.filter(p => !existingPaths.has(`/settings/${p.path}`))
.map(p => ({
to: `/settings/${p.path}`,
label: t(p.label_key, p.label),
icon: (() => {
const Icon = ICON_MAP[p.icon] ?? FALLBACK_ICON;
return React.createElement(Icon, { className: 'w-4 h-4' });
})(),
}));
const navItems = [...hardcodedNavItems, ...pluginNavItems];
return (
<div className="flex h-full overflow-hidden" data-testid="settings-page">
<aside className={`${sidebarOpen ? 'w-64 border-r border-secondary-200' : 'w-0'} flex-shrink-0 min-h-[calc(100vh-4rem)] transition-all duration-200 overflow-hidden`}>
<div className="w-64 flex-shrink-0 p-4">
<div className="flex items-center gap-2 mb-6">
<button
onClick={() => window.location.href = '/start'}
className="p-1.5 rounded-md text-secondary-400 hover:bg-secondary-100 hover:text-secondary-700 flex items-center justify-center focus:outline-none"
aria-label="Zurück zur Startseite"
title="Zurück zur Startseite"
>
<ArrowLeft className="w-4 h-4" />
</button>
<h1 className="text-xl font-bold text-secondary-900">{t('settings.title')}</h1>
</div>
<nav className="space-y-1" role="navigation" aria-label={t('settings.title')}>
{navItems.map((item) => (
<NavLink
key={item.to}
to={item.to}
end
className={({ isActive }) =>
`flex items-center gap-3 px-3 py-2 rounded-lg text-sm font-medium transition-colors ${
isActive
? 'bg-primary-100 text-primary-700'
: 'text-secondary-600 hover:bg-secondary-100 hover:text-secondary-900'
}`
}
data-testid={`settings-nav-${item.to.split('/').pop()}`}
>
<span aria-hidden="true">{item.icon}</span>
{item.label}
</NavLink>
))}
</nav>
</div>
</aside>
<main className="flex-1 p-6 overflow-y-auto" data-testid="settings-content">
<Outlet />
</main>
</div>
);
}