Files
breakpilot-lehrer/website/app/admin/rag
Benjamin Admin 0b37c5e692 [split-required] Split website + studio-v2 monoliths (Phase 3 continued)
Website (14 monoliths split):
- compliance/page.tsx (1,519 → 9), docs/audit (1,262 → 20)
- quality (1,231 → 16), alerts (1,203 → 10), docs (1,202 → 11)
- i18n.ts (1,173 → 8 language files)
- unity-bridge (1,094 → 12), backlog (1,087 → 6)
- training (1,066 → 8), rag (1,063 → 8)
- Deleted index_original.ts (4,899 LOC dead backup)

Studio-v2 (5 monoliths split):
- meet/page.tsx (1,481 → 9), messages (1,166 → 9)
- AlertsB2BContext.tsx (1,165 → 5 modules)
- alerts-b2b/page.tsx (1,019 → 6), korrektur/archiv (1,001 → 6)

All existing imports preserved. Zero new TypeScript errors.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-24 17:52:36 +02:00
..

RAG Admin Page Refactoring

Status: Partially Refactored

The large page.tsx (2,964 lines) has been partially split into smaller components.

Structure

website/app/admin/rag/
├── page.tsx                    # Main page (needs update to import components)
├── types.ts                    # Shared type definitions (150 lines)
├── components/
│   ├── index.ts                # Component exports
│   ├── CollectionsTab.tsx      # Collections management (593 lines)
│   ├── UploadTab.tsx           # File upload (327 lines)
│   ├── IngestionTab.tsx        # Ingestion control (512 lines)
│   └── DocumentsTab.tsx        # Document browser (425 lines)
└── wizard/                     # Existing wizard subdirectory

Extracted Components

Component Lines Description
CollectionsTab 593 Collection CRUD, CollectionCard
UploadTab 327 File upload with drag & drop
IngestionTab 512 Ingestion control, progress, history
DocumentsTab 425 Document list, filtering, preview

Remaining in page.tsx

  • SearchTab (~230 lines)
  • MetricsTab (~110 lines)
  • SystemInfoTab (~350 lines)
  • Main component and tab navigation (~290 lines)

TODO

  1. Update page.tsx to import extracted components
  2. Extract remaining tabs (SearchTab, MetricsTab, SystemInfoTab)
  3. Add comprehensive tests

Types

All shared types are in types.ts:

  • Collection, CreateCollectionData
  • IngestionStatus, SearchResult
  • UploadResult, LiveProgress
  • IndexedStats, PendingFile
  • IndexedDocument, DocumentContent
  • SystemInfo, TabId

Usage

import { CollectionsTab, UploadTab, IngestionTab, DocumentsTab } from './components'
import type { Collection, IngestionStatus } from './types'