f9b7ba2424
Builds the FE against the SDK<->FE Clarity-Gate contract (board 2026-07-01 /
advisor-clarity-gate-contract). The advisor is now a CASE, not a chat:
- Request {question, context?}; response {mode: clarify|answer, clarity, general_answer,
answer, evidence, citations, visual_evidence, footnotes}.
- clarify mode: short L1 general answer (marked "allgemeine Definition, ohne Rechtsquelle")
+ domain context chips; picking a chip re-runs the case scoped (-> answer).
- answer mode: markdown answer with clickable [n] citation markers coupled to evidence
cards (highlight + scroll), evidence grouped by document family, visual_evidence
(visual_type), footnotes, honest summary counts (no trust score).
- FE never parses the answer for structure — only the deliberate [n] markers, mapped via
citations[]. New: contract.ts, useAdvisorCase, useCitationHighlight, ClarifyView,
EvidenceUnitCard, VisualEvidencePane, CaseView. Removed the v2 stream/chat components.
NOT deployed: FE shape-switch (JSON modes) must deploy TOGETHER with the SDK endpoint
delivering the contract (board deploy-coupling). Proxy/route.ts unchanged (SDK-owned).
tsc clean, 16 vitest (incl. clarify+answer fixtures), check-loc 0.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
155 lines
5.9 KiB
TypeScript
155 lines
5.9 KiB
TypeScript
'use client'
|
|
|
|
import { useCallback, useState } from 'react'
|
|
import { Check, Loader2, Mail, Maximize2, MessagesSquare, Minimize2, Send, Square, X } from 'lucide-react'
|
|
import { EXAMPLE_QUESTIONS } from './advisor/EmptyState'
|
|
import { EvidenceWorkspace } from './advisor/EvidenceWorkspace'
|
|
import { useAdvisorCase } from './advisor/useAdvisorCase'
|
|
import { useAdvisorEmail } from './advisor/useAdvisorEmail'
|
|
|
|
interface ComplianceAdvisorWidgetProps {
|
|
currentStep?: string
|
|
}
|
|
|
|
type Country = 'DE' | 'AT' | 'CH' | 'EU'
|
|
const COUNTRIES: Country[] = ['DE', 'AT', 'CH', 'EU']
|
|
|
|
/**
|
|
* Compliance Advisor — a floating Case Workspace on every SDK page.
|
|
* Renders ONLY structured SDK data (clarify/answer contract); it never parses the answer text.
|
|
* See memory: advisor-evidence-workspace-no-parse, advisor-clarity-gate-contract.
|
|
*/
|
|
export function ComplianceAdvisorWidget({ currentStep = 'default' }: ComplianceAdvisorWidgetProps) {
|
|
const [isOpen, setIsOpen] = useState(false)
|
|
const [isExpanded, setIsExpanded] = useState(false)
|
|
const [inputValue, setInputValue] = useState('')
|
|
const [country, setCountry] = useState<Country>('DE')
|
|
|
|
const { cases, busy, ask, selectContext, stop } = useAdvisorCase({ currentStep, country })
|
|
const email = useAdvisorEmail(cases, country, currentStep)
|
|
const exampleQuestions = EXAMPLE_QUESTIONS[currentStep] || EXAMPLE_QUESTIONS.default
|
|
|
|
const submit = useCallback(
|
|
(q: string) => {
|
|
if (!q.trim() || busy) return
|
|
setInputValue('')
|
|
ask(q)
|
|
},
|
|
[busy, ask],
|
|
)
|
|
|
|
const onKeyDown = (e: React.KeyboardEvent) => {
|
|
if (e.key === 'Enter' && !e.shiftKey) {
|
|
e.preventDefault()
|
|
submit(inputValue)
|
|
}
|
|
}
|
|
|
|
if (!isOpen) {
|
|
return (
|
|
<button
|
|
onClick={() => setIsOpen(true)}
|
|
className="fixed bottom-6 right-[5.5rem] z-50 flex h-14 w-14 items-center justify-center rounded-full bg-indigo-600 text-white shadow-lg transition-all duration-200 hover:scale-110 hover:bg-indigo-700"
|
|
aria-label="Compliance Advisor oeffnen"
|
|
>
|
|
<MessagesSquare className="h-6 w-6" />
|
|
</button>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className={`fixed bottom-6 right-6 z-50 flex max-h-screen flex-col rounded-2xl border border-gray-200 bg-white shadow-2xl transition-all duration-200 ${
|
|
isExpanded ? 'h-[85vh] w-[960px]' : 'h-[560px] w-[420px]'
|
|
}`}
|
|
>
|
|
<div className="flex items-center justify-between rounded-t-2xl bg-gradient-to-r from-purple-600 to-indigo-600 px-4 py-3 text-white">
|
|
<div className="flex items-center gap-2">
|
|
<div className="flex h-8 w-8 items-center justify-center rounded-full bg-white/20">
|
|
<MessagesSquare className="h-5 w-5" />
|
|
</div>
|
|
<div>
|
|
<div className="text-sm font-semibold">Compliance Advisor</div>
|
|
<div className="mt-0.5 flex items-center gap-1">
|
|
{COUNTRIES.map((c) => (
|
|
<button
|
|
key={c}
|
|
onClick={() => setCountry(c)}
|
|
className={`rounded px-1.5 py-0.5 text-[10px] font-medium transition-colors ${
|
|
country === c ? 'bg-white text-indigo-700' : 'bg-white/15 text-white/80 hover:bg-white/25'
|
|
}`}
|
|
>
|
|
{c}
|
|
</button>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="flex items-center gap-1">
|
|
{cases.length > 0 && (
|
|
<button
|
|
onClick={email.send}
|
|
disabled={email.sending}
|
|
className={`text-white/80 transition-colors hover:text-white ${email.sent ? 'text-green-300' : ''}`}
|
|
title={email.sent ? 'Email gesendet!' : 'Beratungsprotokoll als Email senden'}
|
|
aria-label="Als Email an DSB senden"
|
|
>
|
|
{email.sent ? <Check className="h-5 w-5" /> : email.sending ? <Loader2 className="h-5 w-5 animate-spin" /> : <Mail className="h-5 w-5" />}
|
|
</button>
|
|
)}
|
|
<button
|
|
onClick={() => setIsExpanded((v) => !v)}
|
|
className="text-white/80 transition-colors hover:text-white"
|
|
aria-label={isExpanded ? 'Verkleinern' : 'Vergroessern'}
|
|
>
|
|
{isExpanded ? <Minimize2 className="h-5 w-5" /> : <Maximize2 className="h-5 w-5" />}
|
|
</button>
|
|
<button
|
|
onClick={() => setIsOpen(false)}
|
|
className="text-white/80 transition-colors hover:text-white"
|
|
aria-label="Schliessen"
|
|
>
|
|
<X className="h-5 w-5" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<EvidenceWorkspace
|
|
cases={cases}
|
|
expanded={isExpanded}
|
|
busy={busy}
|
|
exampleQuestions={exampleQuestions}
|
|
onExample={submit}
|
|
onSelectContext={selectContext}
|
|
/>
|
|
|
|
<div className="rounded-b-2xl border-t border-gray-200 bg-white p-3">
|
|
<div className="flex gap-2">
|
|
<input
|
|
type="text"
|
|
value={inputValue}
|
|
onChange={(e) => setInputValue(e.target.value)}
|
|
onKeyDown={onKeyDown}
|
|
placeholder="Frage eingeben..."
|
|
disabled={busy}
|
|
className="flex-1 rounded-lg border border-gray-300 px-3 py-2 text-sm focus:border-transparent focus:outline-none focus:ring-2 focus:ring-purple-500 disabled:opacity-50"
|
|
/>
|
|
{busy ? (
|
|
<button onClick={stop} className="rounded-lg bg-red-500 px-4 py-2 text-white transition-colors hover:bg-red-600" title="Abbrechen">
|
|
<Square className="h-5 w-5" />
|
|
</button>
|
|
) : (
|
|
<button
|
|
onClick={() => submit(inputValue)}
|
|
disabled={!inputValue.trim()}
|
|
className="rounded-lg bg-indigo-600 px-4 py-2 text-white transition-colors hover:bg-indigo-700 disabled:cursor-not-allowed disabled:opacity-50"
|
|
>
|
|
<Send className="h-5 w-5" />
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|