File size: 9,952 Bytes
77db471 fd2e6bc 77db471 fd2e6bc 7317d80 fd2e6bc a4b5dd8 77db471 8b2fcca 77db471 fd2e6bc 61ba0c6 fd2e6bc 61ba0c6 fd2e6bc 7317d80 fd2e6bc 7317d80 fd2e6bc 8b2fcca a4b5dd8 8b2fcca dd8b5df fd2e6bc dd8b5df fd2e6bc 03c52a3 fd2e6bc 8b2fcca dd8b5df a4b5dd8 fd2e6bc a4b5dd8 8b2fcca dd8b5df fd2e6bc a4b5dd8 fd2e6bc 03c52a3 fd2e6bc 03c52a3 fd2e6bc 03c52a3 fd2e6bc dd8b5df fd2e6bc 7317d80 03c52a3 fd2e6bc 8b2fcca 77db471 a4b5dd8 fd2e6bc a4b5dd8 fd2e6bc 77db471 8b2fcca 77db471 8b2fcca 77db471 fd2e6bc 77db471 a4b5dd8 8b2fcca 41d60be 8b2fcca 42580a8 77db471 41d60be a4b5dd8 fd2e6bc a4b5dd8 fb65623 a4b5dd8 fd2e6bc 7317d80 8b2fcca 41d60be 8b2fcca 41d60be 8b2fcca a4b5dd8 8b2fcca 41d60be 8b2fcca 41d60be 8b2fcca 41d60be 8b2fcca a4b5dd8 fd2e6bc 41d60be 8b2fcca 41d60be 77db471 20bd18d 77db471 03c52a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
import React, { useState, useRef, useEffect } from 'react';
import ReactMarkdown from 'react-markdown';
import Avatar from './Avatar.jsx';
import '../App.css';
const ChatInterface = ({ messages = [], setMessages = () => {}, onMessageSent = () => {}, activeConversationId,
saveBotResponse, toLogin, onCreateNewConversation = () => {},onNewChat = () => {},refreshConversationList = () => {} }) => {
const [inputMessage, setInputMessage] = useState('');
const [isLoading, setIsLoading] = useState(false);
const messagesEndRef = useRef(null);
const textareaRef = useRef(null);
const [streamingText, setStreamingText] = useState('');
const [isStreaming, setIsStreaming] = useState(false);
const [fullResponse, setFullResponse] = useState('');
const [tokenLimitReached, setTokenLimitReached] = useState(false);
const [hasInteractionStarted, setHasInteractionStarted] = useState(false);
const scrollToBottom = () => {
messagesEndRef.current?.scrollIntoView({ behavior: 'smooth' });
};
useEffect(scrollToBottom, [messages]);
const streamResponse = (response) => {
setIsStreaming(true);
setFullResponse(response);
setStreamingText('');
// Garder une référence au message de streaming
let streamMessageId = Date.now().toString();
setMessages(prev => [...prev, {
sender: 'bot-streaming',
text: '',
id: streamMessageId
}]);
const totalCharacters = response.length;
let charCount = 0;
const streamInterval = setInterval(() => {
if (charCount < totalCharacters) {
charCount += 5;
const fragment = response.substring(0, charCount);
setMessages(prev =>
prev.map(msg =>
msg.id === streamMessageId ? { ...msg, text: fragment } : msg
)
);
setStreamingText(fragment);
} else {
clearInterval(streamInterval);
setIsStreaming(false);
setMessages(prev =>
prev.map(msg =>
msg.id === streamMessageId
? { sender: 'bot', text: response, id: streamMessageId }
: msg
)
);
}
}, 30);
return () => clearInterval(streamInterval);
};
const sendMessage = async (message) => {
try {
setHasInteractionStarted(true);
setIsLoading(true);
setMessages(prev => [...prev, { sender: 'user', text: message }]);
const updatedConversationId = await onMessageSent(message);
const chatRes = await fetch('/api/chat', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
credentials: 'include',
body: JSON.stringify({
message,
conversation_id: activeConversationId,
skip_save: true
}),
});
const responseData = await chatRes.json();
if (responseData.error === 'token_limit_exceeded') {
setIsLoading(false);
setTokenLimitReached(true);
setMessages(prev => [...prev, {
sender: 'bot',
text: "⚠️ **Limite de taille de conversation atteinte**\n\nCette conversation est devenue trop longue. Pour continuer à discuter, veuillez créer une nouvelle conversation."
}]);
return;
}
if (!chatRes.ok) throw new Error(`Chat API error ${chatRes.status}`);
const { response: botResponse } = responseData;
setIsLoading(false);
streamResponse(botResponse);
if (activeConversationId && typeof refreshConversationList === 'function') {
refreshConversationList();
}
if (updatedConversationId) {
saveBotResponse(updatedConversationId, botResponse, true);
} else if (activeConversationId) {
saveBotResponse(activeConversationId, botResponse, true);
}
} catch (error) {
console.error('Erreur:', error);
setIsLoading(false);
setMessages(prev => [...prev,
{ sender: 'bot', text: "Désolé, une erreur s'est produite. Veuillez réessayer." }
]);
}
};
const handleCreateNewConversation = () => {
onNewChat();
setTokenLimitReached(false);
setHasInteractionStarted(false);
};
useEffect(() => {
if (activeConversationId === null && messages.length === 0) {
setHasInteractionStarted(false);
}
}, [activeConversationId, messages]);
const handleSubmit = (e) => {
e.preventDefault();
const txt = inputMessage.trim();
if (!txt) return;
sendMessage(txt);
setInputMessage('');
if (textareaRef.current) textareaRef.current.style.height = 'auto';
};
const isMarkdown = (text) => {
return /(?:\*\*|__|##|\*|_|`|>|\d+\.\s|\-\s|\[.*\]\(.*\))/.test(text);
};
return (
<div className="chat-container">
{messages.length === 0 && !hasInteractionStarted ? (
<>
<div className="chat-header">
<h2 className="chat-title">Medic.ial</h2>
<Avatar onClick={toLogin} />
</div>
<div className="no-messages-view">
<div className="welcome-content">
<div className="welcome-message">
<p>Bonjour ! Comment puis-je vous aider aujourd'hui ? 🧑⚕️</p>
</div>
<div className="input-container centered">
<form onSubmit={handleSubmit} className="input-form">
<textarea
value={inputMessage}
onChange={(e) => setInputMessage(e.target.value)}
placeholder="Posez une question..."
disabled={isLoading}
rows="1"
ref={textareaRef}
className="input-textarea"
onKeyDown={(e) => {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
handleSubmit(e);
}
}}
onInput={(e) => {
e.target.style.height = 'auto';
e.target.style.height = `${e.target.scrollHeight}px`;
}}
/>
<button type="submit" disabled={isLoading || !inputMessage.trim()}>
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e3e3e3">
<path d="M120-160v-240l320-80-320-80v-240l760 320-760 320Z"/>
</svg>
</button>
</form>
</div>
</div>
</div>
</>
) : (
<>
<div className="chat-header">
<Avatar onClick={toLogin} />
<h2 className="chat-title">Medic.ial</h2>
</div>
<div className="messages-container">
{messages.map((msg, index) => {
if (msg.sender === 'bot-streaming') return null;
return (
<div key={index} className={`message ${msg.sender}`}>
<div className="message-content">
{isMarkdown(msg.text) ? <ReactMarkdown>{msg.text}</ReactMarkdown> : msg.text}
</div>
</div>
);
})}
{tokenLimitReached && (
<div className="token-limit-warning">
<button
className="new-conversation-button"
onClick={handleCreateNewConversation}
>
Démarrer une nouvelle conversation
</button>
</div>
)}
{isStreaming && (
<div className="message bot">
<div className="message-content streaming-message">
{isMarkdown(streamingText) ? <ReactMarkdown>{streamingText}</ReactMarkdown> : streamingText}
</div>
</div>
)}
{isLoading && (
<div className="message bot">
<div className="message-content loading">
<span>.</span><span>.</span><span>.</span>
</div>
</div>
)}
<div ref={messagesEndRef} />
</div>
<div className="input-container">
<form onSubmit={handleSubmit} className="input-form">
<textarea
value={inputMessage}
onChange={(e) => setInputMessage(e.target.value)}
placeholder={tokenLimitReached ? "Créez une nouvelle conversation pour continuer..." : "Tapez votre message ici..."}
disabled={isLoading || tokenLimitReached}
rows="1"
ref={textareaRef}
className="input-textarea"
onKeyDown={(e) => {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
handleSubmit(e);
}
}}
onInput={(e) => {
e.target.style.height = 'auto';
e.target.style.height = `${e.target.scrollHeight}px`;
}}
/>
<button type="submit" disabled={isLoading || !inputMessage.trim() || tokenLimitReached}>
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e3e3e3">
<path d="M120-160v-240l320-80-320-80v-240l760 320-760 320Z"/>
</svg>
</button>
</form>
<figcaption className="disclaimer-text">
Medic.ial est sujet à faire des erreurs. Vérifiez les informations fournies.
</figcaption>
</div>
</>
)}
</div>
);
};
export default ChatInterface; |