Overview
Comment: | [fx] lexicon editor: dictionary selector |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | comdic |
Files: | files | file ages | folders |
SHA3-256: |
833a8d3dce41f1dc8c422913f857c298 |
User & Date: | olr on 2018-12-10 11:32:37 |
Other Links: | branch diff | manifest | tags |
Context
2018-12-10
| ||
14:27 | merge trunk check-in: ad98751778 user: olr tags: comdic | |
11:32 | [fx] lexicon editor: dictionary selector check-in: 833a8d3dce user: olr tags: fx, comdic | |
2018-12-08
| ||
18:09 | [fx] storing custom dictionaries rework check-in: ac510fca99 user: olr tags: fx, comdic | |
Changes
Modified gc_lang/fr/webext/background.js from [f72381093e] to [56f4ad093d].
︙ | ︙ | |||
142 143 144 145 146 147 148 | }); } function setSpellingDictionaries (oData) { if (oData.hasOwnProperty("oPersonalDictionary")) { // deprecated console.log("personal dictionary migration"); | | | | | | | | | | 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 | }); } function setSpellingDictionaries (oData) { if (oData.hasOwnProperty("oPersonalDictionary")) { // deprecated console.log("personal dictionary migration"); browser.storage.local.set({ "dictionaries": { "__personal__": oData["oPersonalDictionary"] } }); setDictionary("personal", oData["oPersonalDictionary"]); browser.storage.local.remove("oPersonalDictionary"); } if (oData.hasOwnProperty("dictionaries")) { if (oData.dictionaries.hasOwnProperty("__personal__")) { setDictionary("personal", oData.dictionaries["__personal__"]); } if (oData.dictionaries.hasOwnProperty("__community__")) { setDictionary("personal", oData.dictionaries["__community__"]); } } } function init () { if (bChrome) { browser.storage.local.get("gc_options", initGrammarChecker); browser.storage.local.get("ui_options", initUIOptions); browser.storage.local.get("dictionaries", setSpellingDictionaries); browser.storage.local.get("oPersonalDictionary", setSpellingDictionaries); // deprecated browser.storage.local.get("sc_options", initSCOptions); return; } browser.storage.local.get("gc_options").then(initGrammarChecker, showError); browser.storage.local.get("ui_options").then(initUIOptions, showError); browser.storage.local.get("dictionaries").then(setSpellingDictionaries, showError); browser.storage.local.get("oPersonalDictionary").then(setSpellingDictionaries, showError); // deprecated browser.storage.local.get("sc_options").then(initSCOptions, showError); } init(); |
︙ | ︙ |
Modified gc_lang/fr/webext/panel/lex_editor.css from [62f94b1b3b] to [5ec344ca45].
︙ | ︙ | |||
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 | font: bold 20px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; } h3 { margin: 3px 0 2px 0; color: hsl(210, 50%, 50%); font: bold 16px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; } details { font-size: 11px; font-variant: small-caps; color: hsl(210, 50%, 50%); cursor: pointer; } details > * { font-size: 12px; font-variant: normal; color: hsl(210, 0%, 0%); cursor: auto; } details.inline { padding: 3px; width: 260px; } /* Main buttons */ #buttons { padding: 10px 0; | > > > > > > | 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 | font: bold 20px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; } h3 { margin: 3px 0 2px 0; color: hsl(210, 50%, 50%); font: bold 16px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; } #dic_selector { color: hsl(210, 50%, 50%); font: bold 16px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; } details { font-size: 11px; font-variant: small-caps; color: hsl(210, 50%, 50%); cursor: pointer; } details > * { font-size: 12px; font-variant: normal; color: hsl(210, 0%, 0%); cursor: auto; } details.inline { padding: 3px; width: 260px; } /* Main buttons */ #buttons { padding: 10px 0; |
︙ | ︙ | |||
245 246 247 248 249 250 251 | background-color: hsl(150, 60%, 40%); color: hsl(150, 60%, 90%); box-shadow: 0 0 2px hsl(150, 60%, 50%); } #lexicon_page { | | | 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 | background-color: hsl(150, 60%, 40%); color: hsl(150, 60%, 90%); box-shadow: 0 0 2px hsl(150, 60%, 50%); } #lexicon_page { } /* Search page */ #search_page { |
︙ | ︙ |
Modified gc_lang/fr/webext/panel/lex_editor.html from [ebe7e49300] to [a9e9e38c7e].
︙ | ︙ | |||
10 11 12 13 14 15 16 | <div class="inbox"> <h1>Éditeur lexical</h1> <div class="big_block"> <div class="dic_container"> | | > > > > > > | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | <div class="inbox"> <h1>Éditeur lexical</h1> <div class="big_block"> <div class="dic_container"> <div><h3>Dictionnaire</h3></div> <div> <select id="dic_selector"> <option value="__personal__">personnel</option> <option value="__community__">communautaire</option> </select> </div> <div>[<span id="dic_save_date">—</span>]</div> <div><span id="dic_num_entries">0</span> entrées</div> <div> <input type="file" id="import_input" accept=".json" style="display: none;"> <label id="import_button" for="import_input">Importer</label> </div> <div id="export_button">Exporter</div> </div> |
︙ | ︙ |
Modified gc_lang/fr/webext/panel/lex_editor.js from [55c7281fac] to [00bc28bc12].
︙ | ︙ | |||
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | this.xTable.appendChild(xRowNode); } clear () { while (this.xTable.firstChild) { this.xTable.removeChild(this.xTable.firstChild); } this.iEntryIndex = 0; this._createHeader(); } fill (lFlex) { this.clear(); if (lFlex.length > 0) { this.xProgressBar.max = lFlex.length; this.xProgressBar.value = 1; | > > > | 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | this.xTable.appendChild(xRowNode); } clear () { while (this.xTable.firstChild) { this.xTable.removeChild(this.xTable.firstChild); } this.lEntry = []; this.nEntry = 0; this.iEntryIndex = 0; this._createHeader(); this.showEntryNumber(); } fill (lFlex) { this.clear(); if (lFlex.length > 0) { this.xProgressBar.max = lFlex.length; this.xProgressBar.value = 1; |
︙ | ︙ | |||
493 494 495 496 497 498 499 | } const oDictHandler = { oDictionaries: null, loadDictionaries: function () { if (bChrome) { | | | | | < | > | < | > > > | | > < | 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 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 548 549 550 551 552 553 554 555 556 557 558 559 560 561 | } const oDictHandler = { oDictionaries: null, loadDictionaries: function () { if (bChrome) { browser.storage.local.get("dictionaries", this._loadDictionaries.bind(this)); return; } let xPromise = browser.storage.local.get("dictionaries"); xPromise.then(this._loadDictionaries.bind(this), showError); }, _loadDictionaries: function (oResult) { if (!oResult.hasOwnProperty("dictionaries")) { return; } this.oDictionaries = oResult.dictionaries; oBinaryDict.load("__personal__"); }, getDictionary: function (sName) { if (this.oDictionaries && this.oDictionaries.hasOwnProperty(sName)) { //console.log(this.oDictionaries[sName]); return this.oDictionaries[sName]; } return null; }, saveDictionary: function (sName, oJSON) { this.oDictionaries[sName] = oJSON; if (sName == "__personal__") { browser.runtime.sendMessage({ sCommand: "setDictionary", dParam: {sDictionary: "personal", oDict: oJSON}, dInfo: {} }); } else if (sName == "__community__") { browser.runtime.sendMessage({ sCommand: "setDictionary", dParam: {sDictionary: "community", oDict: oJSON}, dInfo: {} }); } else { // TODO: merge sub-dictionaries } this.storeDictionaries(); }, storeDictionaries: function () { browser.storage.local.set({ "dictionaries": this.oDictionaries }); } } const oBinaryDict = { oIBDAWG: null, sName: null, load: function (sName) { console.log("lexicon editor, load: " + sName); this.sName = sName; let oJSON = oDictHandler.getDictionary(sName); if (oJSON) { this.parseDict(oJSON); } else { oLexiconTable.clear(); this.setDictData(0, "[néant]"); } }, |
︙ | ︙ | |||
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 | hideElement("export_button"); } else { showElement("export_button"); } }, listen: function () { document.getElementById("save_button").addEventListener("click", () => { this.build(); }, false); document.getElementById("export_button").addEventListener("click", () => { this.export(); }, false); document.getElementById("import_input").addEventListener("change", () => { this.import(); }, false); }, build: function () { let xProgressNode = document.getElementById("wait_progress"); let lEntry = oLexiconTable.getEntries(); if (lEntry.length > 0) { | > | | 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | hideElement("export_button"); } else { showElement("export_button"); } }, listen: function () { document.getElementById("dic_selector").addEventListener("change", () => {this.load(document.getElementById("dic_selector").value)}, false); document.getElementById("save_button").addEventListener("click", () => { this.build(); }, false); document.getElementById("export_button").addEventListener("click", () => { this.export(); }, false); document.getElementById("import_input").addEventListener("change", () => { this.import(); }, false); }, build: function () { let xProgressNode = document.getElementById("wait_progress"); let lEntry = oLexiconTable.getEntries(); if (lEntry.length > 0) { let oDAWG = new DAWG(lEntry, "S", "fr", "Français", this.sName, xProgressNode); let oJSON = oDAWG.createBinaryJSON(1); oDictHandler.saveDictionary(this.sName, oJSON); this.oIBDAWG = new IBDAWG(oJSON); this.setDictData(this.oIBDAWG.nEntry, this.oIBDAWG.sDate); } else { oDictHandler.saveDictionary(this.sName, null); this.setDictData(0, "[néant]"); |
︙ | ︙ |