Recovered from git history (commit be14578) — the vanilla recording UI
was deleted during the "minimum-viable" note ports without being
re-implemented. Every note page now gets the full vanilla behavior
back:
Recording (Encounter, Dictation, SOAP, Sick Visit, Hospital Course):
• AudioRecorder — MediaRecorder mono/16kHz/EC+NS/opus 32kbps
• Pause / Resume (native where supported, restart-on-same-stream
fallback for Safari)
• Live preview via Web Speech API (opt-in in Settings)
• On stop → upload to /api/transcribe; fall back to live preview
if server unavailable or blob > 24 MB
• Failed uploads → /api/audio-backups (IndexedDB fallback)
Save / Load / New-patient toolbar (all 7 note pages):
• sessionStorage keys _savedEncId_<type> + _idempKey_<type>
survive page refresh + sign-out within the same tab
• Optimistic locking via expected_version (409 → "Someone else
edited this encounter")
• Load popover lists saved encounters of matching type only
• Draft #N chip shows current session-bound row
Well Visit and Chart Review: toolbar only — vanilla had no recorder
on those tabs (paste-based workflows).
New components:
client/src/components/Recorder.tsx
client/src/components/EncounterToolbar.tsx
New libraries:
client/src/lib/recorder.ts — AudioRecorder class
client/src/lib/transcribe.ts — /api/transcribe + audio backup
client/src/lib/web-speech.ts — webkit speech preview + dedupe
client/src/lib/encounter-persistence.ts — save/load/version tracking
167 lines
8.2 KiB
TypeScript
167 lines
8.2 KiB
TypeScript
// ============================================================
|
|
// WELL VISIT — /api/well-visit/note (minimum-viable single-pane
|
|
// port; the vanilla tab has 4 sub-panes for byvisit / milestones /
|
|
// SSHADESS / note — each becomes its own sub-route or tab in a
|
|
// follow-up commit).
|
|
// ============================================================
|
|
|
|
import { useState } from 'react';
|
|
import { useMutation } from '@tanstack/react-query';
|
|
import { api, ApiError } from '@/lib/api';
|
|
import type { VisitNoteOk } from '@/shared/types';
|
|
import EncounterToolbar from '@/components/EncounterToolbar';
|
|
|
|
const TYPE = 'wellvisit' as const;
|
|
|
|
export default function WellVisit() {
|
|
const [label, setLabel] = useState('');
|
|
const [patientAge, setPatientAge] = useState('');
|
|
const [patientGender, setPatientGender] = useState('');
|
|
const [visitAge, setVisitAge] = useState('');
|
|
const [vitals, setVitals] = useState('');
|
|
const [measurements, setMeasurements] = useState('');
|
|
const [parentConcerns, setParentConcerns] = useState('');
|
|
const [transcript, setTranscript] = useState('');
|
|
const [screenings, setScreenings] = useState('');
|
|
const [vaccines, setVaccines] = useState('');
|
|
const [noteStyle, setNoteStyle] = useState<'full' | 'short'>('full');
|
|
const [result, setResult] = useState<string | null>(null);
|
|
|
|
const generate = useMutation<VisitNoteOk, Error, any>({
|
|
mutationFn: (body) => api.post<VisitNoteOk>('/api/well-visit/note', body),
|
|
onSuccess: (data) => setResult(data.note),
|
|
});
|
|
|
|
function submit(e: React.FormEvent) {
|
|
e.preventDefault();
|
|
setResult(null);
|
|
generate.mutate({
|
|
patientAge, patientGender, visitAge,
|
|
vitals, measurements, parentConcerns,
|
|
transcript, screenings, vaccines,
|
|
noteStyle,
|
|
});
|
|
}
|
|
|
|
const input = 'w-full rounded-md border border-input bg-background px-3 py-2 text-sm';
|
|
|
|
return (
|
|
<div className="max-w-4xl mx-auto p-6 space-y-4">
|
|
<header>
|
|
<h1 className="text-2xl font-semibold">Well Visit</h1>
|
|
<p className="text-sm text-muted-foreground">
|
|
Preventive-care note generation. Milestones and SSHADESS sub-tabs land in a follow-up; this first port covers the Visit Note pane.
|
|
</p>
|
|
</header>
|
|
|
|
<EncounterToolbar
|
|
type={TYPE}
|
|
label={label} setLabel={setLabel}
|
|
transcript={transcript} generatedNote={result || ''}
|
|
partialData={{ age: patientAge, gender: patientGender, visitAge, vitals, measurements, parentConcerns, screenings, vaccines, noteStyle }}
|
|
onLoad={(enc) => {
|
|
setTranscript(enc.transcript || '');
|
|
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?.visitAge) setVisitAge(pd.visitAge);
|
|
if (pd?.vitals) setVitals(pd.vitals);
|
|
if (pd?.measurements) setMeasurements(pd.measurements);
|
|
if (pd?.parentConcerns) setParentConcerns(pd.parentConcerns);
|
|
if (pd?.screenings) setScreenings(pd.screenings);
|
|
if (pd?.vaccines) setVaccines(pd.vaccines);
|
|
if (pd?.noteStyle) setNoteStyle(pd.noteStyle);
|
|
} catch { /* ignore */ }
|
|
setLabel(enc.label || '');
|
|
}}
|
|
onClear={() => {
|
|
setTranscript(''); setResult(null);
|
|
setPatientAge(''); setPatientGender(''); setVisitAge('');
|
|
setVitals(''); setMeasurements(''); setParentConcerns('');
|
|
setScreenings(''); setVaccines(''); setNoteStyle('full');
|
|
}}
|
|
/>
|
|
|
|
<form onSubmit={submit} className="space-y-4">
|
|
<div className="grid grid-cols-3 gap-3">
|
|
<label className="flex flex-col gap-1">
|
|
<span className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">Age</span>
|
|
<input className={input} value={patientAge} onChange={(e) => setPatientAge(e.target.value)} />
|
|
</label>
|
|
<label className="flex flex-col gap-1">
|
|
<span className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">Gender</span>
|
|
<select className={input} value={patientGender} onChange={(e) => setPatientGender(e.target.value)}>
|
|
<option value="">Select</option><option>Male</option><option>Female</option>
|
|
</select>
|
|
</label>
|
|
<label className="flex flex-col gap-1">
|
|
<span className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">Visit age</span>
|
|
<input className={input} placeholder="e.g. 6 months" value={visitAge} onChange={(e) => setVisitAge(e.target.value)} />
|
|
</label>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-2 gap-3">
|
|
<label className="flex flex-col gap-1">
|
|
<span className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">Vital signs</span>
|
|
<textarea className={input + ' min-h-[60px] font-mono text-xs'} value={vitals} onChange={(e) => setVitals(e.target.value)} />
|
|
</label>
|
|
<label className="flex flex-col gap-1">
|
|
<span className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">Measurements / growth</span>
|
|
<textarea className={input + ' min-h-[60px] font-mono text-xs'} value={measurements} onChange={(e) => setMeasurements(e.target.value)} />
|
|
</label>
|
|
</div>
|
|
|
|
<label className="flex flex-col gap-1">
|
|
<span className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">Parent / patient concerns</span>
|
|
<textarea className={input + ' min-h-[60px] text-sm'} value={parentConcerns} onChange={(e) => setParentConcerns(e.target.value)} />
|
|
</label>
|
|
|
|
<label className="flex flex-col gap-1">
|
|
<span className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">Transcript / dictation</span>
|
|
<textarea className={input + ' min-h-[160px] font-mono text-sm'} value={transcript} onChange={(e) => setTranscript(e.target.value)} />
|
|
</label>
|
|
|
|
<div className="grid grid-cols-2 gap-3">
|
|
<label className="flex flex-col gap-1">
|
|
<span className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">Screenings completed</span>
|
|
<textarea className={input + ' min-h-[60px] text-xs'} value={screenings} onChange={(e) => setScreenings(e.target.value)} />
|
|
</label>
|
|
<label className="flex flex-col gap-1">
|
|
<span className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">Immunizations today</span>
|
|
<textarea className={input + ' min-h-[60px] text-xs'} value={vaccines} onChange={(e) => setVaccines(e.target.value)} />
|
|
</label>
|
|
</div>
|
|
|
|
<label className="flex flex-col gap-1">
|
|
<span className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">Note style</span>
|
|
<select className={input} value={noteStyle} onChange={(e) => setNoteStyle(e.target.value as 'full' | 'short')}>
|
|
<option value="full">Full encounter note</option>
|
|
<option value="short">Brief SOAP</option>
|
|
</select>
|
|
</label>
|
|
|
|
{generate.error && <div className="text-sm text-destructive">{(generate.error as ApiError).message}</div>}
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={generate.isPending || (!patientAge.trim() && !visitAge.trim())}
|
|
className="rounded-md bg-primary text-primary-foreground px-4 py-2 text-sm font-medium disabled:opacity-50"
|
|
>
|
|
{generate.isPending ? 'Generating…' : 'Generate Well Visit Note'}
|
|
</button>
|
|
</form>
|
|
|
|
{result && (
|
|
<section className="rounded-lg border border-border bg-card">
|
|
<header className="px-4 py-2 border-b border-border flex items-center justify-between bg-muted/40">
|
|
<h2 className="text-sm font-semibold">Well Visit Note</h2>
|
|
<button onClick={() => navigator.clipboard.writeText(result)} className="text-xs text-muted-foreground underline">Copy</button>
|
|
</header>
|
|
<div className="p-4 whitespace-pre-wrap text-sm">{result}</div>
|
|
</section>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|