Spaces:
Paused
Paused
File size: 21,448 Bytes
dff1e71 | 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 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 | import * as msgs from "/js/messages.js";
import * as api from "/js/api.js";
import * as css from "/js/css.js";
import { sleep } from "/js/sleep.js";
import { store as attachmentsStore } from "/components/chat/attachments/attachmentsStore.js";
import { store as speechStore } from "/components/chat/speech/speech-store.js";
import { store as notificationStore } from "/components/notifications/notification-store.js";
import { store as preferencesStore } from "/components/sidebar/bottom/preferences/preferences-store.js";
import { store as inputStore } from "/components/chat/input/input-store.js";
import { store as chatsStore } from "/components/sidebar/chats/chats-store.js";
import { store as tasksStore } from "/components/sidebar/tasks/tasks-store.js";
import { store as chatTopStore } from "/components/chat/top-section/chat-top-store.js";
globalThis.fetchApi = api.fetchApi; // TODO - backward compatibility for non-modular scripts, remove once refactored to alpine
// Declare variables for DOM elements, they will be assigned on DOMContentLoaded
let leftPanel,
rightPanel,
container,
chatInput,
chatHistory,
sendButton,
inputSection,
statusSection,
progressBar,
autoScrollSwitch,
timeDate;
let autoScroll = true;
let context = null;
globalThis.resetCounter = 0; // Used by stores and getChatBasedId
let skipOneSpeech = false;
// Sidebar toggle logic is now handled by sidebar-store.js
export async function sendMessage() {
const chatInputEl = document.getElementById("chat-input");
if (!chatInputEl) {
console.warn("chatInput not available, cannot send message");
return;
}
try {
const message = chatInputEl.value.trim();
const attachmentsWithUrls = attachmentsStore.getAttachmentsForSending();
const hasAttachments = attachmentsWithUrls.length > 0;
if (message || hasAttachments) {
let response;
const messageId = generateGUID();
// Clear input and attachments
chatInputEl.value = "";
attachmentsStore.clearAttachments();
adjustTextareaHeight();
// Include attachments in the user message
if (hasAttachments) {
const heading =
attachmentsWithUrls.length > 0
? "Uploading attachments..."
: "User message";
// Render user message with attachments
setMessage(messageId, "user", heading, message, false, {
// attachments: attachmentsWithUrls, // skip here, let the backend properly log them
});
// sleep one frame to render the message before upload starts - better UX
sleep(0);
const formData = new FormData();
formData.append("text", message);
formData.append("context", context);
formData.append("message_id", messageId);
for (let i = 0; i < attachmentsWithUrls.length; i++) {
formData.append("attachments", attachmentsWithUrls[i].file);
}
response = await api.fetchApi("/message_async", {
method: "POST",
body: formData,
});
} else {
// For text-only messages
const data = {
text: message,
context,
message_id: messageId,
};
response = await api.fetchApi("/message_async", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(data),
});
}
// Handle response
const jsonResponse = await response.json();
if (!jsonResponse) {
toast("No response returned.", "error");
} else {
setContext(jsonResponse.context);
}
}
} catch (e) {
toastFetchError("Error sending message", e); // Will use new notification system
}
}
globalThis.sendMessage = sendMessage;
export function toastFetchError(text, error) {
console.error(text, error);
// Use new frontend error notification system (async, but we don't need to wait)
const errorMessage = error?.message || error?.toString() || "Unknown error";
if (getConnectionStatus()) {
// Backend is connected, just show the error
toastFrontendError(`${text}: ${errorMessage}`).catch((e) =>
console.error("Failed to show error toast:", e)
);
} else {
// Backend is disconnected, show connection error
toastFrontendError(
`${text} (backend appears to be disconnected): ${errorMessage}`,
"Connection Error"
).catch((e) => console.error("Failed to show connection error toast:", e));
}
}
globalThis.toastFetchError = toastFetchError;
// Event listeners will be set up in DOMContentLoaded
export function updateChatInput(text) {
const chatInputEl = document.getElementById("chat-input");
if (!chatInputEl) {
console.warn("`chatInput` element not found, cannot update.");
return;
}
console.log("updateChatInput called with:", text);
// Append text with proper spacing
const currentValue = chatInputEl.value;
const needsSpace = currentValue.length > 0 && !currentValue.endsWith(" ");
chatInputEl.value = currentValue + (needsSpace ? " " : "") + text + " ";
// Adjust height and trigger input event
adjustTextareaHeight();
chatInputEl.dispatchEvent(new Event("input"));
console.log("Updated chat input value:", chatInputEl.value);
}
async function updateUserTime() {
let userTimeElement = document.getElementById("time-date");
while (!userTimeElement) {
await sleep(100);
userTimeElement = document.getElementById("time-date");
}
const now = new Date();
const hours = now.getHours();
const minutes = now.getMinutes();
const seconds = now.getSeconds();
const ampm = hours >= 12 ? "pm" : "am";
const formattedHours = hours % 12 || 12;
// Format the time
const timeString = `${formattedHours}:${minutes
.toString()
.padStart(2, "0")}:${seconds.toString().padStart(2, "0")} ${ampm}`;
// Format the date
const options = { year: "numeric", month: "short", day: "numeric" };
const dateString = now.toLocaleDateString(undefined, options);
// Update the HTML
userTimeElement.innerHTML = `${timeString}<br><span id="user-date">${dateString}</span>`;
}
updateUserTime();
setInterval(updateUserTime, 1000);
function setMessage(id, type, heading, content, temp, kvps = null) {
const result = msgs.setMessage(id, type, heading, content, temp, kvps);
const chatHistoryEl = document.getElementById("chat-history");
if (preferencesStore.autoScroll && chatHistoryEl) {
chatHistoryEl.scrollTop = chatHistoryEl.scrollHeight;
}
return result;
}
globalThis.loadKnowledge = async function () {
await inputStore.loadKnowledge();
};
function adjustTextareaHeight() {
const chatInputEl = document.getElementById("chat-input");
if (chatInputEl) {
chatInputEl.style.height = "auto";
chatInputEl.style.height = chatInputEl.scrollHeight + "px";
}
}
export const sendJsonData = async function (url, data) {
return await api.callJsonApi(url, data);
// const response = await api.fetchApi(url, {
// method: 'POST',
// headers: {
// 'Content-Type': 'application/json'
// },
// body: JSON.stringify(data)
// });
// if (!response.ok) {
// const error = await response.text();
// throw new Error(error);
// }
// const jsonResponse = await response.json();
// return jsonResponse;
};
globalThis.sendJsonData = sendJsonData;
function generateGUID() {
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function (c) {
var r = (Math.random() * 16) | 0;
var v = c === "x" ? r : (r & 0x3) | 0x8;
return v.toString(16);
});
}
export function getConnectionStatus() {
return chatTopStore.connected;
}
globalThis.getConnectionStatus = getConnectionStatus;
function setConnectionStatus(connected) {
chatTopStore.connected = connected;
// connectionStatus = connected;
// // Broadcast connection status without touching Alpine directly
// try {
// window.dispatchEvent(
// new CustomEvent("connection-status", { detail: { connected } })
// );
// } catch (_e) {
// // no-op
// }
}
let lastLogVersion = 0;
let lastLogGuid = "";
let lastSpokenNo = 0;
export async function poll() {
let updated = false;
try {
// Get timezone from navigator
const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone;
const log_from = lastLogVersion;
const response = await sendJsonData("/poll", {
log_from: log_from,
notifications_from: notificationStore.lastNotificationVersion || 0,
context: context || null,
timezone: timezone,
});
// Check if the response is valid
if (!response) {
console.error("Invalid response from poll endpoint");
return false;
}
// deselect chat if it is requested by the backend
if (response.deselect_chat) {
chatsStore.deselectChat();
return
}
if (
response.context != context &&
!(response.context === null && context === null) &&
context !== null
) {
return;
}
// if the chat has been reset, restart this poll as it may have been called with incorrect log_from
if (lastLogGuid != response.log_guid) {
const chatHistoryEl = document.getElementById("chat-history");
if (chatHistoryEl) chatHistoryEl.innerHTML = "";
lastLogVersion = 0;
lastLogGuid = response.log_guid;
await poll();
return;
}
if (lastLogVersion != response.log_version) {
updated = true;
for (const log of response.logs) {
const messageId = log.id || log.no; // Use log.id if available
setMessage(
messageId,
log.type,
log.heading,
log.content,
log.temp,
log.kvps
);
}
afterMessagesUpdate(response.logs);
}
lastLogVersion = response.log_version;
lastLogGuid = response.log_guid;
updateProgress(response.log_progress, response.log_progress_active);
// Update notifications from response
notificationStore.updateFromPoll(response);
//set ui model vars from backend
inputStore.paused = response.paused;
// Update status icon state
setConnectionStatus(true);
// Update chats list using store
let contexts = response.contexts || [];
chatsStore.applyContexts(contexts);
// Update tasks list using store
let tasks = response.tasks || [];
tasksStore.applyTasks(tasks);
// Make sure the active context is properly selected in both lists
if (context) {
// Update selection in both stores
chatsStore.setSelected(context);
const contextInChats = chatsStore.contains(context);
const contextInTasks = tasksStore.contains(context);
if (contextInTasks) {
tasksStore.setSelected(context);
}
if (!contextInChats && !contextInTasks) {
if (chatsStore.contexts.length > 0) {
// If it doesn't exist in the list but other contexts do, fall back to the first
const firstChatId = chatsStore.firstId();
if (firstChatId) {
setContext(firstChatId);
chatsStore.setSelected(firstChatId);
}
} else if (typeof deselectChat === "function") {
// No contexts remain – clear state so the welcome screen can surface
deselectChat();
}
}
} else {
const welcomeStore =
globalThis.Alpine && typeof globalThis.Alpine.store === "function"
? globalThis.Alpine.store("welcomeStore")
: null;
const welcomeVisible = Boolean(welcomeStore && welcomeStore.isVisible);
// No context selected, try to select the first available item unless welcome screen is active
if (!welcomeVisible && contexts.length > 0) {
const firstChatId = chatsStore.firstId();
if (firstChatId) {
setContext(firstChatId);
chatsStore.setSelected(firstChatId);
}
}
}
lastLogVersion = response.log_version;
lastLogGuid = response.log_guid;
} catch (error) {
console.error("Error:", error);
setConnectionStatus(false);
}
return updated;
}
globalThis.poll = poll;
function afterMessagesUpdate(logs) {
if (localStorage.getItem("speech") == "true") {
speakMessages(logs);
}
}
function speakMessages(logs) {
if (skipOneSpeech) {
skipOneSpeech = false;
return;
}
// log.no, log.type, log.heading, log.content
for (let i = logs.length - 1; i >= 0; i--) {
const log = logs[i];
// if already spoken, end
// if(log.no < lastSpokenNo) break;
// finished response
if (log.type == "response") {
// lastSpokenNo = log.no;
speechStore.speakStream(
getChatBasedId(log.no),
log.content,
log.kvps?.finished
);
return;
// finished LLM headline, not response
} else if (
log.type == "agent" &&
log.kvps &&
log.kvps.headline &&
log.kvps.tool_args &&
log.kvps.tool_name != "response"
) {
// lastSpokenNo = log.no;
speechStore.speakStream(getChatBasedId(log.no), log.kvps.headline, true);
return;
}
}
}
function updateProgress(progress, active) {
const progressBarEl = document.getElementById("progress-bar");
if (!progressBarEl) return;
if (!progress) progress = "";
if (!active) {
removeClassFromElement(progressBarEl, "shiny-text");
} else {
addClassToElement(progressBarEl, "shiny-text");
}
progress = msgs.convertIcons(progress);
if (progressBarEl.innerHTML != progress) {
progressBarEl.innerHTML = progress;
}
}
globalThis.pauseAgent = async function (paused) {
await inputStore.pauseAgent(paused);
};
function generateShortId() {
const chars =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
let result = "";
for (let i = 0; i < 8; i++) {
result += chars.charAt(Math.floor(Math.random() * chars.length));
}
return result;
}
export const newContext = function () {
context = generateShortId();
setContext(context);
};
globalThis.newContext = newContext;
export const setContext = function (id) {
if (id == context) return;
context = id;
// Always reset the log tracking variables when switching contexts
// This ensures we get fresh data from the backend
lastLogGuid = "";
lastLogVersion = 0;
lastSpokenNo = 0;
// Stop speech when switching chats
speechStore.stopAudio();
// Clear the chat history immediately to avoid showing stale content
const chatHistoryEl = document.getElementById("chat-history");
if (chatHistoryEl) chatHistoryEl.innerHTML = "";
// Update both selected states using stores
chatsStore.setSelected(id);
tasksStore.setSelected(id);
//skip one speech if enabled when switching context
if (localStorage.getItem("speech") == "true") skipOneSpeech = true;
};
export const deselectChat = function () {
// Clear current context to show welcome screen
setContext(null);
// Clear localStorage selections so we don't auto-restore
localStorage.removeItem("lastSelectedChat");
localStorage.removeItem("lastSelectedTask");
// Clear the chat history
chatHistory.innerHTML = "";
};
globalThis.deselectChat = deselectChat;
export const getContext = function () {
return context;
};
globalThis.getContext = getContext;
globalThis.setContext = setContext;
export const getChatBasedId = function (id) {
return context + "-" + globalThis.resetCounter + "-" + id;
};
function addClassToElement(element, className) {
element.classList.add(className);
}
function removeClassFromElement(element, className) {
element.classList.remove(className);
}
export function justToast(text, type = "info", timeout = 5000, group = "") {
notificationStore.addFrontendToastOnly(type, text, "", timeout / 1000, group);
}
globalThis.justToast = justToast;
export function toast(text, type = "info", timeout = 5000) {
// Convert timeout from milliseconds to seconds for new notification system
const display_time = Math.max(timeout / 1000, 1); // Minimum 1 second
// Use new frontend notification system based on type
switch (type.toLowerCase()) {
case "error":
return notificationStore.frontendError(text, "Error", display_time);
case "success":
return notificationStore.frontendInfo(text, "Success", display_time);
case "warning":
return notificationStore.frontendWarning(text, "Warning", display_time);
case "info":
default:
return notificationStore.frontendInfo(text, "Info", display_time);
}
}
globalThis.toast = toast;
// OLD: hideToast function removed - now using new notification system
function scrollChanged(isAtBottom) {
// Reflect scroll state into preferences store; UI is bound via x-model
preferencesStore.autoScroll = isAtBottom;
}
export function updateAfterScroll() {
// const toleranceEm = 1; // Tolerance in em units
// const tolerancePx = toleranceEm * parseFloat(getComputedStyle(document.documentElement).fontSize); // Convert em to pixels
const tolerancePx = 10;
const chatHistory = document.getElementById("chat-history");
if (!chatHistory) return;
const isAtBottom =
chatHistory.scrollHeight - chatHistory.scrollTop <=
chatHistory.clientHeight + tolerancePx;
scrollChanged(isAtBottom);
}
globalThis.updateAfterScroll = updateAfterScroll;
// setInterval(poll, 250);
async function startPolling() {
const shortInterval = 25;
const longInterval = 250;
const shortIntervalPeriod = 100;
let shortIntervalCount = 0;
async function _doPoll() {
let nextInterval = longInterval;
try {
const result = await poll();
if (result) shortIntervalCount = shortIntervalPeriod; // Reset the counter when the result is true
if (shortIntervalCount > 0) shortIntervalCount--; // Decrease the counter on each call
nextInterval = shortIntervalCount > 0 ? shortInterval : longInterval;
} catch (error) {
console.error("Error:", error);
}
// Call the function again after the selected interval
setTimeout(_doPoll.bind(this), nextInterval);
}
_doPoll();
}
// All initializations and event listeners are now consolidated here
document.addEventListener("DOMContentLoaded", function () {
// Assign DOM elements to variables now that the DOM is ready
leftPanel = document.getElementById("left-panel");
rightPanel = document.getElementById("right-panel");
container = document.querySelector(".container");
chatInput = document.getElementById("chat-input");
chatHistory = document.getElementById("chat-history");
sendButton = document.getElementById("send-button");
inputSection = document.getElementById("input-section");
statusSection = document.getElementById("status-section");
progressBar = document.getElementById("progress-bar");
autoScrollSwitch = document.getElementById("auto-scroll-switch");
timeDate = document.getElementById("time-date-container");
// Sidebar and input event listeners are now handled by their respective stores
if (chatHistory) {
chatHistory.addEventListener("scroll", updateAfterScroll);
}
// Start polling for updates
startPolling();
});
/*
* A0 Chat UI
*
* Unified sidebar layout:
* - Both Chats and Tasks lists are always visible in a vertical layout
* - Both lists are sorted by creation time (newest first)
* - Tasks use the same context system as chats for communication with the backend
*/
// Open the scheduler detail view for a specific task
function openTaskDetail(taskId) {
// Wait for Alpine.js to be fully loaded
if (globalThis.Alpine) {
// Get the settings modal button and click it to ensure all init logic happens
const settingsButton = document.getElementById("settings");
if (settingsButton) {
// Programmatically click the settings button
settingsButton.click();
// Now get a reference to the modal element
const modalEl = document.getElementById("settingsModal");
if (!modalEl) {
console.error("Settings modal element not found after clicking button");
return;
}
// Get the Alpine.js data for the modal
const modalData = globalThis.Alpine ? Alpine.$data(modalEl) : null;
// Use a timeout to ensure the modal is fully rendered
setTimeout(() => {
// Switch to the scheduler tab first
modalData.switchTab("scheduler");
// Use another timeout to ensure the scheduler component is initialized
setTimeout(() => {
// Get the scheduler component
const schedulerComponent = document.querySelector(
'[x-data="schedulerSettings"]'
);
if (!schedulerComponent) {
console.error("Scheduler component not found");
return;
}
// Get the Alpine.js data for the scheduler component
const schedulerData = globalThis.Alpine
? Alpine.$data(schedulerComponent)
: null;
// Show the task detail view for the specific task
schedulerData.showTaskDetail(taskId);
console.log("Task detail view opened for task:", taskId);
}, 50); // Give time for the scheduler tab to initialize
}, 25); // Give time for the modal to render
} else {
console.error("Settings button not found");
}
} else {
console.error("Alpine.js not loaded");
}
}
// Make the function available globally
globalThis.openTaskDetail = openTaskDetail;
|