Files
triqura-ecd/components/cortex/chat/chat-input.tsx
colinislit cdeea793bd feat(cortex): update chat/nudge flow, deepgram streaming and agenda form
Refines chat panel, nudge messages and artifact rendering, reworks
deepgram token/streaming handling, and adds test tooling deps
(playwright, cypress) to package.json.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-09 22:37:46 +02:00

335 lines
9.6 KiB
TypeScript

'use client';
/**
* Chat Input Component (v3.0)
*
* Text input onderaan chat panel met Enter to submit en Shift+Enter voor nieuwe regel.
*
* Epic: E2 (Chat Panel & Messages)
* Story: E2.S4 (ChatInput component)
*/
import {
useState,
useRef,
useEffect,
KeyboardEvent,
ChangeEvent,
forwardRef,
useImperativeHandle,
} from 'react';
import { Send, Mic, Square, Loader2 } from 'lucide-react';
import { useCortexStore } from '@/stores/cortex-store';
import { cn } from '@/lib/utils';
import { useCortexVoice } from '@/lib/cortex/use-cortex-voice';
import { usePatientSelection } from '@/lib/cortex/hooks/use-patient-selection';
import type { PatientSearchResult } from '@/lib/cortex/hooks/use-patient-search';
import { PatientMentionDropdown } from '../command-center/patient-mention-dropdown';
interface ChatInputProps {
placeholder?: string;
onSend?: (message: string) => void;
disabled?: boolean;
}
export interface ChatInputHandle {
focus: () => void;
clear: () => void;
setValue: (value: string) => void;
}
export const ChatInput = forwardRef<ChatInputHandle, ChatInputProps>(function ChatInput({
placeholder = 'Typ of spreek wat je wilt doen...',
onSend,
disabled = false,
}, ref) {
const textareaRef = useRef<HTMLTextAreaElement>(null);
const addChatMessage = useCortexStore((s) => s.addChatMessage);
const inputValue = useCortexStore((s) => s.inputValue);
const setInputValue = useCortexStore((s) => s.setInputValue);
const clearInput = useCortexStore((s) => s.clearInput);
const {
isRecording,
isConnecting,
error: voiceError,
startRecording,
stopRecording,
isBrowserSupported,
} = useCortexVoice();
// @mention state (E2)
const [mentionState, setMentionState] = useState<{
query: string;
startIndex: number;
} | null>(null);
// Patient selection hook
const { selectPatient } = usePatientSelection({
showSuccessToast: false,
});
useEffect(() => {
if (!textareaRef.current) return;
textareaRef.current.style.height = 'auto';
textareaRef.current.style.height = `${textareaRef.current.scrollHeight}px`;
}, [inputValue]);
// Expose focus, clear, and setValue methods to parent
useImperativeHandle(ref, () => ({
focus: () => {
textareaRef.current?.focus();
},
clear: () => {
clearInput();
if (textareaRef.current) {
textareaRef.current.style.height = 'auto';
}
},
setValue: (value: string) => {
setInputValue(value);
// Auto-resize after setting value
if (textareaRef.current) {
textareaRef.current.style.height = 'auto';
// Use setTimeout to ensure the value is set before measuring
setTimeout(() => {
if (textareaRef.current) {
textareaRef.current.style.height = `${textareaRef.current.scrollHeight}px`;
}
}, 0);
}
// Focus the input after setting value
textareaRef.current?.focus();
},
}));
// @mention detection
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 @mention selection
const handleMentionSelect = (patient: PatientSearchResult) => {
if (!mentionState) return;
// 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);
// Set activePatient
selectPatient(patient);
// Close dropdown
setMentionState(null);
// Focus back on textarea
textareaRef.current?.focus();
};
// Handle input change and auto-resize
const handleChange = (e: ChangeEvent<HTMLTextAreaElement>) => {
const value = e.target.value;
setInputValue(value);
detectMention(value);
// Auto-resize textarea
if (textareaRef.current) {
textareaRef.current.style.height = 'auto';
textareaRef.current.style.height = `${textareaRef.current.scrollHeight}px`;
}
};
// Handle submit
const handleSubmit = () => {
const trimmedValue = inputValue.trim();
if (!trimmedValue || disabled) return;
// Add user message to store
addChatMessage({
type: 'user',
content: trimmedValue,
});
if (isRecording) {
stopRecording();
}
// Call optional onSend callback
onSend?.(trimmedValue);
// Clear input
clearInput();
// Reset textarea height
if (textareaRef.current) {
textareaRef.current.style.height = 'auto';
}
// Focus back on textarea
textareaRef.current?.focus();
};
// Handle keyboard shortcuts
const handleKeyDown = (e: KeyboardEvent<HTMLTextAreaElement>) => {
// Enter to submit (unless Shift is pressed)
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
handleSubmit();
}
// Escape: close dropdown first, then clear input
if (e.key === 'Escape') {
e.preventDefault();
if (mentionState) {
setMentionState(null);
return;
}
if (isRecording) {
stopRecording();
}
clearInput();
if (textareaRef.current) {
textareaRef.current.style.height = 'auto';
}
}
// Shift+Enter for new line (default behavior, no need to handle)
};
const handleVoiceClick = async () => {
if (disabled || isConnecting || !isBrowserSupported) return;
if (isRecording) {
stopRecording();
textareaRef.current?.focus();
return;
}
await startRecording();
textareaRef.current?.focus();
};
return (
<div className="border-t border-slate-200 p-4 bg-white">
<div className="relative flex items-end gap-2">
{/* @mention dropdown */}
{mentionState && (
<PatientMentionDropdown
query={mentionState.query}
onSelect={handleMentionSelect}
onClose={() => setMentionState(null)}
/>
)}
{/* Textarea input */}
<textarea
ref={textareaRef}
value={inputValue}
onChange={handleChange}
onKeyDown={handleKeyDown}
placeholder={placeholder}
disabled={disabled}
rows={1}
className={cn(
'flex-1 px-4 py-3 pr-12',
'rounded-lg border border-slate-300',
'focus:border-brand-600 focus:ring-2 focus:ring-brand-600/20',
'outline-none resize-none',
'text-slate-900 placeholder:text-slate-400',
'max-h-32 overflow-y-auto',
'transition-colors',
disabled && 'opacity-50 cursor-not-allowed'
)}
style={{ minHeight: '48px' }}
/>
{/* Voice input button */}
<button
type="button"
onClick={handleVoiceClick}
className={cn(
'absolute right-12 bottom-3',
'text-slate-400 hover:text-slate-600',
'transition-colors p-1.5 rounded-md hover:bg-slate-100',
isRecording && 'text-red-600 hover:text-red-700 bg-red-50 hover:bg-red-100',
isConnecting && 'text-amber-600 bg-amber-50',
(disabled || !isBrowserSupported) && 'opacity-50 cursor-not-allowed'
)}
disabled={disabled || isConnecting || !isBrowserSupported}
aria-label={isRecording ? 'Stop spraakopname' : 'Start spraakopname'}
aria-pressed={isRecording}
title={
!isBrowserSupported
? 'Spraakopname wordt niet ondersteund in deze browser'
: isRecording
? 'Stop opname'
: 'Spreek je Cortex opdracht in'
}
>
{isConnecting ? (
<Loader2 className="w-5 h-5 animate-spin" />
) : isRecording ? (
<Square className="w-5 h-5" />
) : (
<Mic className="w-5 h-5" />
)}
</button>
{/* Send button */}
<button
type="button"
onClick={handleSubmit}
disabled={disabled || !inputValue.trim()}
className={cn(
'absolute right-3 bottom-3',
'text-brand-600 hover:text-brand-700',
'transition-all p-1.5 rounded-md',
'hover:bg-brand-50 active:scale-95',
(!inputValue.trim() || disabled) && 'opacity-30 cursor-not-allowed'
)}
aria-label="Verstuur bericht"
title="Verstuur (Enter)"
>
<Send className="w-5 h-5" />
</button>
</div>
{/* Helper text */}
<p className="text-xs text-slate-400 mt-2">
<kbd className="px-1.5 py-0.5 bg-slate-100 border border-slate-300 rounded text-xs">
K
</kbd>{' '}
focus {' '}
<kbd className="px-1.5 py-0.5 bg-slate-100 border border-slate-300 rounded text-xs">
Esc
</kbd>{' '}
clear {' '}
<kbd className="px-1.5 py-0.5 bg-slate-100 border border-slate-300 rounded text-xs">
Enter
</kbd>{' '}
versturen
</p>
{isRecording && (
<p className="mt-2 text-xs text-red-600">
Opname actief. Spreek je opdracht in en druk daarna op Enter.
</p>
)}
{voiceError && (
<p className="mt-2 text-xs text-red-600">
{voiceError}
</p>
)}
</div>
);
});