Typing indicator for GUI
This commit is contained in:
parent
0ab585943f
commit
16c1d680cb
|
@ -72,3 +72,22 @@ body {
|
||||||
background-color: #2980b9;
|
background-color: #2980b9;
|
||||||
color: #ecf0f1;
|
color: #ecf0f1;
|
||||||
}
|
}
|
||||||
|
@keyframes ellipsis {
|
||||||
|
0%, 20% {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
40% {
|
||||||
|
content: '.';
|
||||||
|
}
|
||||||
|
60% {
|
||||||
|
content: '..';
|
||||||
|
}
|
||||||
|
80%, 100% {
|
||||||
|
content: '...';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ellipsis::after {
|
||||||
|
content: '';
|
||||||
|
animation: ellipsis 2s infinite;
|
||||||
|
}
|
||||||
|
|
|
@ -30,6 +30,8 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||||
|
|
||||||
displayMessage(userInput, 'user');
|
displayMessage(userInput, 'user');
|
||||||
|
|
||||||
|
const typingIndicator = displayTypingIndicator();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const response = await window.electronAPI.sendPrompt(userInput);
|
const response = await window.electronAPI.sendPrompt(userInput);
|
||||||
const assistantMessage = response.choices[0].message.content.trim();
|
const assistantMessage = response.choices[0].message.content.trim();
|
||||||
|
@ -38,6 +40,8 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||||
console.error(`Error sending prompt: ${error.message}`);
|
console.error(`Error sending prompt: ${error.message}`);
|
||||||
displayMessage(`Error: ${error.message}`, 'assistant');
|
displayMessage(`Error: ${error.message}`, 'assistant');
|
||||||
} finally {
|
} finally {
|
||||||
|
typingIndicator.remove();
|
||||||
|
|
||||||
sendButton.disabled = false;
|
sendButton.disabled = false;
|
||||||
promptInput.disabled = false;
|
promptInput.disabled = false;
|
||||||
promptInput.focus();
|
promptInput.focus();
|
||||||
|
@ -47,3 +51,13 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||||
console.error('chatForm or promptInput elements not found!');
|
console.error('chatForm or promptInput elements not found!');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function displayTypingIndicator() {
|
||||||
|
const chatHistory = document.getElementById('chatHistory');
|
||||||
|
const typingIndicator = document.createElement('div');
|
||||||
|
typingIndicator.classList.add('message', 'assistantMessage', 'ellipsis');
|
||||||
|
typingIndicator.textContent = 'Processing';
|
||||||
|
chatHistory.appendChild(typingIndicator);
|
||||||
|
chatHistory.scrollTop = chatHistory.scrollHeight;
|
||||||
|
return typingIndicator;
|
||||||
|
}
|
Loading…
Reference in New Issue