Spaces:
Runtime error
Runtime error
File size: 13,825 Bytes
c8e875f | 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 | /**
* UI Manager for the arXivCSRAG application
* Handles UI elements, modals, and rendering
*/
class UIManager {
constructor() {
// Cache DOM elements
this.apiKeysModal = document.getElementById('api-keys-modal');
this.paperInfoModal = document.getElementById('paper-info-modal');
this.citationsModal = document.getElementById('citations-modal');
this.loadingOverlay = document.getElementById('loading-overlay');
this.loadingMessage = document.getElementById('loading-message');
this.resultsContainer = document.getElementById('results-container');
this.chatMessages = document.getElementById('chat-messages');
this.subjectTagsSelect = document.getElementById('subject-tags-select');
// Initialize UI
this.initEventListeners();
this.loadSubjectTags();
}
/**
* Initialize event listeners for UI elements
*/
initEventListeners() {
// Modal close buttons
document.querySelectorAll('.close-modal, .close-btn').forEach(button => {
button.addEventListener('click', () => {
this.hideModal(this.apiKeysModal);
this.hideModal(this.paperInfoModal);
this.hideModal(this.citationsModal);
});
});
// Configure API Keys button
document.getElementById('configure-api-keys-btn').addEventListener('click', () => {
this.showModal(this.apiKeysModal);
});
// Window click to close modals
window.addEventListener('click', (event) => {
if (event.target === this.apiKeysModal) {
this.hideModal(this.apiKeysModal);
} else if (event.target === this.paperInfoModal) {
this.hideModal(this.paperInfoModal);
} else if (event.target === this.citationsModal) {
this.hideModal(this.citationsModal);
}
});
}
/**
* Load subject tags from JSON file
*/
async loadSubjectTags() {
try {
const response = await fetch('/data/arxiv_cs_subjects.json');
const subjects = await response.json();
// Clear existing options
this.subjectTagsSelect.innerHTML = '';
// Add options to select
subjects.forEach(subject => {
const option = document.createElement('option');
option.value = subject.tag;
option.textContent = `${subject.tag}: ${subject.name}`;
this.subjectTagsSelect.appendChild(option);
});
} catch (error) {
console.error('Error loading subject tags:', error);
}
}
/**
* Show a modal
* @param {HTMLElement} modal - The modal to show
*/
showModal(modal) {
modal.style.display = 'block';
}
/**
* Hide a modal
* @param {HTMLElement} modal - The modal to hide
*/
hideModal(modal) {
modal.style.display = 'none';
}
/**
* Show the loading overlay
* @param {string} message - The loading message to display
*/
showLoading(message = 'Processing...') {
this.loadingMessage.textContent = message;
this.loadingOverlay.style.display = 'flex';
}
/**
* Hide the loading overlay
*/
hideLoading() {
this.loadingOverlay.style.display = 'none';
}
/**
* Render search results
* @param {Array} papers - The papers to render
*/
renderSearchResults(papers) {
if (!papers || papers.length === 0) {
this.resultsContainer.innerHTML = '<p class="no-results">No papers found matching your criteria.</p>';
return;
}
this.resultsContainer.innerHTML = '';
papers.forEach(paper => {
const paperElement = document.createElement('div');
paperElement.className = 'paper-item';
paperElement.dataset.paperId = paper.arxiv_id;
const categories = paper.categories.map(cat =>
`<span class="paper-category">${cat}</span>`
).join('');
paperElement.innerHTML = `
<div class="paper-item-header">
<h4 class="paper-title">${paper.title}</h4>
<span class="paper-date">${paper.published}</span>
</div>
<p class="paper-authors">${paper.authors.join(', ')}</p>
<div class="paper-categories">${categories}</div>
`;
paperElement.addEventListener('click', () => {
this.showPaperInfo(paper);
});
this.resultsContainer.appendChild(paperElement);
});
}
/**
* Show paper information in the modal
* @param {Object} paper - The paper data
*/
showPaperInfo(paper) {
// Set modal content
document.getElementById('paper-title').textContent = paper.title;
document.getElementById('paper-authors').textContent = paper.authors.join(', ');
document.getElementById('paper-published').textContent = paper.published;
document.getElementById('paper-categories').textContent = paper.categories.join(', ');
document.getElementById('paper-id').textContent = paper.arxiv_id;
document.getElementById('paper-abstract').textContent = paper.abstract;
// Set data attributes for buttons
const openArxivBtn = document.getElementById('open-arxiv-btn');
const viewPdfBtn = document.getElementById('view-pdf-btn');
const downloadPdfBtn = document.getElementById('download-pdf-btn');
const chatWithPaperBtn = document.getElementById('chat-with-paper-btn');
openArxivBtn.dataset.url = paper.entry_id;
viewPdfBtn.dataset.url = paper.pdf_url;
downloadPdfBtn.dataset.paperId = paper.arxiv_id;
chatWithPaperBtn.dataset.paperId = paper.arxiv_id;
// Show the modal
this.showModal(this.paperInfoModal);
}
/**
* Add a message to the chat interface
* @param {string} message - The message text
* @param {boolean} isUser - Whether the message is from the user
* @param {Object} citations - Citations from the AI response
*/
addChatMessage(message, isUser, citations = null) {
const messageElement = document.createElement('div');
messageElement.className = `message ${isUser ? 'user-message' : 'bot-message'}`;
// If it's a bot message, parse markdown (simple version)
if (!isUser) {
// Simple markdown parsing for links, bold, italic, code
const formattedMessage = message
.replace(/\*\*(.*?)\*\*/g, '<strong>$1</strong>')
.replace(/\*(.*?)\*/g, '<em>$1</em>')
.replace(/`(.*?)`/g, '<code>$1</code>')
.replace(/\n/g, '<br>');
messageElement.innerHTML = formattedMessage; // Add citations if available
if (citations && (citations.texts.length > 0 || citations.images.length > 0 || citations.tables.length > 0)) {
const citationsElement = document.createElement('div');
citationsElement.className = 'citations';
// Add sources section with View All button
const sourcesHeader = document.createElement('div');
sourcesHeader.className = 'citations-header';
sourcesHeader.innerHTML = `
<button class="view-all-citations-btn">View Sources</button>
`;
citationsElement.appendChild(sourcesHeader);
messageElement.appendChild(citationsElement);
// Add view all functionality
const viewAllBtn = sourcesHeader.querySelector('.view-all-citations-btn');
viewAllBtn.addEventListener('click', () => {
this.showCitationsModal('Response to: ' + message, citations);
});
}
} else {
messageElement.textContent = message;
}
this.chatMessages.appendChild(messageElement);
this.chatMessages.scrollTop = this.chatMessages.scrollHeight;
}
/**
* Clear the chat messages
*/
clearChat() {
this.chatMessages.innerHTML = '';
this.addSystemMessage('Chat reset. You can now ask questions about the paper.');
}
/**
* Add a system message to the chat
* @param {string} message - The system message
*/
addSystemMessage(message) {
const systemMessage = document.createElement('div');
systemMessage.className = 'system-message';
systemMessage.innerHTML = `<p>${message}</p>`;
this.chatMessages.appendChild(systemMessage);
}
/**
* Enable chat functionality
*/
enableChat() {
document.getElementById('chat-input').disabled = false;
document.getElementById('send-message-btn').disabled = false;
document.getElementById('reset-chat-btn').disabled = false;
}
/**
* Disable chat functionality
*/
disableChat() {
document.getElementById('chat-input').disabled = true;
document.getElementById('send-message-btn').disabled = true;
document.getElementById('reset-chat-btn').disabled = true;
}
/**
* Show citations in a modal
* @param {string} query - The query that generated these citations
* @param {Object} citations - The citations object with texts, tables, and images
*/
showCitationsModal(query, citations) {
// Cache DOM elements
const citationsModal = document.getElementById('citations-modal');
const citationQuery = document.getElementById('citation-query');
const citationsContainer = document.getElementById('citations-container');
// Set the query
citationQuery.textContent = `"${query}"`;
// Clear previous citations
citationsContainer.innerHTML = '';
// Add text citations
if (citations.texts.length > 0) {
const textSection = document.createElement('div');
textSection.className = 'citation-section';
textSection.innerHTML = '<h4>Text Excerpts</h4>';
const textList = document.createElement('div');
textList.className = 'citation-list';
citations.texts.forEach((text, index) => {
const textItem = document.createElement('div');
textItem.className = 'text-citation';
textItem.innerHTML = `<div class="citation-number">${index + 1}</div><div class="citation-text">${text}</div>`;
textList.appendChild(textItem);
});
textSection.appendChild(textList);
citationsContainer.appendChild(textSection);
}
// Add table citations
if (citations.tables.length > 0) {
const tableSection = document.createElement('div');
tableSection.className = 'citation-section';
tableSection.innerHTML = '<h4>Tables</h4>';
const tableList = document.createElement('div');
tableList.className = 'citation-list';
citations.tables.forEach((tableHtml, index) => {
const tableItem = document.createElement('div');
tableItem.className = 'table-citation';
// Wrap the table in a container for better responsiveness
tableItem.innerHTML = `
<div class="citation-number">${index + 1}</div>
<div class="citation-table-container">
<div class="citation-table">${tableHtml}</div>
</div>
`;
tableList.appendChild(tableItem);
});
tableSection.appendChild(tableList);
citationsContainer.appendChild(tableSection);
}
// Add image citations
if (citations.images.length > 0) {
const imageSection = document.createElement('div');
imageSection.className = 'citation-section';
imageSection.innerHTML = '<h4>Images</h4>';
const imageList = document.createElement('div');
imageList.className = 'citation-list';
citations.images.forEach((imageBase64, index) => {
const imageItem = document.createElement('div');
imageItem.className = 'image-citation';
imageItem.innerHTML = `
<div class="citation-number">${index + 1}</div>
<div class="citation-image-container">
<img src="data:image/jpeg;base64,${imageBase64}" alt="Citation image ${index + 1}" class="responsive-image" loading="lazy">
</div>
`;
imageList.appendChild(imageItem);
});
imageSection.appendChild(imageList);
citationsContainer.appendChild(imageSection);
}
// Show the modal
this.showModal(citationsModal);
}
} |