feat(cortex): Epic 2 - @Mention Systeem (E2.S1-S3)

Inline patient selectie via @naam in de chat input.

YAGNI Versimpeling: 8→4 SP, 5→3 stories
- Geen selectedMentions array (activePatient is al beschikbaar)
- Geen API payload wijziging nodig
- Geen meerdere mentions tracking

E2.S1 - @-detectie:
- Detecteer laatste @ in input
- Track query en startIndex
- Actief als geen space na @ en minimaal 1 char

E2.S2 - PatientMentionDropdown:
- Hergebruik usePatientSearch (debounce 150ms, limit 5)
- Hergebruik PatientListItem (size="sm")
- Positioned above input (bottom-full)
- Escape sluit dropdown

E2.S3 - Selectie flow:
- Vervang @query met @naam in input
- Zet activePatient via usePatientSelection
- Sluit dropdown automatisch

Bouwplan v1.4: Epic 2 compleet (14/19 SP - 74%)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
colinislit
2026-01-03 12:11:14 +01:00
parent 9b0352de44
commit 73894ac879
3 changed files with 164 additions and 14 deletions

View File

@@ -22,6 +22,9 @@ import { Mic, MicOff, Send, Loader2 } from 'lucide-react';
import { useToast } from '@/hooks/use-toast';
import { safeFetch, getErrorInfo } from '@/lib/cortex/error-handler';
import { routeIntentToArtifact } from '@/lib/cortex/action-parser';
import { usePatientSelection } from '@/lib/cortex/hooks/use-patient-selection';
import type { PatientSearchResult } from '@/lib/cortex/hooks/use-patient-search';
import { PatientMentionDropdown } from './patient-mention-dropdown';
export const CommandInput = forwardRef<HTMLInputElement>(function CommandInput(_, ref) {
const {
@@ -52,8 +55,56 @@ export const CommandInput = forwardRef<HTMLInputElement>(function CommandInput(_
const waveformRef = useRef<HTMLCanvasElement>(null);
const animationRef = useRef<number | null>(null);
// @mention state (E2.S1)
const [mentionState, setMentionState] = useState<{
query: string;
startIndex: number;
} | null>(null);
// Patient selection hook (E2.S3)
const { selectPatient } = usePatientSelection({
showSuccessToast: false, // Don't show toast for @mention selection
});
const hasValue = inputValue.trim().length > 0;
// @mention detection (E2.S1)
const detectMention = (value: string) => {
const lastAtIndex = value.lastIndexOf('@');
if (lastAtIndex !== -1) {
const afterAt = value.slice(lastAtIndex + 1);
// Active if: no space after @, and at least 1 char
if (!afterAt.includes(' ') && afterAt.length > 0) {
setMentionState({ query: afterAt, startIndex: lastAtIndex });
return;
}
}
setMentionState(null);
};
// Handle input change with @mention detection
const handleInputChange = (value: string) => {
setInputValue(value);
detectMention(value);
};
// Handle @mention selection (E2.S3)
const handleMentionSelect = (patient: PatientSearchResult) => {
if (!mentionState) return;
// 1. Replace @query with @name in input
const before = inputValue.slice(0, mentionState.startIndex);
const after = inputValue.slice(mentionState.startIndex + mentionState.query.length + 1);
const newValue = `${before}@${patient.name} ${after}`.trim();
setInputValue(newValue);
// 2. Set activePatient via selection hook
selectPatient(patient);
// 3. Close dropdown
setMentionState(null);
};
// Waveform visualization
useEffect(() => {
if (!analyserNode || !waveformRef.current || !isRecording) {
@@ -216,8 +267,17 @@ export const CommandInput = forwardRef<HTMLInputElement>(function CommandInput(_
return (
<footer className="h-16 border-t border-slate-200 flex items-center px-4 shrink-0 bg-white">
<form onSubmit={handleSubmit} className="flex-1 flex items-center gap-2">
{/* Input wrapper with optional waveform */}
{/* Input wrapper with optional waveform and @mention dropdown */}
<div className="relative flex-1">
{/* @mention dropdown (E2.S2) */}
{mentionState && (
<PatientMentionDropdown
query={mentionState.query}
onSelect={handleMentionSelect}
onClose={() => setMentionState(null)}
/>
)}
{/* Waveform canvas (shown when recording) */}
{isRecording && (
<canvas
@@ -232,7 +292,7 @@ export const CommandInput = forwardRef<HTMLInputElement>(function CommandInput(_
ref={ref}
type="text"
value={inputValue}
onChange={(e) => setInputValue(e.target.value)}
onChange={(e) => handleInputChange(e.target.value)}
placeholder={getPlaceholder()}
disabled={isDisabled}
className={`w-full bg-white border rounded-xl py-3 text-slate-900 placeholder:text-slate-400

View File

@@ -0,0 +1,90 @@
'use client';
/**
* PatientMentionDropdown Component
*
* Dropdown for @mention patient selection in CommandInput.
* Positioned above the input, shows search results.
*
* Epic: E2.S2 (Patient Selectie - @Mention)
*/
import { useEffect } from 'react';
import { usePatientSearch, type PatientSearchResult } from '@/lib/cortex/hooks/use-patient-search';
import {
PatientListItem,
PatientListEmpty,
PatientListLoading,
} from '@/components/cortex/shared/patient-list-item';
interface PatientMentionDropdownProps {
/** Current search query (text after @) */
query: string;
/** Called when a patient is selected */
onSelect: (patient: PatientSearchResult) => void;
/** Called when dropdown should close */
onClose: () => void;
}
export function PatientMentionDropdown({
query,
onSelect,
onClose,
}: PatientMentionDropdownProps) {
const { setQuery, results, isSearching } = usePatientSearch({
debounceMs: 150,
limit: 5,
minQueryLength: 2,
});
// Sync query to search hook
useEffect(() => {
setQuery(query);
}, [query, setQuery]);
// Close on Escape
useEffect(() => {
const handleKeyDown = (e: KeyboardEvent) => {
if (e.key === 'Escape') {
e.preventDefault();
e.stopPropagation();
onClose();
}
};
document.addEventListener('keydown', handleKeyDown);
return () => document.removeEventListener('keydown', handleKeyDown);
}, [onClose]);
return (
<div
className="absolute bottom-full left-0 mb-2 w-72 bg-white border border-slate-200 rounded-lg shadow-lg z-50 overflow-hidden"
role="listbox"
aria-label="Patient zoekresultaten"
>
{isSearching ? (
<PatientListLoading message="Zoeken..." />
) : query.length < 2 ? (
<div className="p-3 text-sm text-slate-500 text-center">
Typ minimaal 2 karakters
</div>
) : results.length > 0 ? (
<div className="p-1 space-y-0.5 max-h-64 overflow-y-auto">
{results.map((patient) => (
<PatientListItem
key={patient.id}
patient={patient}
onClick={() => onSelect(patient)}
size="sm"
/>
))}
</div>
) : (
<PatientListEmpty
message={`Geen resultaten voor "@${query}"`}
submessage="Probeer een andere naam"
/>
)}
</div>
);
}