Overview
| Comment: | [core][js] text as object |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | core | webext |
| Files: | files | file ages | folders |
| SHA3-256: |
df0f360e7e17806f2fcf11036ec23b4d |
| User & Date: | olr on 2017-07-29 09:30:26 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-07-29
| ||
| 10:22 | [core][js] unused module check-in: 9db9979305 user: olr tags: core, webext | |
| 09:30 | [core][js] text as object check-in: df0f360e7e user: olr tags: core, webext | |
| 09:25 | [core][js] str_transform as object check-in: 856cdd76cb user: olr tags: core, webext | |
Changes
Modified gc_core/js/text.js from [035788e8ab] to [c6c0eb070c].
1 2 3 4 5 6 |
// JavaScript
"use strict";
const helpers = require("resource://grammalecte/helpers.js");
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > | | | | | | 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 |
// JavaScript
"use strict";
const helpers = require("resource://grammalecte/helpers.js");
const text = {
getParagraph: function* (sText) {
// generator: returns paragraphs of text
let iStart = 0;
let iEnd = 0;
sText = sText.replace("\r", "");
while ((iEnd = sText.indexOf("\n", iStart)) !== -1) {
yield sText.slice(iStart, iEnd);
iStart = iEnd + 1;
}
yield sText.slice(iStart);
},
wrap: function* (sText, nWidth=80) {
// generator: returns text line by line
while (sText) {
if (sText.length >= nWidth) {
let nEnd = sText.lastIndexOf(" ", nWidth) + 1;
if (nEnd > 0) {
yield sText.slice(0, nEnd);
sText = sText.slice(nEnd);
} else {
yield sText.slice(0, nWidth);
sText = sText.slice(nWidth);
}
} else {
break;
}
}
yield sText;
},
getReadableError: function (oErr) {
// Returns an error oErr as a readable error
try {
let s = "\n* " + oErr['nStart'] + ":" + oErr['nEnd'] + " # " + oErr['sRuleId']+":\n";
s += " " + oErr["sMessage"];
if (oErr["aSuggestions"].length > 0) {
s += "\n > Suggestions : " + oErr["aSuggestions"].join(" | ");
}
if (oErr["URL"] !== "") {
s += "\n > URL: " + oErr["URL"];
}
return s;
}
catch (e) {
helpers.logerror(e);
return "\n# Error. Data: " + oErr.toString();
}
},
addHtmlEntities: function (sParagraph) {
if (sParagraph.includes("&")) {
sParagraph = sParagraph.replace(/&/g, "&");
}
if (sParagraph.includes("<")) {
sParagraph = sParagraph.replace(/</g, "<").replace(/>/g, ">");
}
return sParagraph;
},
createHTMLBlock: function (sParagraph, iParagraph) {
let sClassName = (sParagraph.includes('<u id="err')) ? " softred" : "";
return '<p id="paragr'+iParagraph.toString()+'" class="paragraph' + sClassName + '" lang="fr" spellcheck="false">' + sParagraph + '</p>\n'
+ '<div class="actions"><div id="end'+iParagraph.toString()+'" class="button red">×</div>'
+ '<div id="edit'+iParagraph.toString()+'" class="button">Éditer</div>'
+ '<div id="check'+iParagraph.toString()+'" class="button green">Réanalyser</div> </div>\n';
},
tagParagraph: function (sParagraph, iParagraph, aGrammErr, aSpellErr, bDebug=false) {
// Returns a text with with underlined errors and messages in tooltip
try {
if (aGrammErr.length === 0 && aSpellErr.length === 0) {
return sParagraph;
}
aGrammErr.push(...aSpellErr);
aGrammErr.sort(function (a, b) {
if (a["nStart"] < b["nStart"])
return 1;
if (a["nStart"] > b["nStart"])
return -1;
return 0;
});
let nErr = aGrammErr.length - 1; // we count errors to give them an identifier
let nStartLastErr = sParagraph.length;
for (let oErr of aGrammErr) {
let sErrId = iParagraph.toString() + "_" + nErr.toString();
let nStart = oErr["nStart"];
let nEnd = oErr["nEnd"];
if (nEnd <= nStartLastErr) {
oErr["sId"] = sErrId;
if (oErr['sType'] !== 'WORD') {
// Grammar Error
sParagraph = sParagraph.slice(0, nStart)
+ '<u id="err' + sErrId + '" class="error '+oErr['sType']+'" href="#" onclick="return false;">'
+ sParagraph.slice(nStart, nEnd)
+ '<span id="tooltip' + sErrId + '" class="tooltip" contenteditable="false">'
+ this._getGrammarErrorHTML(oErr, bDebug) + '</span>'
+ "</u><!-- err_end -->" + sParagraph.slice(nEnd);
} else {
// Spelling error
sParagraph = sParagraph.slice(0, nStart)
+ '<u id="err' + sErrId + '" class="error spell" href="#" onclick="return false;">'
+ sParagraph.slice(nStart, nEnd)
+ '<span id="tooltip' + sErrId + '" class="tooltip" contenteditable="false">'
+ this._getSpellingErrorHTML(oErr) + '</span>'
+ "</u><!-- err_end -->" + sParagraph.slice(nEnd);
}
nStartLastErr = nStart;
}
nErr -= 1;
}
return sParagraph;
}
catch (e) {
helpers.logerror(e);
return "# Error.";
}
},
_getGrammarErrorHTML: function (oErr, bDebug=false) {
// Returns an error oErr as a readable error in HTML
try {
let sErr = '';
if (bDebug) {
sErr += '<em class="debug">'
+ '<i id="data'+oErr['sId']+'" class="data" hidden>'
+ oErr['nStart'] + ":" + oErr['nEnd'] + ' · #' + oErr['sRuleId'] + " </i>+</em>";
}
sErr += oErr["sMessage"];
sErr += ' <a id="ignore'+oErr['sId']+'" class="ignore" href="#" onclick="return false;">IGNORER</a>';
if (oErr["URL"] !== "") {
sErr += ' <a href="' + oErr["URL"] + '" onclick="return false;">Infos…</a>';
}
if (oErr["aSuggestions"].length > 0) {
sErr += '<br/><s>Suggestions :</s><br/>';
let iSugg = 0;
for (let sSugg of oErr["aSuggestions"]) {
sErr += '<a id="sugg' + oErr['sId'] + "-" + iSugg + '" class="sugg" href="#" onclick="return false;">' + sSugg + '</a> ';
iSugg += 1;
}
}
return sErr;
}
catch (e) {
helpers.logerror(e);
return '# Error. Data: ' + oErr.toString();
}
},
_getSpellingErrorHTML: function (oErr) {
// Returns an error oErr as a readable error in HTML
try {
let sErr = 'Mot inconnu du dictionnaire.';
sErr += ' <a id="ignore' + oErr['sId'] + '" class="ignore" href="#" onclick="return false;">IGNORER</a>';
sErr += '<br/><s>Suggestions :</s><br/>';
return sErr;
}
catch (e) {
helpers.logerror(e);
return '# Error. Data: ' + oErr.toString();
}
}
}
if (typeof(exports) !== 'undefined') {
exports.getParagraph = text.getParagraph;
exports.addHtmlEntities = text.addHtmlEntities;
exports.createHTMLBlock = text.createHTMLBlock;
exports.tagParagraph = text.tagParagraph;
exports.getReadableError = text.getReadableError;
}
|