Files
breakpilot-compliance/admin-compliance/app/sdk/agent/_components/AgentResultView.tsx
T
Benjamin Admin ba7d98be36 feat(reconcile): B — Cross-Doc-Reconciliation (Pflicht in anderem Doc erfüllt)
Ein 'X fehlt'/'zu prüfen'-Finding wird unterdrückt, wenn die Pflicht in einem
ANDEREN Snapshot-Dokument erfüllt ist (z.B. § 36 VSBG / OS-Link stehen bei BMW
in AGB/'Rechtlicher Hinweis', nicht im Impressum → war False Positive).
Konservative Allowlist (impressum: verbraucher_streitbeilegung, odr_link) gegen
False-Reconciliation. Verdrahtet in _run_doc_agent (alle Doc-Checks). Frontend:
'In anderem Dokument abgedeckt'-Sektion. Greift voll nach Scan + Legal-Capture.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-11 15:42:16 +02:00

129 lines
4.5 KiB
TypeScript

'use client'
/**
* AgentResultView — der geteilte Render-Body eines AgentOutput:
* MC-Coverage + Speedometer + Eskalationslog + Findings (HIGH→LOW) +
* konsolidierte Maßnahmen. KEIN Header — den setzt der Consumer
* (AgentSlotCard = Agent-Test-Slot, AgentResultTab = Themen-Tab).
*
* Dieser View ist die "Karten"-Darstellung für Themen mit wenigen
* Findings (z.B. Impressum). Dichte Themen (Cookie, bis ~1000 Zeilen)
* bekommen später einen eigenen Tabellen-View im gleichen Tab-Rahmen.
*/
import React, { useState } from 'react'
import type { Severity, SlotOutput } from './_agentTypes'
import { AgentFindingCard } from './AgentFindingCard'
import { AgentPflichtTable } from './AgentPflichtTable'
import { AgentRecommendationCard } from './AgentRecommendationCard'
import { AgentSpeedometer } from './AgentSpeedometer'
const SEV_ORDER: Record<Severity, number> = {
HIGH: 0, MEDIUM: 1, LOW: 2, INFO: 3,
}
const INITIAL_VISIBLE = 12
type Reconciled = { title?: string; field_id?: string; norm?: string; reconciled_in_label?: string; reconciled_in?: string }
export function AgentResultView({ output }: { output: SlotOutput }) {
const [showAll, setShowAll] = useState(false)
const reconciled = (output as { reconciled?: Reconciled[] }).reconciled || []
const sortedFindings = [...output.findings].sort(
(a, b) => SEV_ORDER[a.severity] - SEV_ORDER[b.severity],
)
const visible = showAll
? sortedFindings
: sortedFindings.slice(0, INITIAL_VISIBLE)
return (
<div className="space-y-3">
{output.notes && (
<div className="text-xs text-amber-700 bg-amber-50 px-2 py-1 rounded">
Hinweis: {output.notes}
</div>
)}
<AgentPflichtTable coverage={output.mc_coverage} />
<AgentSpeedometer
total={output.mc_total}
ok={output.mc_ok}
na={output.mc_na}
high={output.mc_high}
medium={output.mc_medium}
low={output.mc_low}
/>
{output.escalation_log.length > 0 && (
<div className="text-xs text-gray-600 border-l-2 border-violet-400 pl-2 space-y-0.5">
<div className="font-semibold text-violet-700">
LLM-Eskalation eingesetzt:
</div>
{output.escalation_log.map((e, i) => (
<div key={i}>
{e.stage} <code className="text-violet-700">{e.model}</code>{' '}
· {e.duration_ms} ms{' '}
{e.tokens_in ? `· ${e.tokens_in}${e.tokens_out} tok` : ''}{' '}
{e.success ? '✓' : `${e.error || ''}`}
</div>
))}
</div>
)}
{sortedFindings.length > 0 && (
<div className="space-y-2">
<div className="text-xs font-semibold uppercase text-gray-700">
Findings ({sortedFindings.length}) nach Schwere sortiert
</div>
<div className="space-y-2">
{visible.map(f => (
<AgentFindingCard key={f.check_id} f={f} />
))}
</div>
{sortedFindings.length > INITIAL_VISIBLE && (
<button
onClick={() => setShowAll(x => !x)}
className="text-xs text-blue-600 hover:underline"
>
{showAll
? 'Weniger anzeigen'
: `Alle ${sortedFindings.length} anzeigen`}
</button>
)}
</div>
)}
{reconciled.length > 0 && (
<div className="space-y-1">
<div className="text-xs font-semibold uppercase text-green-700">
In anderem Dokument abgedeckt ({reconciled.length})
</div>
{reconciled.map((f, i) => (
<div key={i} className="text-xs text-gray-600 bg-green-50 border border-green-100 px-2 py-1 rounded">
{f.title || f.field_id}
<span className="text-gray-400"> gefunden in </span>
<strong>{f.reconciled_in_label || f.reconciled_in}</strong>
{f.norm && <span className="text-gray-400"> · {f.norm}</span>}
</div>
))}
</div>
)}
{output.recommendations.length > 0 && (
<div className="space-y-2">
<div className="text-xs font-semibold uppercase text-gray-700">
Maßnahmen-Plan ({output.recommendations.length} konsolidiert)
</div>
<div className="space-y-2">
{output.recommendations.map(r => (
<AgentRecommendationCard key={r.recommendation_id} r={r} />
))}
</div>
</div>
)}
</div>
)
}