- Removed the instruction text for sending messages (Enter to send, Shift+Enter for new line) from the ChatInput component to streamline the UI.
83 lines
2.3 KiB
TypeScript
83 lines
2.3 KiB
TypeScript
/**
|
|
* Chat Input Component
|
|
* Textarea with send button. Enter to send, Shift+Enter for new line.
|
|
*/
|
|
import { useState, useRef, useEffect, useCallback } from 'react';
|
|
import { Send, Square } from 'lucide-react';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Textarea } from '@/components/ui/textarea';
|
|
|
|
interface ChatInputProps {
|
|
onSend: (text: string) => void;
|
|
disabled?: boolean;
|
|
sending?: boolean;
|
|
}
|
|
|
|
export function ChatInput({ onSend, disabled = false, sending = false }: ChatInputProps) {
|
|
const [input, setInput] = useState('');
|
|
const textareaRef = useRef<HTMLTextAreaElement>(null);
|
|
|
|
// Auto-resize textarea
|
|
useEffect(() => {
|
|
if (textareaRef.current) {
|
|
textareaRef.current.style.height = 'auto';
|
|
textareaRef.current.style.height = `${Math.min(textareaRef.current.scrollHeight, 200)}px`;
|
|
}
|
|
}, [input]);
|
|
|
|
const handleSend = useCallback(() => {
|
|
const trimmed = input.trim();
|
|
if (!trimmed || disabled || sending) return;
|
|
onSend(trimmed);
|
|
setInput('');
|
|
// Reset textarea height
|
|
if (textareaRef.current) {
|
|
textareaRef.current.style.height = 'auto';
|
|
}
|
|
}, [input, disabled, sending, onSend]);
|
|
|
|
const handleKeyDown = useCallback(
|
|
(e: React.KeyboardEvent) => {
|
|
if (e.key === 'Enter' && !e.shiftKey) {
|
|
e.preventDefault();
|
|
handleSend();
|
|
}
|
|
},
|
|
[handleSend],
|
|
);
|
|
|
|
return (
|
|
<div className="border-t bg-background p-4">
|
|
<div className="flex items-end gap-2 max-w-4xl mx-auto">
|
|
<div className="flex-1 relative">
|
|
<Textarea
|
|
ref={textareaRef}
|
|
value={input}
|
|
onChange={(e) => setInput(e.target.value)}
|
|
onKeyDown={handleKeyDown}
|
|
placeholder={disabled ? 'Gateway not connected...' : 'Message (Enter to send, Shift+Enter for new line)'}
|
|
disabled={disabled}
|
|
className="min-h-[44px] max-h-[200px] resize-none pr-4"
|
|
rows={1}
|
|
/>
|
|
</div>
|
|
|
|
<Button
|
|
onClick={handleSend}
|
|
disabled={!input.trim() || disabled}
|
|
size="icon"
|
|
className="shrink-0 h-10 w-10"
|
|
variant={sending ? 'destructive' : 'default'}
|
|
>
|
|
{sending ? (
|
|
<Square className="h-4 w-4" />
|
|
) : (
|
|
<Send className="h-4 w-4" />
|
|
)}
|
|
</Button>
|
|
</div>
|
|
|
|
</div>
|
|
);
|
|
}
|