Spaces:
Running
Running
File size: 6,071 Bytes
1c0739a 4644c93 1c0739a 08ee300 1c0739a d45a56b 1c0739a 922f439 1c0739a |
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 |
document.addEventListener("DOMContentLoaded", () => {
console.log("js file loaded")
const convo = document.querySelector(".convo");
const input = document.querySelector(".qt input");
const sendBtn = document.querySelector(".sendingQA");
const fileBtn = document.querySelector(".fa-file");
const imageBtn = document.querySelector(".fa-image");
let selectedFile = null;
let filePreviewBubble = null;
// Hidden file input
const fileInput = document.createElement("input");
fileInput.type = "file";
fileInput.accept = ".pdf,.docx,.pptx,.xlsx,image/*";
fileInput.style.display = "none";
document.body.appendChild(fileInput);
fileBtn.addEventListener("click", () => fileInput.click());
imageBtn.addEventListener("click", () => fileInput.click());
fileInput.addEventListener("change", () => {
const file = fileInput.files[0];
if (file) {
selectedFile = file;
if (filePreviewBubble) filePreviewBubble.remove();
filePreviewBubble = document.createElement("div");
filePreviewBubble.className = "file-preview-bubble bubble right";
filePreviewBubble.textContent = `π Selected: ${file.name}`;
convo.appendChild(filePreviewBubble);
convo.scrollTop = convo.scrollHeight;
}
});
function createMessageBubble(text, sender = "You", audioSrc = null, fileName = null) {
const bubble = document.createElement("div");
bubble.className = `bubble ${sender === "You" ? "right" : "left"}`;
const label = document.createElement("div");
label.className = "label";
label.innerText = sender;
const message = document.createElement("div");
message.className = "text";
message.style.whiteSpace = "pre-wrap";
if (sender === "You") {
let fileLine = fileName ? `π Selected file: ${fileName}\n` : "";
message.innerText = `${fileLine}β ${text}`;
} else {
message.style.display = "flex";
message.style.justifyContent = "space-between";
message.style.alignItems = "center";
const msgSpan = document.createElement("span");
msgSpan.innerText = text;
message.appendChild(msgSpan);
if (audioSrc) {
const icon = document.createElement("i");
icon.className = "fa-solid fa-volume-high audio-toggle";
icon.title = "Click to mute";
icon.style.cursor = "pointer";
icon.style.fontSize = "18px";
const audio = new Audio(audioSrc);
audio.play();
icon.addEventListener("click", () => {
if (audio.muted) {
audio.currentTime = 0;
audio.muted = false;
icon.classList.remove("fa-volume-xmark");
icon.classList.add("fa-volume-high");
icon.title = "Click to mute";
audio.play();
} else {
audio.muted = true;
icon.classList.remove("fa-volume-high");
icon.classList.add("fa-volume-xmark");
icon.title = "Click to unmute";
}
});
message.appendChild(icon);
}
}
bubble.appendChild(label);
bubble.appendChild(message);
convo.appendChild(bubble);
convo.scrollTop = convo.scrollHeight;
return bubble;
}
async function sendMessage() {
const question = input.value.trim();
if (!question) return;
if (!selectedFile) {
alert("Please upload a document or image first.");
return;
}
// Remove file preview bubble
if (filePreviewBubble) {
filePreviewBubble.remove();
filePreviewBubble = null;
}
// User message with file info
createMessageBubble(question, "You", null, selectedFile.name);
// Aidan is thinking...
const thinkingBubble = createMessageBubble("Wait, Let me think π€...", "Aidan");
const formData = new FormData();
formData.append("question", question);
formData.append("file", selectedFile);
try {
const response = await fetch("/qtAnswering/predict", {
method: "POST",
body: formData
});
const result = await response.json();
const answerText = result.answer || "No response.";
const audioSrc = result.audio || null;
// Replace "Let me think..." with actual answer
const message = thinkingBubble.querySelector(".text");
message.innerText = answerText;
if (audioSrc) {
const icon = document.createElement("i");
icon.className = "fa-solid fa-volume-high audio-toggle";
icon.title = "Click to mute";
icon.style.cursor = "pointer";
icon.style.fontSize = "18px";
icon.style.marginLeft = "10px";
const audio = new Audio(audioSrc);
audio.play();
icon.addEventListener("click", () => {
if (audio.muted) {
audio.currentTime = 0;
audio.muted = false;
icon.classList.remove("fa-volume-xmark");
icon.classList.add("fa-volume-high");
icon.title = "Click to mute";
audio.play();
} else {
audio.muted = true;
icon.classList.remove("fa-volume-high");
icon.classList.add("fa-volume-xmark");
icon.title = "Click to unmute";
}
});
message.style.display = "flex";
message.style.justifyContent = "space-between";
message.appendChild(icon);
}
} catch (err) {
const message = thinkingBubble.querySelector(".text");
message.innerText = "β οΈ Aidan had trouble responding.";
}
// Clear inputs after processing is complete
input.value = "";
selectedFile = null;
}
// Click event for send button
sendBtn.addEventListener("click", sendMessage);
// Enter key event for input field
input.addEventListener("keydown", (event) => {
if (event.key === "Enter") {
event.preventDefault(); // Prevent form submission
sendMessage();
}
});
var backarrow = document.querySelector(".fa-arrow-left");
backarrow.addEventListener('click', function () {
window.location.href = '/';
});
}); |