Overview
Comment: | [fx] remember dictionaries selection |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | comdic |
Files: | files | file ages | folders |
SHA3-256: |
0ee518126eefabd9e7cbf357ba6a39b1 |
User & Date: | olr on 2019-02-05 12:24:23 |
Other Links: | branch diff | manifest | tags |
Context
2019-02-05
| ||
12:55 | [fx] set community dictionary as soon as it is created check-in: 1990296330 user: olr tags: fx, comdic | |
12:24 | [fx] remember dictionaries selection check-in: 0ee518126e user: olr tags: fx, comdic | |
2019-02-04
| ||
18:42 | [fx] dictionaries creation: update check-in: e422d67a98 user: olr tags: fx, comdic | |
Changes
Modified gc_lang/fr/webext/panel/dictionaries.js from [a23a514018] to [12fe2c5719].
︙ | ︙ | |||
58 59 60 61 62 63 64 | this.sNodeId = sNodeId; this.xTable = document.getElementById(sNodeId); this.xApply = document.getElementById("apply"); this.nColumn = lColumn.length; this.lColumn = lColumn; this.xProgressBar = document.getElementById(sProgressBarId); this.xNumEntry = document.getElementById(sResultId); | < | > | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | this.sNodeId = sNodeId; this.xTable = document.getElementById(sNodeId); this.xApply = document.getElementById("apply"); this.nColumn = lColumn.length; this.lColumn = lColumn; this.xProgressBar = document.getElementById(sProgressBarId); this.xNumEntry = document.getElementById(sResultId); this.lEntry = []; this.nEntry = 0; this.dSelectedDictionaries = new Map(); this.lSelectedDictionaries = []; this.dDict = new Map(); this.bDeleteButtons = bDeleteButtons; this.bActionButtons = bActionButtons; this._createHeader(); this.listen(); } |
︙ | ︙ | |||
86 87 88 89 90 91 92 | clear () { while (this.xTable.firstChild) { this.xTable.removeChild(this.xTable.firstChild); } this.lEntry = []; this.nEntry = 0; | < | 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | clear () { while (this.xTable.firstChild) { this.xTable.removeChild(this.xTable.firstChild); } this.lEntry = []; this.nEntry = 0; this._createHeader(); this.showEntryNumber(); } fill (lFlex) { this.clear(); if (lFlex.length > 0) { |
︙ | ︙ | |||
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 | this.lEntry.push(...lFlex); for (let lData of lFlex) { this._addRow(lData); } this.nEntry += lFlex.length; this.showEntryNumber(); } getDictionarieslist () { fetch("http://localhost/dictionaries/") .then((response) => { if (response.ok) { return response.json(); } else { return null; } }) .then((response) => { if (response) { this.fill(response); } else { // todo } }) .catch((e) => { showError(e); }); | > > > > > > > > > > > > > > > > > > | 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 | this.lEntry.push(...lFlex); for (let lData of lFlex) { this._addRow(lData); } this.nEntry += lFlex.length; this.showEntryNumber(); } init () { if (bChrome) { browser.storage.local.get("selected_dictionaries_list", this._init.bind(this)); return; } let xPromise = browser.storage.local.get("selected_dictionaries_list"); xPromise.then(this._init.bind(this), showError); } _init (oResult) { if (oResult.hasOwnProperty("selected_dictionaries_list")) { this.lSelectedDictionaries = oResult.selected_dictionaries_list; console.log(this.lSelectedDictionaries); } this.getDictionarieslist(); } getDictionarieslist () { fetch("http://localhost/dictionaries/") .then((response) => { if (response.ok) { return response.json(); } else { return null; } }) .then((response) => { if (response) { this.fill(response); this.showSelectedDictionaries(true); } else { // todo } }) .catch((e) => { showError(e); }); |
︙ | ︙ | |||
169 170 171 172 173 174 175 | showEntryNumber () { if (this.xNumEntry) { this.xNumEntry.textContent = this.nEntry; } } _addRow (lData) { | > | | < < > | | > > | 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 | showEntryNumber () { if (this.xNumEntry) { this.xNumEntry.textContent = this.nEntry; } } _addRow (lData) { let [nDicId, sName, nEntry, sDescription, sLastUpdate, ...data] = lData; let xRowNode = createNode("tr", { id: this.sNodeId + "_row_" + nDicId }); if (this.bDeleteButtons) { xRowNode.appendChild(createNode("td", { textContent: "×", className: "delete_entry", title: "Effacer cette entrée" }, { id_entry: nDicId })); } xRowNode.appendChild(createNode("td", { textContent: sName })); xRowNode.appendChild(createNode("td", { textContent: nEntry })); xRowNode.appendChild(createNode("td", { textContent: sDescription })); xRowNode.appendChild(createNode("td", { textContent: sLastUpdate })); if (this.bActionButtons) { xRowNode.appendChild(createNode("td", { textContent: "+", className: "select_entry", title: "Sélectionner/Désélectionner cette entrée" }, { id_entry: nDicId, dict_name: sName })); } this.xTable.appendChild(xRowNode); if (this.lSelectedDictionaries.includes(sName)) { this.dSelectedDictionaries.set(sName, nDicId); } } listen () { if (this.bDeleteButtons || this.bActionButtons) { this.xTable.addEventListener("click", (xEvent) => { this.onTableClick(xEvent); }, false); } this.xApply.addEventListener("click", (xEvent) => { this.generateCommunityDictionary(xEvent); }, false); |
︙ | ︙ | |||
226 227 228 229 230 231 232 | showElement("save_button", "inline-block"); } showElement("apply"); } selectEntry (nEntryId, sDicName) { let sRowId = this.sNodeId + "_row_" + nEntryId; | | | | | | | | | > > > | | | | | | | 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 | showElement("save_button", "inline-block"); } showElement("apply"); } selectEntry (nEntryId, sDicName) { let sRowId = this.sNodeId + "_row_" + nEntryId; if (!this.dSelectedDictionaries.has(sDicName)) { this.dSelectedDictionaries.set(sDicName, nEntryId); document.getElementById(sRowId).style.backgroundColor = "hsl(210, 50%, 90%)"; } else { this.dSelectedDictionaries.delete(sDicName); document.getElementById(sRowId).style.backgroundColor = ""; } showElement("apply"); this.showSelectedDictionaries(); } clearSelectedDict () { let xDicList = document.getElementById("dictionaries_list"); while (xDicList.firstChild) { xDicList.removeChild(xDicList.firstChild); } } showSelectedDictionaries (bUpdateTable=false) { this.clearSelectedDict(); let xDicList = document.getElementById("dictionaries_list"); if (this.dSelectedDictionaries.size === 0) { xDicList.textContent = "[Aucun]"; return; } for (let [sName, nDicId] of this.dSelectedDictionaries) { xDicList.appendChild(this._createDictLabel(nDicId, sName)); if (bUpdateTable) { document.getElementById(this.sNodeId + "_row_" + nDicId).style.backgroundColor = "hsl(210, 50%, 90%)"; } } } _createDictLabel (nDicId, sLabel) { let xLabel = createNode("div", {className: "dic_button"}); let xCloseButton = createNode("div", {className: "dic_button_close", textContent: "×"}, {id_entry: nDicId}); xCloseButton.addEventListener("click", () => { this.dSelectedDictionaries.delete(sLabel); document.getElementById(this.sNodeId+"_row_"+nDicId).style.backgroundColor = ""; xLabel.style.display = "none"; showElement("apply"); }); xLabel.appendChild(xCloseButton); xLabel.appendChild(createNode("div", {className: "dic_button_label", textContent: sLabel})); return xLabel; } generateCommunityDictionary (xEvent) { hideElement("apply"); let lDict = []; for (let sName of this.dSelectedDictionaries.keys()) { lDict.push(this.dDict.get(sName)); } let oDict = dic_merger.merge(lDict, "S", "fr", "Français", "fr.community", "Dictionnaire communautaire (personnalisé)", this.xProgressBar); console.log(oDict); browser.storage.local.set({ "community_dictionary": oDict }); browser.storage.local.set({ "selected_dictionaries_list": Array.from(this.dSelectedDictionaries.keys()) }); } } const oDicTable = new Table("dictionaries_table", ["Nom", "Entrées", "Description", "Date"], "wait_progress", "num_dic", false, true); oDicTable.init(); |