Overview
Comment: | [fx] dictionaries selection (update) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | comdic |
Files: | files | file ages | folders |
SHA3-256: |
d784ee1493000b92471de4ecdffedada |
User & Date: | olr on 2018-12-17 15:32:27 |
Other Links: | branch diff | manifest | tags |
Context
2018-12-19
| ||
11:28 | [fx] ui: buttons color update check-in: 09ee3a6bc8 user: olr tags: fx, comdic | |
2018-12-17
| ||
15:32 | [fx] dictionaries selection (update) check-in: d784ee1493 user: olr tags: fx, comdic | |
2018-12-13
| ||
10:41 | [fx] update: community dictionaries (draft) check-in: 92e25df2da user: olr tags: fx, comdic | |
Changes
Modified gc_lang/fr/webext/panel/dictionaries.css from [0c9b2a7354] to [fd2507d35c].
︙ | ︙ | |||
37 38 39 40 41 42 43 | h1 { margin: 5px 0 5px 0; color: hsl(210, 50%, 50%); font: bold 30px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; text-align: center; } h2 { | | < < < < < < < < < < < | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | h1 { margin: 5px 0 5px 0; color: hsl(210, 50%, 50%); font: bold 30px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; text-align: center; } h2 { margin: 10px 0 2px 0; color: hsl(0, 50%, 50%); font: bold 20px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; } /* Main buttons */ ul { margin-left: 30px; } input[type=text].large { display: inline-block; |
︙ | ︙ | |||
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 | } input[placeholder] { color: hsl(0, 0%, 50%); } /* Table */ #wait_progress { width: 100%; height: 4px; } table { border: 1px solid hsl(210, 10%, 50%); width: 100%; } th { padding: 5px 10px; border-left: 1px solid hsl(210, 10%, 90%); text-align: left; } td { | > > > > > > > > > > > > > > > > > > > > | 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 | } input[placeholder] { color: hsl(0, 0%, 50%); } .dic_button { margin: 2px; display: inline-block; border: 1px solid hsl(0, 0%, 70%); border-radius: 3px; } .dic_button_close { display: inline-block; padding: 1px 5px; background-color: hsl(0, 50%, 50%); color: hsl(0, 90%, 90%); cursor: pointer; } .dic_button_label { display: inline-block; padding: 1px 10px; background-color: hsl(0, 0%, 90%); } /* Table */ #wait_progress { width: 100%; height: 4px; } table { border: 1px solid hsl(210, 10%, 50%); width: 100%; font-size: 14px; } th { padding: 5px 10px; border-left: 1px solid hsl(210, 10%, 90%); text-align: left; } td { |
︙ | ︙ |
Modified gc_lang/fr/webext/panel/dictionaries.html from [3adf55a33c] to [30e1db6643].
︙ | ︙ | |||
11 12 13 14 15 16 17 | <div class="inbox"> <h1>Dictionnaires communautaires</h1> <h2>Dictionnaires sélectionnés</h2> <p id="dictionaries_list">[Aucun]<p> | | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | <div class="inbox"> <h1>Dictionnaires communautaires</h1> <h2>Dictionnaires sélectionnés</h2> <p id="dictionaries_list">[Aucun]<p> <h2><span id="num_dic">0</span> dictionnaires disponibles</h2> <progress id="wait_progress" value="0"></progress> <table id="dictionaries_table"> </table> </div> |
︙ | ︙ |
Modified gc_lang/fr/webext/panel/dictionaries.js from [c2ba6f2836] to [85a136186d].
︙ | ︙ | |||
44 45 46 47 48 49 50 51 52 53 54 55 56 57 | this.nColumn = lColumn.length; this.lColumn = lColumn; this.xProgressBar = document.getElementById(sProgressBarId); this.xNumEntry = document.getElementById(sResultId); this.iEntryIndex = 0; this.lEntry = []; this.nEntry = 0; this.bDeleteButtons = bDeleteButtons; this.bActionButtons = bActionButtons; this._createHeader(); this.listen(); } _createHeader () { | > | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | this.nColumn = lColumn.length; this.lColumn = lColumn; this.xProgressBar = document.getElementById(sProgressBarId); this.xNumEntry = document.getElementById(sResultId); this.iEntryIndex = 0; this.lEntry = []; this.nEntry = 0; this.aSelectedDict = new Map(); this.bDeleteButtons = bDeleteButtons; this.bActionButtons = bActionButtons; this._createHeader(); this.listen(); } _createHeader () { |
︙ | ︙ | |||
108 109 110 111 112 113 114 | } _addRow (lData) { let xRowNode = createNode("tr", { id: this.sNodeId + "_row_" + this.iEntryIndex }); if (this.bDeleteButtons) { xRowNode.appendChild(createNode("td", { textContent: "×", className: "delete_entry", title: "Effacer cette entrée" }, { id_entry: this.iEntryIndex })); } | | | | > > > | | | | | > > | | > > > | > > | > > > > > > > > > > > > | > > > > > > > > > > > > > > > > > | | | | | | | 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 | } _addRow (lData) { let xRowNode = createNode("tr", { id: this.sNodeId + "_row_" + this.iEntryIndex }); if (this.bDeleteButtons) { xRowNode.appendChild(createNode("td", { textContent: "×", className: "delete_entry", title: "Effacer cette entrée" }, { id_entry: this.iEntryIndex })); } let [nDicId, sName, sOwner, nEntry, sDescription, ...data] = lData; xRowNode.appendChild(createNode("td", { textContent: nDicId })); xRowNode.appendChild(createNode("td", { textContent: sName })); xRowNode.appendChild(createNode("td", { textContent: sOwner })); xRowNode.appendChild(createNode("td", { textContent: nEntry })); xRowNode.appendChild(createNode("td", { textContent: sDescription })); if (this.bActionButtons) { xRowNode.appendChild(createNode("td", { textContent: "+", className: "select_entry", title: "Sélectionner/Désélectionner cette entrée" }, { id_entry: this.iEntryIndex, dict_name: sName })); } this.xTable.appendChild(xRowNode); this.iEntryIndex += 1; } listen () { if (this.bDeleteButtons || this.bActionButtons) { this.xTable.addEventListener("click", (xEvent) => { this.onTableClick(xEvent); }, false); } } onTableClick (xEvent) { try { let xElem = xEvent.target; if (xElem.className) { switch (xElem.className) { case "delete_entry": this.deleteRow(xElem.dataset.id_entry, xElem.dataset.dict_name); break; case "select_entry": this.selectEntry(xElem.dataset.id_entry, xElem.dataset.dict_name); break; } } } catch (e) { showError(e); } } deleteRow (iEntry) { this.lEntry[parseInt(iEntry)] = null; if (document.getElementById(this.sNodeId + "_row_" + iEntry)) { document.getElementById(this.sNodeId + "_row_" + iEntry).style.display = "none"; } this.nEntry -= 1; this.showEntryNumber(); if (this.sNodeId == "lexicon_table") { showElement("save_button", "inline-block"); } } selectEntry (nEntryId, sDicName) { let sRowId = this.sNodeId + "_row_" + nEntryId; if (!this.aSelectedDict.has(sDicName)) { this.aSelectedDict.set(sDicName, nEntryId); document.getElementById(sRowId).style.backgroundColor = "hsl(120, 50%, 90%)"; } else { this.aSelectedDict.delete(sDicName); document.getElementById(sRowId).style.backgroundColor = ""; } this.showSelectedDict(); } clearSelectedDict () { let xDicList = document.getElementById("dictionaries_list"); while (xDicList.firstChild) { xDicList.removeChild(xDicList.firstChild); } } showSelectedDict () { this.clearSelectedDict(); let xDicList = document.getElementById("dictionaries_list"); if (this.aSelectedDict.size === 0) { xDicList.textContent = "[Aucun]"; return; } for (let [sName, nDicId] of this.aSelectedDict) { xDicList.appendChild(this.createDictLabel(nDicId, sName)); } } 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.aSelectedDict.delete(sLabel); document.getElementById(this.sNodeId+"_row_"+nDicId).style.backgroundColor = ""; xLabel.style.display = "none"; }); xLabel.appendChild(xCloseButton); xLabel.appendChild(createNode("div", {className: "dic_button_label", textContent: sLabel})); return xLabel; } } const oDicTable = new Table("dictionaries_table", ["Id", "Nom", "par", "Entrées", "Description"], "wait_progress", "num_dic", false, true); oDicTable.fill([ [1, "Ambre", "Inconnu", "240", "Univers des Princes d’Ambre (de Roger Zelazny)"], [2, "Malaz", "Inconnu", "2340", "Univers du Livre des Martyrs (de Steven Erikson)"], [3, "Poudlard", "Inconnu", "1440", "Univers d’Harry Potter (de J. K. Rowlings)"], [4, "Dune", "Inconnu", "2359", "Univers de Dune (de Frank Herbert)"], [5, "StarWars", "Inconnu", "4359", "Univers de Star Wars (de George Lucas)"] ]); |