386
387
388
389
390
391
392
393
394
395
396
397
398
399
|
if (!bEnd) {
oGrammalecte.oGCPanel.addParagraphResult(result);
} else {
oGrammalecte.oGCPanel.stopWaitIcon();
oGrammalecte.oGCPanel.endTimer();
}
}
break;
case "parseAndSpellcheck1":
if (dInfo.sDestination == "__GrammalectePanel__") {
oGrammalecte.oGCPanel.refreshParagraph(dInfo.sParagraphId, result);
}
break;
case "parseFull":
|
>
>
>
>
|
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
|
if (!bEnd) {
oGrammalecte.oGCPanel.addParagraphResult(result);
} else {
oGrammalecte.oGCPanel.stopWaitIcon();
oGrammalecte.oGCPanel.endTimer();
}
}
else if (dInfo.sDestination && document.getElementById(dInfo.sDestination)) {
const xEvent = new CustomEvent("GrammalecteResult", { detail: JSON.stringify(result) });
document.getElementById(dInfo.sDestination).dispatchEvent(xEvent);
}
break;
case "parseAndSpellcheck1":
if (dInfo.sDestination == "__GrammalectePanel__") {
oGrammalecte.oGCPanel.refreshParagraph(dInfo.sParagraphId, result);
}
break;
case "parseFull":
|
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
|
break;
case "openPanelForText":
if (oCommand.sText) {
oGrammalecte.startGCPanel(oCommand.sText);
}
break;
case "parseNode":
// todo
break;
case "parseText":
// todo
break;
default:
console.log("[Grammalecte] Event: Unknown command", oCommand.sCommand);
}
}
catch (e) {
showError(e);
}
});
|
|
|
>
>
>
>
>
|
<
>
>
>
>
>
>
>
>
>
>
|
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
|
break;
case "openPanelForText":
if (oCommand.sText) {
oGrammalecte.startGCPanel(oCommand.sText);
}
break;
case "parseNode":
if (oCommand.xNode && oCommand.xNode.id) {
if (oCommand.xNode.tagName == "TEXTAREA" || oCommand.xNode.tagName == "INPUT") {
oGrammalecteBackgroundPort.parseAndSpellcheck(oCommand.xNode.value, oCommand.xNode.id);
}
else if (oCommand.xNode.tagName == "IFRAME") {
oGrammalecteBackgroundPort.parseAndSpellcheck(oCommand.xNode.contentWindow.document.body.innerText, oCommand.xNode.id);
}
else {
oGrammalecteBackgroundPort.parseAndSpellcheck(oCommand.xNode.innerText, oCommand.xNode.id);
}
}
break;
default:
console.log("[Grammalecte] Event: Unknown command", oCommand.sCommand);
}
}
catch (e) {
showError(e);
}
});
/*
Note:
Initialization starts when the background is connected.
See: oGrammalecteBackgroundPort.listen() -> case "init"
*/
|