Spaces:
Running
Running
File size: 11,014 Bytes
33acf50 a3559b0 33acf50 a651b4c 33acf50 a651b4c 33acf50 a651b4c 33acf50 a651b4c 33acf50 7ddc555 33acf50 | 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 | document.addEventListener('DOMContentLoaded', () => {
// Configure API endpoint: prefer window.SENSECATCH_API_BASE if set
const DEFAULT_API = '/analyze';
const API_BASE = (typeof window !== 'undefined' && window.SENSECATCH_API_BASE) ? window.SENSECATCH_API_BASE : DEFAULT_API;
const textInput = document.getElementById('text-input');
const modelSelector = document.getElementById('model-selector');
const analyzeBtn = document.getElementById('analyze-btn');
const resultDisplay = document.getElementById('result-display');
const historyList = document.getElementById('history-list');
// Show the current year in the footer
const yearEl = document.getElementById('year');
if (yearEl) { yearEl.textContent = new Date().getFullYear(); }
// Store analysis history
const analysisHistory = [];
// Banner helpers
const infoBanner = document.getElementById('inline-info');
const infoText = document.getElementById('info-text');
const infoClose = document.getElementById('info-close');
const FIRST_VISIT_KEY = 'sc_first_visit_shown_v1';
const LAST_SUCCESS_TS = 'sc_last_success_ts_v1';
const REWARM_SECS = 15 * 60; // 15 minutes
function showInfo(message) {
if (!infoBanner) return;
infoText.textContent = message;
infoBanner.classList.remove('hidden');
}
function hideInfo() {
if (!infoBanner) return;
infoBanner.classList.add('hidden');
}
if (infoClose) {
infoClose.addEventListener('click', hideInfo);
}
// Initial banner for first click per session
function maybeShowFirstVisitBanner() {
if (!sessionStorage.getItem(FIRST_VISIT_KEY)) {
showInfo('Waking up the machine learning models!\nFirst request may take up to ~40 seconds.');
sessionStorage.setItem(FIRST_VISIT_KEY, '1');
}
}
// Re-warm banner if app likely slept again (no success for 15+ mins)
function maybeShowRewarmBanner() {
const last = Number(sessionStorage.getItem(LAST_SUCCESS_TS) || '0');
const now = Date.now() / 1000;
if (!last || (now - last) > REWARM_SECS) {
showInfo('The ML models went to sleep due to inactivity. Waking them up now…\n(this may take up to ~40 seconds)');
}
}
// Handle analyze button click
analyzeBtn.addEventListener('click', async () => {
const text = textInput.value.trim();
const model = modelSelector.value;
if (!text) {
alert('Please enter some text to analyze.');
return;
}
// Show inline info if first visit and if rewarm needed
maybeShowFirstVisitBanner();
maybeShowRewarmBanner();
// Show loading state
analyzeBtn.disabled = true;
analyzeBtn.textContent = 'Analyzing...';
resultDisplay.innerHTML = '<p class="prompt">Analyzing your text...</p>';
try {
// Send request to server
const response = await fetch(API_BASE, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ text, model })
});
if (!response.ok) {
throw new Error('Server error: ' + response.statusText);
}
const result = await response.json();
// Success - record timestamp and hide banner
sessionStorage.setItem(LAST_SUCCESS_TS, String(Math.floor(Date.now()/1000)));
hideInfo();
// Display result
displayResult(result);
// Add to history
addToHistory(result);
} catch (error) {
console.error('Error analyzing text:', error);
resultDisplay.innerHTML = `
<div class="result-card">
<p>Error analyzing text: ${error.message || 'Unknown error'}. Please try again.</p>
</div>
`;
} finally {
// Reset button state
analyzeBtn.disabled = false;
analyzeBtn.textContent = 'Analyze Sentiment';
}
});
// Display analysis result
function displayResult(result) {
const sentimentClass = result.sentiment === 'Positive' ? 'positive' : 'negative';
// Build the influential-words block only when the model returned words.
let wordsBlock = '';
if (result.important_words && result.important_words.length > 0) {
const wordChips = result.important_words.map(wordInfo => {
const chipClass = wordInfo.sentiment === 'positive' ? 'positive' : 'negative';
// Add strikethrough styling for negated words
const negatedStyle = wordInfo.negated ? 'text-decoration: line-through;' : '';
return `<span class="word-chip ${chipClass}" style="${negatedStyle}" title="${wordInfo.negated ? 'Negated' : ''}">${wordInfo.word}</span>`;
}).join('');
wordsBlock = `
<div class="important-words">
<h4>Influential Words:</h4>
<div class="word-chips">
${wordChips}
</div>
</div>`;
}
resultDisplay.innerHTML = `
<div class="result-card">
<div class="result-header">
<span class="sentiment-label ${sentimentClass}">${result.sentiment}</span>
<span class="confidence">${result.confidence}% confidence</span>
</div>
<div class="confidence-meter">
<div class="confidence-bar ${sentimentClass}" style="width: ${result.confidence}%"></div>
</div>
<div class="result-text">"${result.text}"</div>
${wordsBlock}
<p class="model-type">Model: ${formatModelName(result.model)}</p>
</div>
`;
}
// Add result to history
function addToHistory(result) {
// Add to history array (limit to 10 items)
analysisHistory.unshift(result);
if (analysisHistory.length > 10) {
analysisHistory.pop();
}
// Update history display
updateHistoryDisplay();
}
// Update history display
function updateHistoryDisplay() {
// Clear "no history" message
historyList.innerHTML = '';
if (analysisHistory.length === 0) {
historyList.innerHTML = '<p class="no-history">Previous analyses will appear here.</p>';
return;
}
analysisHistory.forEach(item => {
const sentimentClass = item.sentiment === 'Positive' ? 'positive' : 'negative';
const historyItem = document.createElement('div');
historyItem.className = 'history-item';
historyItem.innerHTML = `
<div class="history-sentiment ${sentimentClass}">
${item.sentiment} (${item.confidence}%)
</div>
<div class="history-text">${truncateText(item.text, 60)}</div>
<div class="history-model">Model: ${formatModelName(item.model)}</div>
`;
// Add click event to load this analysis again
historyItem.addEventListener('click', () => {
textInput.value = item.text;
modelSelector.value = item.model;
// Scroll to input
textInput.scrollIntoView({ behavior: 'smooth' });
textInput.focus();
});
historyList.appendChild(historyItem);
});
}
// Helper function to format model name
function formatModelName(modelKey) {
switch(modelKey) {
case 'naive_bayes':
return 'Naive Bayes';
case 'logistic_regression':
return 'Logistic Regression';
case 'linear_svc':
return 'Linear SVC';
case 'nbsvm':
return 'NBSVM';
case 'distilbert':
return 'DistilBERT (fine-tuned)';
case 'stack':
return 'Stacked Ensemble';
case 'rule_based':
return 'Rule-based (linguistic)';
default:
return modelKey;
}
}
// Helper function to truncate text
function truncateText(text, maxLength) {
if (text.length <= maxLength) return text;
return text.substr(0, maxLength) + '...';
}
// Add focus to the text input on page load
textInput.focus();
// Set up clear history button
const clearHistoryBtn = document.getElementById('clear-history-btn');
clearHistoryBtn.addEventListener('click', () => {
if (analysisHistory.length === 0) {
return; // Nothing to clear
}
if (confirm('Are you sure you want to clear your analysis history?')) {
// Clear history array
analysisHistory.length = 0;
// Update display
updateHistoryDisplay();
}
});
// Check backend health on load; show the banner only if it is slow to answer.
const HEALTH_URL = API_BASE.replace(/\/analyze\/?$/, '/healthz');
if (HEALTH_URL !== API_BASE) {
let healthTries = 0;
const bannerTimer = setTimeout(() => {
showInfo('Waking up the machine learning models!\nThe first analysis may take up to ~40 seconds.');
}, 1800);
const checkHealth = () => {
fetch(HEALTH_URL)
.then(response => {
if (response.ok) {
clearTimeout(bannerTimer);
hideInfo();
return;
}
scheduleHealthRetry();
})
.catch(() => scheduleHealthRetry());
};
const scheduleHealthRetry = () => {
healthTries += 1;
if (healthTries < 24) {
setTimeout(checkHealth, 5000);
}
};
checkHealth();
}
// Optional: background warm-up ping to reduce free-tier cold start delay
try {
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), 5000);
fetch(API_BASE, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ text: 'warmup', model: 'naive_bayes' }),
signal: controller.signal
}).finally(() => clearTimeout(timeoutId));
} catch (_) {
// ignore warm-up failures
}
}); |