File size: 16,334 Bytes
41e1749 8d7698b afe9be1 41e1749 a281968 41e1749 8d7698b 41e1749 a281968 41e1749 afdf449 41e1749 8d7698b 41e1749 8d7698b 41e1749 036913a 41e1749 036913a 41e1749 1eb5022 41e1749 1eb5022 88ad74a 1eb5022 88ad74a 1eb5022 88ad74a 1eb5022 88ad74a 1eb5022 41e1749 036913a 16da498 036913a 16da498 036913a 16da498 036913a 41e1749 1eb5022 036913a 16da498 036913a 16da498 036913a 16da498 036913a 1eb5022 036913a 1eb5022 036913a 1eb5022 41e1749 | 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 | // src/js/editor.js
// Editor management and state
let analyzeTimeout;
let analyzeAbortController = null;
let _lastInputTime = 0;
const ANALYZE_DEBOUNCE_MS = 1000;
const MAX_ANALYZE_LENGTH = 5000;
/**
* Initialize the editor
*/
function initEditor() {
const editor = getEditorElement();
if (!editor) {
console.warn('Editor element not found');
return;
}
// Restore draft if no document was explicitly loaded yet
try {
const draft = localStorage.getItem('bayan_editor_draft');
if (draft && !editor.innerHTML.trim()) {
editor.innerHTML = draft;
// Trigger analysis on load
setTimeout(analyzeTextDelayed, 500);
}
} catch (e) {}
editor.addEventListener('input', () => {
_lastInputTime = Date.now();
updateEditorStats();
updatePlaceholder();
analyzeTextDelayed();
try {
localStorage.setItem('bayan_editor_draft', editor.innerHTML);
} catch (e) {}
});
editor.addEventListener('click', (e) => {
handleEditorClick(e);
});
document.addEventListener('keydown', (e) => {
if (e.key === 'Escape') hideTooltip();
});
document.addEventListener('click', (e) => {
const popover = document.getElementById('editor-tooltip');
if (popover && popover.classList.contains('show') &&
!popover.contains(e.target) &&
!e.target.classList.contains('spelling-error') &&
!e.target.classList.contains('grammar-error') &&
!e.target.classList.contains('punctuation-suggestion')) {
hideTooltip();
}
});
const applyAllBtn = document.getElementById('apply-all-btn');
const applyAllSheet = document.getElementById('apply-all-sheet');
if (applyAllBtn) applyAllBtn.addEventListener('click', applyAllSuggestions);
if (applyAllSheet) applyAllSheet.addEventListener('click', applyAllSuggestions);
updatePlaceholder();
}
function updateEditorStats() {
const text = getEditorText();
const words = text.trim() ? text.trim().split(/\s+/).length : 0;
const wordCountEl = document.getElementById('word-count');
if (wordCountEl) {
wordCountEl.textContent = words.toLocaleString('ar-EG');
}
// Item 4: Enhanced stats
if (typeof updateEnhancedStats === 'function') {
updateEnhancedStats();
}
}
function updatePlaceholder() {
const editor = getEditorElement();
if (!editor) return;
const text = getEditorText();
if (!text || text.trim().length === 0) {
editor.setAttribute('data-empty', 'true');
} else {
editor.removeAttribute('data-empty');
}
}
function analyzeTextDelayed() {
clearTimeout(analyzeTimeout);
// Abort any in-flight request so it doesn't overwrite while user types
if (analyzeAbortController) {
analyzeAbortController.abort();
}
analyzeTimeout = setTimeout(() => {
// Double-check user hasn't typed in the last DEBOUNCE period
const timeSinceLastInput = Date.now() - _lastInputTime;
if (timeSinceLastInput >= ANALYZE_DEBOUNCE_MS - 100) {
analyzeText();
}
}, ANALYZE_DEBOUNCE_MS);
}
function findSuggestionById(id) {
const suggestions = window.currentSuggestions || [];
return suggestions[parseInt(id, 10)] || null;
}
function findSuggestionElement(id) {
return document.querySelector(`[data-suggestion-id="${id}"]`);
}
async function analyzeText() {
const text = getEditorText();
updateEditorStats();
updatePlaceholder();
if (!text || text.trim().length === 0) {
renderWithoutSuggestions(text);
updateSuggestionCounts(0, 0, 0);
updateWritingScore(0, 0, 0);
updateSuggestionsList([]);
window.currentSuggestions = [];
updateAnalysisLimitBanner(false);
return;
}
const isTruncated = text.length > MAX_ANALYZE_LENGTH;
const textForApi = isTruncated ? text.substring(0, MAX_ANALYZE_LENGTH) : text;
updateAnalysisLimitBanner(isTruncated);
if (analyzeAbortController) {
analyzeAbortController.abort();
}
analyzeAbortController = new AbortController();
setAnalyzingState(true);
try {
const savedSelection = saveSelection();
const response = await fetch('/api/analyze', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ text: textForApi }),
signal: analyzeAbortController.signal
});
if (!response.ok) {
console.error('Analyze API error:', response.status);
renderWithoutSuggestions(text);
return;
}
const data = await response.json();
if (data.status !== 'success' || !data.suggestions) {
renderWithoutSuggestions(text);
return;
}
window.currentSuggestions = sortSuggestions(data.suggestions || []);
// Use DOM overlay instead of innerHTML replacement to preserve formatting
const editor = getEditorElement();
overlaySuggestions(editor, window.currentSuggestions);
if (savedSelection) {
restoreSelection(savedSelection);
}
const spellingCount = window.currentSuggestions.filter((s) => s.type === 'spelling').length;
const grammarCount = window.currentSuggestions.filter((s) => s.type === 'grammar').length;
const punctuationCount = window.currentSuggestions.filter((s) => s.type === 'punctuation').length;
updateSuggestionCounts(spellingCount, grammarCount, punctuationCount);
updateWritingScore(spellingCount, grammarCount, punctuationCount);
updateSuggestionsList(window.currentSuggestions);
} catch (error) {
if (error.name === 'AbortError') return;
console.error('Analysis error:', error);
renderWithoutSuggestions(text);
} finally {
setAnalyzingState(false);
}
}
function renderWithoutSuggestions(text) {
const editor = getEditorElement();
if (!editor) return;
// Just clear overlays, don't replace content (preserves formatting)
clearOverlays(editor);
updatePlaceholder();
}
function updateSuggestionCounts(spelling, grammar, punctuation) {
const spellingEl = document.getElementById('spelling-count');
const grammarEl = document.getElementById('grammar-count');
const punctuationEl = document.getElementById('punctuation-count');
if (spellingEl) spellingEl.textContent = spelling.toLocaleString('ar-EG');
if (grammarEl) grammarEl.textContent = grammar.toLocaleString('ar-EG');
if (punctuationEl) punctuationEl.textContent = punctuation.toLocaleString('ar-EG');
}
function handleEditorClick(e) {
const target = e.target;
if (target.classList.contains('spelling-error') ||
target.classList.contains('grammar-error') ||
target.classList.contains('punctuation-suggestion')) {
showTooltip(target);
}
}
function showTooltip(element) {
const id = element.dataset.suggestionId;
const suggestion = findSuggestionById(id);
if (!suggestion) return;
const tooltip = document.getElementById('editor-tooltip');
if (!tooltip) return;
const typeEl = document.getElementById('tooltip-type');
const originalEl = document.getElementById('tooltip-original');
const alternativesEl = document.getElementById('tooltip-alternatives');
const typeMap = {
spelling: 'خطأ إملائي',
grammar: 'خطأ نحوي',
punctuation: 'علامات ترقيم'
};
if (typeEl) {
typeEl.textContent = typeMap[suggestion.type] || suggestion.type;
typeEl.className = `popover-type popover-type--${suggestion.type}`;
}
if (originalEl) {
originalEl.textContent = suggestion.original;
}
// Render alternatives
if (alternativesEl) {
const alts = suggestion.alternatives || [suggestion.correction, suggestion.original];
let html = '';
// Render corrections first (non-keep)
alts.forEach((alt, i) => {
const isKeep = alt === suggestion.original;
if (isKeep) return; // render keep button last
const isMain = i === 0;
const btnClass = isMain ? 'popover-alt-btn popover-alt-main' : 'popover-alt-btn';
html += `<button class="${btnClass}" data-alt-correction="${escapeHtml(alt)}" type="button">${escapeHtml(alt)}</button>`;
});
// Render keep button at end
html += `<button class="popover-alt-btn popover-alt-keep" data-alt-correction="${escapeHtml(suggestion.original)}" type="button">إبقاء كما هي</button>`;
alternativesEl.innerHTML = html;
// Bind click events
alternativesEl.querySelectorAll('.popover-alt-btn').forEach(btn => {
btn.addEventListener('click', () => {
const correctionText = btn.dataset.altCorrection;
if (correctionText === suggestion.original) {
// "Keep as-is" — just dismiss the suggestion
dismissSuggestion(suggestion);
} else {
// Apply this alternative correction
applyAlternativeCorrection(suggestion, correctionText);
}
});
});
}
const rect = element.getBoundingClientRect();
let top = rect.bottom + 10;
let left = rect.left;
if (left + 320 > window.innerWidth) {
left = window.innerWidth - 330;
}
if (top + 150 > window.innerHeight) {
top = rect.top - 150;
}
tooltip.style.top = `${top}px`;
tooltip.style.left = `${Math.max(8, left)}px`;
tooltip.classList.add('show');
window.currentApplySuggestion = suggestion;
window.currentSuggestionElement = element;
window.currentSuggestionId = id;
}
function hideTooltip() {
const tooltip = document.getElementById('editor-tooltip');
if (tooltip) {
tooltip.classList.remove('show');
}
window.currentApplySuggestion = null;
window.currentSuggestionElement = null;
}
function applySuggestionAtOffsets(suggestion) {
// Find the error span in the DOM and replace its text content
// This preserves formatting (bold, italic, etc.) around/inside the span
const idx = (window.currentSuggestions || []).indexOf(suggestion);
const errorSpan = idx >= 0 ? document.querySelector(`[data-suggestion-id="${idx}"]`) : null;
if (errorSpan) {
// Replace the error span's text content with the correction
// while keeping it inside its formatting parent
const parent = errorSpan.parentNode;
const correctedNode = document.createTextNode(suggestion.correction);
parent.insertBefore(correctedNode, errorSpan);
parent.removeChild(errorSpan);
parent.normalize();
} else {
// Fallback: find span by matching original text
const allErrorSpans = document.querySelectorAll('.spelling-error, .grammar-error, .punctuation-suggestion');
let found = false;
allErrorSpans.forEach(span => {
if (!found && span.textContent === suggestion.original) {
const p = span.parentNode;
const correctedNode = document.createTextNode(suggestion.correction);
p.insertBefore(correctedNode, span);
p.removeChild(span);
p.normalize();
found = true;
}
});
if (!found) {
// Last resort: offset-based replacement
const text = getEditorText();
const before = text.substring(0, suggestion.start);
const after = text.substring(suggestion.end);
const newText = before + suggestion.correction + after;
setEditorHTML(escapeHtml(newText));
}
}
hideTooltip();
analyzeTextDelayed();
}
function applyCorrection() {
if (!window.currentApplySuggestion) return;
applySuggestionAtOffsets(window.currentApplySuggestion);
}
function applyAlternativeCorrection(suggestion, correctionText) {
const idx = (window.currentSuggestions || []).indexOf(suggestion);
const errorSpan = idx >= 0 ? document.querySelector(`[data-suggestion-id="${idx}"]`) : null;
if (errorSpan) {
const parent = errorSpan.parentNode;
const correctedNode = document.createTextNode(correctionText);
parent.insertBefore(correctedNode, errorSpan);
parent.removeChild(errorSpan);
parent.normalize();
} else {
const allErrorSpans = document.querySelectorAll('.spelling-error, .grammar-error, .punctuation-suggestion');
let found = false;
allErrorSpans.forEach(span => {
if (!found && span.textContent === suggestion.original) {
const p = span.parentNode;
const correctedNode = document.createTextNode(correctionText);
p.insertBefore(correctedNode, span);
p.removeChild(span);
p.normalize();
found = true;
}
});
if (!found) {
const text = getEditorText();
const before = text.substring(0, suggestion.start);
const after = text.substring(suggestion.end);
const newText = before + correctionText + after;
setEditorHTML(escapeHtml(newText));
}
}
hideTooltip();
analyzeTextDelayed();
}
function dismissSuggestion(suggestion) {
// Remove the error highlight but keep the text as-is
const idx = (window.currentSuggestions || []).indexOf(suggestion);
const errorSpan = idx >= 0 ? document.querySelector(`[data-suggestion-id="${idx}"]`) : null;
if (errorSpan) {
// Unwrap: replace span with its text content
const parent = errorSpan.parentNode;
while (errorSpan.firstChild) {
parent.insertBefore(errorSpan.firstChild, errorSpan);
}
parent.removeChild(errorSpan);
parent.normalize();
}
if (window.currentSuggestions) {
window.currentSuggestions = window.currentSuggestions.filter(
s => !(s.start === suggestion.start && s.end === suggestion.end)
);
const spellingCount = window.currentSuggestions.filter(s => s.type === 'spelling').length;
const grammarCount = window.currentSuggestions.filter(s => s.type === 'grammar').length;
const punctuationCount = window.currentSuggestions.filter(s => s.type === 'punctuation').length;
updateSuggestionCounts(spellingCount, grammarCount, punctuationCount);
updateWritingScore(spellingCount, grammarCount, punctuationCount);
updateSuggestionsList(window.currentSuggestions);
}
hideTooltip();
}
function applySuggestionByIndex(index) {
const suggestions = window.currentSuggestions || [];
const suggestion = suggestions[index];
if (!suggestion) return;
applySuggestionAtOffsets(suggestion);
}
function applyAllSuggestions() {
const suggestions = [...(window.currentSuggestions || [])].sort((a, b) => b.start - a.start);
if (suggestions.length === 0) return;
let text = getEditorText();
suggestions.forEach((s) => {
text = text.substring(0, s.start) + s.correction + text.substring(s.end);
});
setEditorHTML(escapeHtml(text));
hideTooltip();
analyzeTextDelayed();
}
function clearEditor() {
setEditorHTML('');
window.currentSuggestions = [];
updateSuggestionCounts(0, 0, 0);
updateWritingScore(0, 0, 0);
updateSuggestionsList([]);
updateEditorStats();
updatePlaceholder();
updateAnalysisLimitBanner(false);
if (typeof updateExportButtonStates === 'function') updateExportButtonStates();
}
/**
* Load plain text into editor — sole entry point for document import
* @param {string} text - UTF-8 plain text
* @param {object} options - { analyze: true, filename: string }
*/
function loadDocumentText(text, options = {}) {
const normalized = typeof normalizeImportedText === 'function'
? normalizeImportedText(text)
: String(text || '').replace(/^\uFEFF/, '');
setEditorHTML(escapeHtml(normalized));
window.currentSuggestions = [];
hideTooltip();
updatePlaceholder();
updateEditorStats();
updateSuggestionCounts(0, 0, 0);
updateWritingScore(0, 0, 0);
updateSuggestionsList([]);
updateAnalysisLimitBanner(normalized.length > MAX_ANALYZE_LENGTH);
if (typeof updateExportButtonStates === 'function') {
updateExportButtonStates();
}
if (options.analyze !== false) {
analyzeTextDelayed();
}
}
function copyText() {
const text = getEditorText();
navigator.clipboard.writeText(text).catch(() => {
const temp = document.createElement('textarea');
temp.value = text;
document.body.appendChild(temp);
temp.select();
document.execCommand('copy');
document.body.removeChild(temp);
});
const btn = event?.target;
if (btn) {
const originalText = btn.textContent;
btn.textContent = 'تم النسخ!';
setTimeout(() => { btn.textContent = originalText; }, 2000);
}
}
if (typeof module !== 'undefined' && module.exports) {
module.exports = {
initEditor,
analyzeText,
analyzeTextDelayed,
clearEditor,
copyText,
loadDocumentText,
updateEditorStats,
showTooltip,
hideTooltip,
applyCorrection,
applySuggestionByIndex,
applyAllSuggestions
};
}
|