File size: 23,911 Bytes
e5f6c27 | 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 | /**
* Bayan Chrome Extension — Popup Logic
*
* Fixes applied:
* HIGH-1: Offset rebasing via applyAndRebase() after each individual apply
* MED-1: Clipboard .catch() on all writeText() calls
* MED-2: Staleness detection — locks corrections when user edits after analysis
*/
document.addEventListener('DOMContentLoaded', () => {
// ── Element references ──
const inputText = document.getElementById('input-text');
const charCount = document.getElementById('char-count');
const wordCount = document.getElementById('word-count');
const btnCorrect = document.getElementById('btn-correct');
const btnClear = document.getElementById('btn-clear');
const btnApplyAll = document.getElementById('btn-apply-all');
const btnCopyResult = document.getElementById('btn-copy-result');
const scoreSection = document.getElementById('score-section');
const resultSection = document.getElementById('result-section');
const resultText = document.getElementById('result-text');
const suggestionsSection = document.getElementById('suggestions-section');
const suggestionsList = document.getElementById('suggestions-list');
const timingSection = document.getElementById('timing-section');
const timingText = document.getElementById('timing-text');
const loadingOverlay = document.getElementById('loading-overlay');
const loadingTextEl = document.getElementById('loading-text');
// Summary tab elements
const summaryInputText = document.getElementById('summary-input-text');
const summaryCharCount = document.getElementById('summary-char-count');
const btnSummarize = document.getElementById('btn-summarize');
const summaryResultSection = document.getElementById('summary-result-section');
const summaryText = document.getElementById('summary-text');
const summaryMeta = document.getElementById('summary-meta');
const btnCopySummary = document.getElementById('btn-copy-summary');
// Score elements
const scoreValue = document.getElementById('score-value');
const scoreCircle = document.getElementById('score-circle');
const scoreHint = document.getElementById('score-hint');
const countSpelling = document.getElementById('count-spelling');
const countGrammar = document.getElementById('count-grammar');
const countPunctuation = document.getElementById('count-punctuation');
// ══════════════════════════════════════════════════════════
// State
// ══════════════════════════════════════════════════════════
let currentSuggestions = [];
/**
* MED-2: Snapshot of the text that was last analyzed.
* All suggestion offsets are relative to THIS text.
* applyAndRebase() mutates this alongside suggestions.
*/
let analyzedText = '';
/**
* MED-2: Whether the analysis results are stale.
* Set to true when the user edits the textarea after analysis.
* When stale, suggestion actions are blocked.
*/
let isStale = false;
const SCORE_CIRCUMFERENCE = 440;
// ══════════════════════════════════════════════════════════
// Tab switching
// ══════════════════════════════════════════════════════════
document.querySelectorAll('.bayan-tab').forEach((tab) => {
tab.addEventListener('click', () => {
const targetTab = tab.dataset.tab;
document.querySelectorAll('.bayan-tab').forEach((t) => {
t.classList.toggle('active', t.dataset.tab === targetTab);
t.setAttribute('aria-selected', t.dataset.tab === targetTab ? 'true' : 'false');
});
document.querySelectorAll('.bayan-panel').forEach((p) => {
p.classList.toggle('active', p.id === `panel-${targetTab}`);
});
});
});
// ══════════════════════════════════════════════════════════
// Character & word counter
// ══════════════════════════════════════════════════════════
function updateCounts(textarea, charEl, wordEl) {
const text = textarea.value;
const chars = text.length;
const words = text.trim() ? text.trim().split(/\s+/).length : 0;
if (charEl) charEl.textContent = chars.toLocaleString('ar-EG');
if (wordEl) wordEl.textContent = words.toLocaleString('ar-EG');
}
inputText.addEventListener('input', () => {
updateCounts(inputText, charCount, wordCount);
// MED-2: Detect user edit after analysis → mark stale
if (currentSuggestions.length > 0 && inputText.value !== analyzedText) {
markStale();
}
});
summaryInputText.addEventListener('input', () => updateCounts(summaryInputText, summaryCharCount, null));
// ══════════════════════════════════════════════════════════
// MED-2: Staleness management
// ══════════════════════════════════════════════════════════
/**
* Mark analysis results as stale (user edited textarea).
* Disables suggestion actions and shows a re-analysis prompt.
*/
function markStale() {
if (isStale) return; // already stale
isStale = true;
// Visual indicator: dim the results area
if (resultSection) resultSection.classList.add('bayan-stale');
if (suggestionsSection) suggestionsSection.classList.add('bayan-stale');
// Show re-analysis toast
showToast('⚠ النص تغيّر — أعد التحليل لتحديث الاقتراحات', 4000);
// Update button text to indicate re-analysis needed
btnCorrect.innerHTML = `
<svg width="16" height="16" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h5M20 20v-5h-5M4 9a8 8 0 0114-3M20 15a8 8 0 01-14 3"/></svg>
إعادة التحليل`;
}
/**
* Clear staleness (after re-analysis or clear).
*/
function clearStale() {
isStale = false;
if (resultSection) resultSection.classList.remove('bayan-stale');
if (suggestionsSection) suggestionsSection.classList.remove('bayan-stale');
// Restore button text
btnCorrect.innerHTML = `
<svg width="16" height="16" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4"/></svg>
تحليل وتصحيح`;
}
// ══════════════════════════════════════════════════════════
// Loading state
// ══════════════════════════════════════════════════════════
function setLoading(show, text = 'جارٍ التحليل...') {
loadingOverlay.classList.toggle('is-hidden', !show);
loadingTextEl.textContent = text;
}
// ══════════════════════════════════════════════════════════
// Toast
// ══════════════════════════════════════════════════════════
function showToast(message, duration = 2500) {
const toast = document.getElementById('toast');
toast.textContent = message;
toast.classList.add('is-visible');
clearTimeout(toast._timer);
toast._timer = setTimeout(() => toast.classList.remove('is-visible'), duration);
}
// ══════════════════════════════════════════════════════════
// Score ring
// ══════════════════════════════════════════════════════════
function updateScore(spelling, grammar, punctuation) {
const score = calculateWritingScore(spelling, grammar, punctuation);
const total = spelling + grammar + punctuation;
scoreSection.classList.remove('is-hidden');
if (scoreValue) {
scoreValue.textContent = score > 0 || total > 0 ? score.toLocaleString('ar-EG') : '--';
}
if (scoreCircle) {
const offset = SCORE_CIRCUMFERENCE - (score / 100) * SCORE_CIRCUMFERENCE;
scoreCircle.style.strokeDashoffset = String(offset);
}
if (scoreHint) {
scoreHint.textContent = getScoreHint(score, total);
}
if (countSpelling) countSpelling.textContent = spelling.toLocaleString('ar-EG');
if (countGrammar) countGrammar.textContent = grammar.toLocaleString('ar-EG');
if (countPunctuation) countPunctuation.textContent = punctuation.toLocaleString('ar-EG');
}
// ══════════════════════════════════════════════════════════
// Render suggestions list
// ══════════════════════════════════════════════════════════
function renderSuggestions(suggestions) {
currentSuggestions = suggestions;
if (!suggestions || suggestions.length === 0) {
suggestionsSection.classList.add('is-hidden');
return;
}
suggestionsSection.classList.remove('is-hidden');
const html = suggestions.map((s, i) => buildSuggestionCardHTML(s, i)).join('');
suggestionsList.innerHTML = html;
// Bind suggestion card events
suggestionsList.querySelectorAll('.bayan-alt-chip').forEach((chip) => {
chip.addEventListener('click', (e) => {
e.stopPropagation();
// MED-2: Block if stale
if (isStale) {
showToast('⚠ أعد التحليل أولاً — النص تغيّر');
return;
}
const suggestionId = chip.dataset.cardId;
const altText = chip.dataset.cardAlt;
const suggestion = currentSuggestions.find((s) => String(s.id || '') === String(suggestionId));
if (!suggestion) return;
if (altText === suggestion.original) {
// Dismiss — remove from list, no text change, no rebase needed
currentSuggestions = removeSuggestion(currentSuggestions, suggestion.id);
} else {
// ═══════════════════════════════════════════════════
// HIGH-1 FIX: Apply + Rebase via atomic function
// ═══════════════════════════════════════════════════
const result = applyAndRebase(analyzedText, suggestion, altText, currentSuggestions);
analyzedText = result.text;
currentSuggestions = result.suggestions;
// Sync textarea with the rebased text
inputText.value = analyzedText;
updateCounts(inputText, charCount, wordCount);
}
// Re-render score and suggestions
const counts = countByType(currentSuggestions);
updateScore(counts.spelling, counts.grammar, counts.punctuation);
renderSuggestions(currentSuggestions);
// Re-render highlighted text with updated offsets
resultText.innerHTML = renderHighlightedText(analyzedText, currentSuggestions);
showToast('✓ تم التصحيح');
});
});
// Show apply-all only when >= 2
btnApplyAll.classList.toggle('is-hidden', suggestions.length < 2);
}
// ══════════════════════════════════════════════════════════
// Clear button
// ══════════════════════════════════════════════════════════
btnClear.addEventListener('click', () => {
inputText.value = '';
analyzedText = '';
updateCounts(inputText, charCount, wordCount);
scoreSection.classList.add('is-hidden');
resultSection.classList.add('is-hidden');
suggestionsSection.classList.add('is-hidden');
timingSection.classList.add('is-hidden');
currentSuggestions = [];
clearStale();
});
// ══════════════════════════════════════════════════════════
// Correct button
// ══════════════════════════════════════════════════════════
btnCorrect.addEventListener('click', async () => {
const text = inputText.value.trim();
if (!text) {
showToast('أدخل نصاً للتحليل');
return;
}
if (text.length < CONFIG.MIN_ANALYZE_LENGTH) {
showToast('النص قصير جداً (الحد الأدنى ١٥ حرفاً)');
return;
}
if (text.length > CONFIG.MAX_ANALYZE_LENGTH) {
showToast('النص طويل جداً (الحد الأقصى ٥٠٠٠ حرف)');
return;
}
setLoading(true, 'جارٍ التحليل...');
clearStale(); // MED-2: Clear stale on re-analysis
try {
const data = await bayanAnalyze(text);
if (data.status === 'success' || data.status === 'partial') {
const suggestions = sortSuggestions(data.suggestions || []);
currentSuggestions = suggestions;
// MED-2: Snapshot the analyzed text — all offsets reference THIS string
analyzedText = data.original;
// Sync textarea to the exact text the backend analyzed
inputText.value = analyzedText;
updateCounts(inputText, charCount, wordCount);
// Show corrected text with highlights
resultSection.classList.remove('is-hidden');
resultText.innerHTML = renderHighlightedText(analyzedText, suggestions);
// Update score
const counts = countByType(suggestions);
updateScore(counts.spelling, counts.grammar, counts.punctuation);
// Render suggestion cards
renderSuggestions(suggestions);
// Show timing
if (data.timing_ms) {
timingSection.classList.remove('is-hidden');
timingText.textContent = `التحليل: ${data.timing_ms.total_ms || 0}ms (إملائي: ${data.timing_ms.spelling_ms || 0}ms، نحوي: ${data.timing_ms.grammar_ms || 0}ms، ترقيم: ${data.timing_ms.punctuation_ms || 0}ms)`;
}
if (suggestions.length === 0) {
showToast('نصك ممتاز! لم نجد أي أخطاء ✨');
}
} else {
showToast('تعذّر التحليل — حاول مرة أخرى');
}
} catch (error) {
console.error('[Bayan] Analysis error:', error);
showToast('خطأ في الاتصال — تحقق من الإنترنت');
} finally {
setLoading(false);
}
});
// ══════════════════════════════════════════════════════════
// Apply all button
// ══════════════════════════════════════════════════════════
btnApplyAll.addEventListener('click', () => {
if (currentSuggestions.length === 0) return;
// MED-2: Block if stale
if (isStale) {
showToast('⚠ أعد التحليل أولاً — النص تغيّر');
return;
}
// Apply all patches using reverse-order (no rebase needed — all applied at once)
analyzedText = applyAllPatches(analyzedText, currentSuggestions);
inputText.value = analyzedText;
updateCounts(inputText, charCount, wordCount);
currentSuggestions = [];
resultText.innerHTML = escapeHtml(analyzedText);
updateScore(0, 0, 0);
renderSuggestions([]);
showToast('✓ تم تطبيق جميع التصحيحات');
});
// ══════════════════════════════════════════════════════════
// Copy result (MED-1: .catch() for clipboard errors)
// ══════════════════════════════════════════════════════════
btnCopyResult.addEventListener('click', () => {
const text = resultText.textContent || '';
navigator.clipboard.writeText(text)
.then(() => showToast('✓ تم نسخ النص'))
.catch(() => showToast('تعذّر النسخ'));
});
// ══════════════════════════════════════════════════════════
// Summarize button
// ══════════════════════════════════════════════════════════
btnSummarize.addEventListener('click', async () => {
const text = summaryInputText.value.trim();
if (!text) {
showToast('أدخل نصاً للتلخيص');
return;
}
if (text.length < CONFIG.MIN_SUMMARIZE_LENGTH) {
showToast('النص قصير جداً للتلخيص');
return;
}
const lengthValue = parseInt(document.querySelector('input[name="summary-length"]:checked')?.value || '2', 10);
setLoading(true, 'جارٍ التلخيص...');
try {
const data = await bayanSummarize(text, lengthValue);
if (data.status === 'success' && data.summary) {
summaryResultSection.classList.remove('is-hidden');
summaryText.textContent = data.summary;
summaryMeta.textContent = `النص الأصلي: ${(data.original_length || 0).toLocaleString('ar-EG')} حرف → الملخص: ${(data.summary_length || 0).toLocaleString('ar-EG')} حرف`;
showToast('✓ تم التلخيص');
} else {
showToast('تعذّر التلخيص — حاول مرة أخرى');
}
} catch (error) {
console.error('[Bayan] Summarization error:', error);
showToast('خطأ في الاتصال — تحقق من الإنترنت');
} finally {
setLoading(false);
}
});
// ══════════════════════════════════════════════════════════
// Copy summary (MED-1: .catch() for clipboard errors)
// ══════════════════════════════════════════════════════════
btnCopySummary.addEventListener('click', () => {
const text = summaryText.textContent || '';
navigator.clipboard.writeText(text)
.then(() => showToast('✓ تم نسخ الملخص'))
.catch(() => showToast('تعذّر النسخ'));
});
// ══════════════════════════════════════════════════════════
// Status check on load
// ══════════════════════════════════════════════════════════
(async function checkStatus() {
const statusDot = document.querySelector('.bayan-status-dot');
const statusText = document.getElementById('status-text');
try {
await bayanHealthCheck();
if (statusDot) statusDot.classList.add('online');
if (statusText) statusText.textContent = 'متصل';
} catch {
if (statusDot) statusDot.classList.add('offline');
if (statusText) statusText.textContent = 'غير متصل';
}
})();
// ══════════════════════════════════════════════════════════
// Phase 4: Context Menu Pickup
// ══════════════════════════════════════════════════════════
// Fix #2: Guard against double execution
// Fix #4: Tab name constants
// Fix #5: Storage fallback (session → local)
// ══════════════════════════════════════════════════════════
const TAB_ACTIONS = { correct: 'correct', summarize: 'summarize' };
let contextConsumed = false; // Fix #2
(async function checkContextAction() {
// Only available in extension context (not in test pages)
if (typeof chrome === 'undefined' || !chrome.storage) return;
// Fix #2: Prevent double-trigger
if (contextConsumed) return;
// Fix #5: Storage fallback
const storage = chrome.storage?.session || chrome.storage?.local;
if (!storage) return;
try {
const data = await storage.get(['contextAction', 'contextText', 'contextTimestamp']);
if (!data.contextAction || !data.contextText) return;
// Ignore stale actions (older than 15 seconds — matches background cleanup)
const age = Date.now() - (data.contextTimestamp || 0);
if (age > 15000) {
chrome.runtime.sendMessage({ type: 'CLEAR_CONTEXT' });
return;
}
// Fix #2: Mark as consumed BEFORE processing
contextConsumed = true;
console.log(`[Bayan] Context action: ${data.contextAction}, text length: ${data.contextText.length}`);
if (data.contextAction === TAB_ACTIONS.correct) {
// Fill the correction tab and auto-trigger analysis
inputText.value = data.contextText;
updateCounts(inputText, charCount, wordCount);
// Switch to correction tab
const correctTab = document.querySelector(`[data-tab="${TAB_ACTIONS.correct}"]`);
if (correctTab) correctTab.click();
// Auto-click the correct button after a brief delay for UI paint
setTimeout(() => btnCorrect.click(), 150);
} else if (data.contextAction === TAB_ACTIONS.summarize) {
// Fill the summary tab and auto-trigger summarization
summaryInputText.value = data.contextText;
updateCounts(summaryInputText, summaryCharCount, null);
// Switch to summarize tab
const summarizeTab = document.querySelector(`[data-tab="${TAB_ACTIONS.summarize}"]`);
if (summarizeTab) summarizeTab.click();
// Auto-click the summarize button
setTimeout(() => btnSummarize.click(), 150);
}
// Clear the context action so it doesn't re-trigger on next popup open
chrome.runtime.sendMessage({ type: 'CLEAR_CONTEXT' });
} catch (err) {
console.warn('[Bayan] Context action check failed:', err);
}
})();
});
|