|
|
|
|
@@ -1,11 +1,11 @@
|
|
|
|
|
/**
|
|
|
|
|
* Navigation Structure for Admin-Lehrer
|
|
|
|
|
* Navigation Structure for Admin v2
|
|
|
|
|
*
|
|
|
|
|
* Main categories with color-coded modules.
|
|
|
|
|
* SDK/Compliance categories removed - this is the Lehrer-focused admin panel.
|
|
|
|
|
* All DSGVO and Compliance modules are now consolidated under the SDK.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export type CategoryId = 'ai' | 'infrastructure' | 'education' | 'communication' | 'development' | 'website'
|
|
|
|
|
export type CategoryId = 'compliance-sdk' | 'ai' | 'education' | 'website' | 'sdk-docs'
|
|
|
|
|
|
|
|
|
|
export interface NavModule {
|
|
|
|
|
id: string
|
|
|
|
|
@@ -30,6 +30,27 @@ export interface NavCategory {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const navigation: NavCategory[] = [
|
|
|
|
|
// =========================================================================
|
|
|
|
|
// Compliance SDK - Alle Datenschutz-, Compliance- und SDK-Module
|
|
|
|
|
// =========================================================================
|
|
|
|
|
{
|
|
|
|
|
id: 'compliance-sdk',
|
|
|
|
|
name: 'Compliance SDK',
|
|
|
|
|
icon: 'shield',
|
|
|
|
|
color: '#8b5cf6', // Violet-500
|
|
|
|
|
colorClass: 'compliance-sdk',
|
|
|
|
|
description: 'DSGVO, Audit, GRC & SDK-Werkzeuge',
|
|
|
|
|
modules: [
|
|
|
|
|
{
|
|
|
|
|
id: 'catalog-manager',
|
|
|
|
|
name: 'Katalogverwaltung',
|
|
|
|
|
href: '/dashboard/catalog-manager',
|
|
|
|
|
description: 'SDK-Kataloge & Auswahltabellen',
|
|
|
|
|
purpose: 'Zentrale Verwaltung aller Dropdown- und Auswahltabellen im SDK. Systemkataloge (Risiken, Massnahmen, Vorlagen) anzeigen und benutzerdefinierte Eintraege ergaenzen, bearbeiten und loeschen.',
|
|
|
|
|
audience: ['DSB', 'Compliance Officer', 'Administratoren'],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
// =========================================================================
|
|
|
|
|
// KI & Automatisierung
|
|
|
|
|
// =========================================================================
|
|
|
|
|
@@ -141,67 +162,6 @@ export const navigation: NavCategory[] = [
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
// =========================================================================
|
|
|
|
|
// Infrastruktur & DevOps
|
|
|
|
|
// =========================================================================
|
|
|
|
|
{
|
|
|
|
|
id: 'infrastructure',
|
|
|
|
|
name: 'Infrastruktur & DevOps',
|
|
|
|
|
icon: 'server',
|
|
|
|
|
color: '#f97316', // Orange
|
|
|
|
|
colorClass: 'infrastructure',
|
|
|
|
|
description: 'GPU, Security, CI/CD & Monitoring',
|
|
|
|
|
modules: [
|
|
|
|
|
{
|
|
|
|
|
id: 'ci-cd',
|
|
|
|
|
name: 'CI/CD',
|
|
|
|
|
href: '/infrastructure/ci-cd',
|
|
|
|
|
description: 'Pipelines, Deployments & Container',
|
|
|
|
|
purpose: 'CI/CD Dashboard mit Gitea Actions Pipelines, Deployment-Status und Container-Management.',
|
|
|
|
|
audience: ['DevOps', 'Entwickler'],
|
|
|
|
|
subgroup: 'DevOps Pipeline',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'tests',
|
|
|
|
|
name: 'Test Dashboard',
|
|
|
|
|
href: '/infrastructure/tests',
|
|
|
|
|
description: 'Test-Suites, Coverage & CI/CD',
|
|
|
|
|
purpose: 'Zentrales Dashboard fuer alle 280+ Tests. Unit (Go, Python), Integration, E2E (Playwright) und BQAS Quality Tests. Aggregiert Tests aus allen Services ohne physische Migration.',
|
|
|
|
|
audience: ['Entwickler', 'QA', 'DevOps'],
|
|
|
|
|
subgroup: 'DevOps Pipeline',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'sbom',
|
|
|
|
|
name: 'SBOM',
|
|
|
|
|
href: '/infrastructure/sbom',
|
|
|
|
|
description: 'Software Bill of Materials',
|
|
|
|
|
purpose: 'Verwalten Sie alle Software-Abhaengigkeiten und deren Lizenzen.',
|
|
|
|
|
audience: ['DevOps', 'Compliance'],
|
|
|
|
|
oldAdminPath: '/admin/sbom',
|
|
|
|
|
subgroup: 'DevOps Pipeline',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'security',
|
|
|
|
|
name: 'Security',
|
|
|
|
|
href: '/infrastructure/security',
|
|
|
|
|
description: 'DevSecOps Dashboard & Scans',
|
|
|
|
|
purpose: 'Security-Scans, Vulnerability-Reports und OWASP-Compliance.',
|
|
|
|
|
audience: ['DevOps', 'Security'],
|
|
|
|
|
oldAdminPath: '/admin/security',
|
|
|
|
|
subgroup: 'DevOps Pipeline',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'middleware',
|
|
|
|
|
name: 'Middleware',
|
|
|
|
|
href: '/infrastructure/middleware',
|
|
|
|
|
description: 'Middleware Stack & API Gateway',
|
|
|
|
|
purpose: 'Ueberwachen und testen Sie den Middleware-Stack und API Gateway.',
|
|
|
|
|
audience: ['DevOps'],
|
|
|
|
|
oldAdminPath: '/admin/middleware',
|
|
|
|
|
subgroup: 'Infrastructure',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
// =========================================================================
|
|
|
|
|
// Bildung & Schule
|
|
|
|
|
// =========================================================================
|
|
|
|
|
{
|
|
|
|
|
@@ -250,103 +210,6 @@ export const navigation: NavCategory[] = [
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
// =========================================================================
|
|
|
|
|
// Kommunikation & Alerts
|
|
|
|
|
// =========================================================================
|
|
|
|
|
{
|
|
|
|
|
id: 'communication',
|
|
|
|
|
name: 'Kommunikation & Alerts',
|
|
|
|
|
icon: 'mail',
|
|
|
|
|
color: '#22c55e', // Green
|
|
|
|
|
colorClass: 'communication',
|
|
|
|
|
description: 'Matrix, E-Mail & Benachrichtigungen',
|
|
|
|
|
modules: [
|
|
|
|
|
{
|
|
|
|
|
id: 'video-chat',
|
|
|
|
|
name: 'Video & Chat',
|
|
|
|
|
href: '/communication/video-chat',
|
|
|
|
|
description: 'Matrix & Jitsi Monitoring',
|
|
|
|
|
purpose: 'Dashboard fuer Matrix Synapse (E2EE Messaging) und Jitsi Meet (Videokonferenzen). Ueberwachen Sie Service-Status, aktive Meetings, Traffic und SysEleven Ressourcenplanung.',
|
|
|
|
|
audience: ['Admins', 'DevOps', 'Support'],
|
|
|
|
|
oldAdminPath: '/admin/communication',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'matrix',
|
|
|
|
|
name: 'Voice Service',
|
|
|
|
|
href: '/communication/matrix',
|
|
|
|
|
description: 'Voice-First Interface & Architektur',
|
|
|
|
|
purpose: 'Konfigurieren und testen Sie den Voice-Service (PersonaPlex-7B, TaskOrchestrator). Dokumentation der Voice-First Architektur mit DSGVO-Compliance.',
|
|
|
|
|
audience: ['Entwickler', 'Admins'],
|
|
|
|
|
oldAdminPath: '/admin/voice',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'mail',
|
|
|
|
|
name: 'Unified Inbox',
|
|
|
|
|
href: '/communication/mail',
|
|
|
|
|
description: 'E-Mail-Konten & KI-Analyse',
|
|
|
|
|
purpose: 'Verwalten Sie E-Mail-Konten und nutzen Sie KI zur Kategorisierung.',
|
|
|
|
|
audience: ['Support', 'Admins'],
|
|
|
|
|
oldAdminPath: '/admin/mail',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'alerts',
|
|
|
|
|
name: 'Alerts Monitoring',
|
|
|
|
|
href: '/communication/alerts',
|
|
|
|
|
description: 'Google Alerts & Feed-Ueberwachung',
|
|
|
|
|
purpose: 'Ueberwachen Sie Google Alerts und RSS-Feeds fuer relevante Neuigkeiten.',
|
|
|
|
|
audience: ['Marketing', 'Admins'],
|
|
|
|
|
oldAdminPath: '/admin/alerts',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
// =========================================================================
|
|
|
|
|
// Entwicklung & Produkte
|
|
|
|
|
// =========================================================================
|
|
|
|
|
{
|
|
|
|
|
id: 'development',
|
|
|
|
|
name: 'Entwicklung & Produkte',
|
|
|
|
|
icon: 'code',
|
|
|
|
|
color: '#64748b', // Slate
|
|
|
|
|
colorClass: 'development',
|
|
|
|
|
description: 'Workflow, Game, Docs & Brandbook',
|
|
|
|
|
modules: [
|
|
|
|
|
{
|
|
|
|
|
id: 'workflow',
|
|
|
|
|
name: 'Dev Workflow',
|
|
|
|
|
href: '/development/workflow',
|
|
|
|
|
description: 'Git, CI/CD & Team-Regeln',
|
|
|
|
|
purpose: 'Entwicklungs-Workflow mit Git, CI/CD Pipeline und Team-Konventionen. Pflichtlektuere fuer alle Entwickler.',
|
|
|
|
|
audience: ['Entwickler', 'DevOps'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'docs',
|
|
|
|
|
name: 'Developer Docs',
|
|
|
|
|
href: '/development/docs',
|
|
|
|
|
description: 'API & Architektur',
|
|
|
|
|
purpose: 'Durchsuchen Sie die API-Dokumentation und Architektur-Diagramme.',
|
|
|
|
|
audience: ['Entwickler'],
|
|
|
|
|
oldAdminPath: '/admin/docs',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'brandbook',
|
|
|
|
|
name: 'Brandbook',
|
|
|
|
|
href: '/development/brandbook',
|
|
|
|
|
description: 'Corporate Design',
|
|
|
|
|
purpose: 'Referenz fuer Logos, Farben, Typografie und Design-Richtlinien.',
|
|
|
|
|
audience: ['Designer', 'Marketing'],
|
|
|
|
|
oldAdminPath: '/admin/brandbook',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'screen-flow',
|
|
|
|
|
name: 'Screen Flow',
|
|
|
|
|
href: '/development/screen-flow',
|
|
|
|
|
description: 'UI Screen-Verbindungen',
|
|
|
|
|
purpose: 'Visualisieren Sie die Navigation und Screen-Verbindungen der App.',
|
|
|
|
|
audience: ['Designer', 'Entwickler'],
|
|
|
|
|
oldAdminPath: '/admin/screen-flow',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
// =========================================================================
|
|
|
|
|
// Website
|
|
|
|
|
// =========================================================================
|
|
|
|
|
{
|
|
|
|
|
@@ -376,6 +239,69 @@ export const navigation: NavCategory[] = [
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
// =========================================================================
|
|
|
|
|
// SDK Dokumentation
|
|
|
|
|
// =========================================================================
|
|
|
|
|
{
|
|
|
|
|
id: 'sdk-docs',
|
|
|
|
|
name: 'SDK Dokumentation',
|
|
|
|
|
icon: 'code-2',
|
|
|
|
|
color: '#06b6d4', // Cyan
|
|
|
|
|
colorClass: 'sdk-docs',
|
|
|
|
|
description: 'Consent SDK Dokumentation & Integration',
|
|
|
|
|
modules: [
|
|
|
|
|
{
|
|
|
|
|
id: 'consent-sdk',
|
|
|
|
|
name: 'Consent SDK',
|
|
|
|
|
href: '/developers/sdk/consent',
|
|
|
|
|
description: 'DSGVO/TTDSG-konformes Consent Management',
|
|
|
|
|
purpose: 'Vollstaendige Dokumentation des Consent SDK fuer Web, PWA und Mobile Apps. Inklusive Framework-Integrationen (React, Vue, Angular) und Mobile SDKs (iOS, Android, Flutter).',
|
|
|
|
|
audience: ['Entwickler', 'Frontend-Entwickler', 'Mobile-Entwickler'],
|
|
|
|
|
gdprArticles: ['Art. 6', 'Art. 7', 'Art. 13', 'Art. 14', 'Art. 17', 'Art. 20'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'sdk-installation',
|
|
|
|
|
name: 'Installation',
|
|
|
|
|
href: '/developers/sdk/consent/installation',
|
|
|
|
|
description: 'SDK Installation & Setup',
|
|
|
|
|
purpose: 'Schritt-fuer-Schritt Anleitung zur Installation des Consent SDK in verschiedenen Umgebungen.',
|
|
|
|
|
audience: ['Entwickler'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'sdk-frameworks',
|
|
|
|
|
name: 'Frameworks',
|
|
|
|
|
href: '/developers/sdk/consent/frameworks',
|
|
|
|
|
description: 'React, Vue, Angular Integration',
|
|
|
|
|
purpose: 'Framework-spezifische Integrationen mit Hooks, Composables und Services.',
|
|
|
|
|
audience: ['Frontend-Entwickler'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'sdk-mobile',
|
|
|
|
|
name: 'Mobile SDKs',
|
|
|
|
|
href: '/developers/sdk/consent/mobile',
|
|
|
|
|
description: 'iOS, Android, Flutter',
|
|
|
|
|
purpose: 'Native Mobile SDKs fuer iOS (Swift), Android (Kotlin) und Flutter (Dart).',
|
|
|
|
|
audience: ['Mobile-Entwickler'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'sdk-api',
|
|
|
|
|
name: 'API Referenz',
|
|
|
|
|
href: '/developers/sdk/consent/api-reference',
|
|
|
|
|
description: 'Vollstaendige API-Dokumentation',
|
|
|
|
|
purpose: 'Detaillierte Dokumentation aller Methoden, Konfigurationsoptionen und Events.',
|
|
|
|
|
audience: ['Entwickler'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'sdk-security',
|
|
|
|
|
name: 'Sicherheit',
|
|
|
|
|
href: '/developers/sdk/consent/security',
|
|
|
|
|
description: 'Security Best Practices',
|
|
|
|
|
purpose: 'Sicherheits-Features, DSGVO/TTDSG Compliance-Hinweise und Best Practices.',
|
|
|
|
|
audience: ['Entwickler', 'DSB', 'Security'],
|
|
|
|
|
gdprArticles: ['Art. 6', 'Art. 7', '§ 25 TTDSG'],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
// Meta modules (always visible)
|
|
|
|
|
|