// ============================================================ // SOAP — transcript → SOAP note via /api/generate-soap // ============================================================ import { useState } from 'react'; import { useMutation } from '@tanstack/react-query'; import { api, ApiError } from '@/lib/api'; import type { SoapOk } from '@/shared/types'; import { SoapRequestSchema, type SoapRequest } from '@/shared/schemas'; import Recorder from '@/components/Recorder'; import EncounterToolbar from '@/components/EncounterToolbar'; import EditableResult from '@/components/EditableResult'; type SoapType = 'full' | 'subjective'; const TYPE = 'soap' as const; export default function Soap() { const [label, setLabel] = useState(''); const [patientAge, setPatientAge] = useState(''); const [patientGender, setPatientGender] = useState(''); const [type, setType] = useState('full'); const [transcript, setTranscript] = useState(''); const [interim, setInterim] = useState(''); const [additionalInstructions, setAdditionalInstructions] = useState(''); const [result, setResult] = useState(null); const [validationError, setValidationError] = useState(null); const [recError, setRecError] = useState(null); const generate = useMutation({ mutationFn: (body) => api.post('/api/generate-soap', body), onSuccess: (data) => setResult(data.soap), }); function submit(e: React.FormEvent) { e.preventDefault(); setValidationError(null); const body: SoapRequest = { transcript: (interim || transcript).trim(), patientAge, patientGender, type, additionalInstructions }; const parsed = SoapRequestSchema.safeParse(body); if (!parsed.success) { setValidationError(parsed.error.issues.map((i: { message: string }) => i.message).join(', ')); return; } setResult(null); generate.mutate(parsed.data); } const input = 'w-full rounded-md border border-input bg-background px-3 py-2 text-sm'; const displayedTranscript = interim || transcript; return (

SOAP Note

Encounter transcript → full SOAP or subjective-only narrative.

{ setTranscript(enc.transcript || ''); setInterim(''); setResult(enc.generated_note || null); try { const pd = enc.partial_data ? JSON.parse(enc.partial_data) : null; if (pd?.age) setPatientAge(pd.age); if (pd?.gender) setPatientGender(pd.gender); if (pd?.type) setType(pd.type); if (pd?.additionalInstructions) setAdditionalInstructions(pd.additionalInstructions); } catch { /* ignore */ } setLabel(enc.label || ''); }} onClear={() => { setTranscript(''); setInterim(''); setResult(null); setValidationError(null); setPatientAge(''); setPatientGender(''); setType('full'); setAdditionalInstructions(''); }} />
{ setTranscript((prev) => (meta.appended ? (prev ? prev + ' ' + text : text) : text)); setInterim(''); setRecError(null); }} onInterim={(t) => setInterim(t ? (transcript ? transcript + ' ' + t : t) : '')} onError={(msg) => setRecError(msg)} /> {recError &&
{recError}
}