mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-19 09:50:15 +01:00
286 lines
9.7 KiB
JavaScript
286 lines
9.7 KiB
JavaScript
import React, { useEffect, useContext, useRef, useState } from 'react';
|
|
import TextareaAutosize from 'react-textarea-autosize';
|
|
import { useRecoilValue, useRecoilState, useSetRecoilState } from 'recoil';
|
|
import SubmitButton from './SubmitButton';
|
|
import OptionsBar from './OptionsBar';
|
|
import { EndpointMenu } from './EndpointMenu';
|
|
import Footer from './Footer';
|
|
import { useMessageHandler, ThemeContext } from '~/hooks';
|
|
import { cn } from '~/utils';
|
|
import store from '~/store';
|
|
|
|
export default function TextChat({ isSearchView = false }) {
|
|
const inputRef = useRef(null);
|
|
const isComposing = useRef(false);
|
|
|
|
const [text, setText] = useRecoilState(store.text);
|
|
const { theme } = useContext(ThemeContext);
|
|
const conversation = useRecoilValue(store.conversation);
|
|
const latestMessage = useRecoilValue(store.latestMessage);
|
|
|
|
const endpointsConfig = useRecoilValue(store.endpointsConfig);
|
|
const isSubmitting = useRecoilValue(store.isSubmitting);
|
|
const setShowBingToneSetting = useSetRecoilState(store.showBingToneSetting);
|
|
|
|
// TODO: do we need this?
|
|
const disabled = false;
|
|
|
|
const { ask, stopGenerating } = useMessageHandler();
|
|
const isNotAppendable = latestMessage?.unfinished & !isSubmitting || latestMessage?.error;
|
|
const { conversationId, jailbreak } = conversation || {};
|
|
|
|
const [isSpeechSupported, setIsSpeechSupported] = useState(false);
|
|
const [isListening, setIsListening] = useState(false);
|
|
|
|
useEffect(() => {
|
|
if ('SpeechRecognition' in window || 'webkitSpeechRecognition' in window) {
|
|
setIsSpeechSupported(true);
|
|
} else {
|
|
console.log("Browser does not support SpeechRecognition");
|
|
setIsSpeechSupported(false);
|
|
return;
|
|
}
|
|
|
|
if (!('SpeechRecognition' in window) && !('webkitSpeechRecognition' in window)) {
|
|
console.log("Browser does not support SpeechRecognition");
|
|
return;
|
|
}
|
|
|
|
const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition;
|
|
const recognition = new SpeechRecognition();
|
|
|
|
recognition.onstart = () => {
|
|
console.log("Speech recognition started");
|
|
};
|
|
|
|
recognition.interimResults = true;
|
|
|
|
recognition.onresult = (event) => {
|
|
let transcript = '';
|
|
|
|
for (let i = 0; i < event.results.length; i++) {
|
|
const result = event.results[i];
|
|
transcript += result[0].transcript;
|
|
|
|
if (result.isFinal) {
|
|
setText(transcript);
|
|
ask({ text: transcript });
|
|
}
|
|
}
|
|
|
|
// Set the text with both interim and final results
|
|
setText(transcript);
|
|
};
|
|
|
|
recognition.onend = () => {
|
|
setIsListening(false);
|
|
setText('');
|
|
};
|
|
|
|
if (isListening) {
|
|
recognition.start();
|
|
} else {
|
|
recognition.stop();
|
|
}
|
|
|
|
return () => {
|
|
recognition.stop();
|
|
};
|
|
}, [isListening]);
|
|
|
|
const toggleListening = (e) => {
|
|
e.preventDefault();
|
|
setIsListening((prevState) => !prevState);
|
|
};
|
|
|
|
// auto focus to input, when enter a conversation.
|
|
useEffect(() => {
|
|
if (!conversationId) {
|
|
return;
|
|
}
|
|
|
|
// Prevents Settings from not showing on new conversation, also prevents showing toneStyle change without jailbreak
|
|
if (conversationId === 'new' || !jailbreak) {
|
|
setShowBingToneSetting(false);
|
|
}
|
|
|
|
if (conversationId !== 'search') {
|
|
inputRef.current?.focus();
|
|
}
|
|
// setShowBingToneSetting is a recoil setter, so it doesn't need to be in the dependency array
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [conversationId, jailbreak]);
|
|
|
|
useEffect(() => {
|
|
const timeoutId = setTimeout(() => {
|
|
inputRef.current?.focus();
|
|
}, 100);
|
|
|
|
return () => clearTimeout(timeoutId);
|
|
}, [isSubmitting]);
|
|
|
|
const submitMessage = () => {
|
|
ask({ text });
|
|
setText('');
|
|
};
|
|
|
|
const handleStopGenerating = (e) => {
|
|
e.preventDefault();
|
|
stopGenerating();
|
|
};
|
|
|
|
const handleKeyDown = (e) => {
|
|
if (e.key === 'Enter' && isSubmitting) {
|
|
return;
|
|
}
|
|
|
|
if (e.key === 'Enter' && !e.shiftKey) {
|
|
e.preventDefault();
|
|
}
|
|
|
|
if (e.key === 'Enter' && !e.shiftKey && !isComposing?.current) {
|
|
submitMessage();
|
|
}
|
|
};
|
|
|
|
const handleKeyUp = (e) => {
|
|
if (e.keyCode === 8 && e.target.value.trim() === '') {
|
|
setText(e.target.value);
|
|
}
|
|
|
|
if (e.key === 'Enter' && e.shiftKey) {
|
|
return console.log('Enter + Shift');
|
|
}
|
|
|
|
if (isSubmitting) {
|
|
return;
|
|
}
|
|
};
|
|
|
|
const handleCompositionStart = () => {
|
|
isComposing.current = true;
|
|
};
|
|
|
|
const handleCompositionEnd = () => {
|
|
isComposing.current = false;
|
|
};
|
|
|
|
const changeHandler = (e) => {
|
|
const { value } = e.target;
|
|
|
|
setText(value);
|
|
};
|
|
|
|
const getPlaceholderText = () => {
|
|
if (isSearchView) {
|
|
return 'Click a message title to open its conversation.';
|
|
}
|
|
|
|
if (disabled) {
|
|
return 'Choose another model or customize GPT again';
|
|
}
|
|
|
|
if (isNotAppendable) {
|
|
return 'Edit your message or Regenerate.';
|
|
}
|
|
|
|
return '';
|
|
};
|
|
|
|
if (isSearchView) {
|
|
return <></>;
|
|
}
|
|
|
|
let isDark = theme === 'dark';
|
|
|
|
if (theme === 'system') {
|
|
isDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div
|
|
className="no-gradient-sm fixed bottom-0 left-0 w-full pt-6 sm:bg-gradient-to-b md:absolute"
|
|
style={{
|
|
background: `linear-gradient(to bottom,
|
|
${isDark ? 'rgba(52, 53, 65, 0)' : 'rgba(255, 255, 255, 0)'},
|
|
${isDark ? 'rgba(52, 53, 65, 0.08)' : 'rgba(255, 255, 255, 0.08)'},
|
|
${isDark ? 'rgba(52, 53, 65, 0.38)' : 'rgba(255, 255, 255, 0.38)'},
|
|
${isDark ? 'rgba(52, 53, 65, 1)' : 'rgba(255, 255, 255, 1)'},
|
|
${isDark ? '#343541' : '#ffffff'})`,
|
|
}}
|
|
>
|
|
<OptionsBar />
|
|
<div className="input-panel md:bg-vert-light-gradient dark:md:bg-vert-dark-gradient relative w-full border-t bg-white py-2 dark:border-white/20 dark:bg-gray-800 md:border-t-0 md:border-transparent md:bg-transparent md:dark:border-transparent md:dark:bg-transparent">
|
|
<form className="stretch z-[60] mx-2 flex flex-row gap-3 last:mb-2 md:mx-4 md:pt-2 md:last:mb-6 lg:mx-auto lg:max-w-3xl lg:pt-6">
|
|
<div className="relative flex h-full flex-1 md:flex-col">
|
|
<div
|
|
className={cn(
|
|
'relative flex flex-grow flex-row rounded-xl border border-black/10 py-[10px] md:py-4 md:pl-4',
|
|
'shadow-[0_0_15px_rgba(0,0,0,0.10)] dark:shadow-[0_0_15px_rgba(0,0,0,0.10)]',
|
|
'dark:border-gray-900/50 dark:text-white',
|
|
disabled ? 'bg-gray-100 dark:bg-gray-900' : 'bg-white dark:bg-gray-700',
|
|
)}
|
|
>
|
|
<EndpointMenu />
|
|
<TextareaAutosize
|
|
// set test id for e2e testing
|
|
data-testid="text-input"
|
|
tabIndex="0"
|
|
autoFocus
|
|
ref={inputRef}
|
|
// style={{maxHeight: '200px', height: '24px', overflowY: 'hidden'}}
|
|
rows="1"
|
|
value={disabled || isNotAppendable ? '' : text}
|
|
onKeyUp={handleKeyUp}
|
|
onKeyDown={handleKeyDown}
|
|
onChange={changeHandler}
|
|
onCompositionStart={handleCompositionStart}
|
|
onCompositionEnd={handleCompositionEnd}
|
|
placeholder={getPlaceholderText()}
|
|
disabled={disabled || isNotAppendable}
|
|
className="m-0 flex h-auto max-h-52 flex-1 resize-none overflow-auto border-0 bg-transparent p-0 pl-2 pr-12 leading-6 placeholder:text-sm placeholder:text-gray-600 focus:outline-none focus:ring-0 focus-visible:ring-0 dark:bg-transparent dark:placeholder:text-gray-500 md:pl-2"
|
|
/>
|
|
{isSpeechSupported && (
|
|
<button onClick={toggleListening} class="group absolute bottom-0 right-8 z-[101] flex h-[100%] w-[50px] items-center justify-center bg-transparent p-1 text-gray-500">
|
|
<div class="m-1 ml-0 mr-0 rounded-md pb-[9px] pl-[9.5px] pr-[7px] pt-[11px] group-hover:bg-gray-100 group-disabled:hover:bg-transparent dark:group-hover:bg-gray-900 dark:group-hover:text-gray-400 dark:group-disabled:hover:bg-transparent">
|
|
<svg
|
|
stroke="currentColor"
|
|
fill="none"
|
|
strokeWidth="2"
|
|
viewBox="0 0 24 24"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
className="mr-1 h-4 w-4"
|
|
height="1em"
|
|
width="1em"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<rect x="8" y="4" width="8" height="12" stroke="currentColor" fill="currentColor" />
|
|
<circle cx="12" cy="4" r="4" stroke="currentColor" fill="currentColor" />
|
|
<rect x="10" y="16" width="4" height="6" stroke="currentColor" fill="currentColor" />
|
|
<line x1="4" y1="22" x2="20" y2="22" stroke="currentColor" />
|
|
{isListening && (
|
|
<circle cx="18" cy="18" r="6" fill="red" />
|
|
)}
|
|
</svg>
|
|
</div>
|
|
</button>
|
|
)}
|
|
<SubmitButton
|
|
submitMessage={submitMessage}
|
|
handleStopGenerating={handleStopGenerating}
|
|
disabled={disabled || isNotAppendable}
|
|
isSubmitting={isSubmitting}
|
|
endpointsConfig={endpointsConfig}
|
|
endpoint={conversation?.endpoint}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<Footer />
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|