Phase 1 — Python (klausur-service): 5 monoliths → 36 files - dsfa_corpus_ingestion.py (1,828 LOC → 5 files) - cv_ocr_engines.py (2,102 LOC → 7 files) - cv_layout.py (3,653 LOC → 10 files) - vocab_worksheet_api.py (2,783 LOC → 8 files) - grid_build_core.py (1,958 LOC → 6 files) Phase 2 — Go (edu-search-service, school-service): 8 monoliths → 19 files - staff_crawler.go (1,402 → 4), policy/store.go (1,168 → 3) - policy_handlers.go (700 → 2), repository.go (684 → 2) - search.go (592 → 2), ai_extraction_handlers.go (554 → 2) - seed_data.go (591 → 2), grade_service.go (646 → 2) Phase 3 — TypeScript (admin-lehrer): 45 monoliths → 220+ files - sdk/types.ts (2,108 → 16 domain files) - ai/rag/page.tsx (2,686 → 14 files) - 22 page.tsx files split into _components/ + _hooks/ - 11 component files split into sub-components - 10 SDK data catalogs added to loc-exceptions - Deleted dead backup index_original.ts (4,899 LOC) All original public APIs preserved via re-export facades. Zero new errors: Python imports verified, Go builds clean, TypeScript tsc --noEmit shows only pre-existing errors. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
79 lines
3.1 KiB
TypeScript
79 lines
3.1 KiB
TypeScript
'use client'
|
|
|
|
import type { Profile } from '../types'
|
|
|
|
interface ProfileTabProps {
|
|
profile: Profile | null
|
|
}
|
|
|
|
export function ProfileTab({ profile }: ProfileTabProps) {
|
|
return (
|
|
<div className="max-w-2xl space-y-6">
|
|
<div className="bg-white rounded-xl border border-slate-200 p-6">
|
|
<h3 className="font-semibold text-slate-900 mb-4">Relevanzprofil</h3>
|
|
|
|
<div className="space-y-4">
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-700 mb-2">
|
|
Prioritaeten (wichtige Themen)
|
|
</label>
|
|
<textarea
|
|
className="w-full p-3 border border-slate-200 rounded-lg text-sm focus:ring-2 focus:ring-green-500 focus:border-green-500"
|
|
rows={4}
|
|
defaultValue={profile?.priorities?.join('\n') || ''}
|
|
placeholder="Ein Thema pro Zeile..."
|
|
/>
|
|
<p className="text-xs text-slate-500 mt-1">Alerts zu diesen Themen werden hoeher bewertet.</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-700 mb-2">
|
|
Ausschluesse (unerwuenschte Themen)
|
|
</label>
|
|
<textarea
|
|
className="w-full p-3 border border-slate-200 rounded-lg text-sm focus:ring-2 focus:ring-green-500 focus:border-green-500"
|
|
rows={4}
|
|
defaultValue={profile?.exclusions?.join('\n') || ''}
|
|
placeholder="Ein Thema pro Zeile..."
|
|
/>
|
|
<p className="text-xs text-slate-500 mt-1">Alerts zu diesen Themen werden niedriger bewertet.</p>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-2 gap-4">
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-700 mb-2">
|
|
Schwellenwert KEEP
|
|
</label>
|
|
<select
|
|
className="w-full p-3 border border-slate-200 rounded-lg text-sm focus:ring-2 focus:ring-green-500 focus:border-green-500"
|
|
defaultValue={profile?.policies?.keep_threshold || 0.7}
|
|
>
|
|
<option value={0.8}>80% (sehr streng)</option>
|
|
<option value={0.7}>70% (empfohlen)</option>
|
|
<option value={0.6}>60% (weniger streng)</option>
|
|
</select>
|
|
</div>
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-700 mb-2">
|
|
Schwellenwert DROP
|
|
</label>
|
|
<select
|
|
className="w-full p-3 border border-slate-200 rounded-lg text-sm focus:ring-2 focus:ring-green-500 focus:border-green-500"
|
|
defaultValue={profile?.policies?.drop_threshold || 0.3}
|
|
>
|
|
<option value={0.4}>40% (strenger)</option>
|
|
<option value={0.3}>30% (empfohlen)</option>
|
|
<option value={0.2}>20% (lockerer)</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<button className="px-4 py-2 bg-green-600 text-white rounded-lg text-sm font-medium hover:bg-green-700">
|
|
Profil speichern
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|