Overview
Comment: | [fx] update: lexicon editor |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: |
ae6457bb8164b71e87fda61949b37309 |
User & Date: | olr on 2018-01-24 16:24:59 |
Other Links: | manifest | tags |
Context
2018-01-26
| ||
17:15 | [fx] update: lexical editor check-in: 4c7933e88b user: olr tags: trunk, fx | |
2018-01-24
| ||
16:24 | [fx] update: lexicon editor check-in: ae6457bb81 user: olr tags: trunk, fx | |
2018-01-23
| ||
15:30 | [fr] update: lexicon editor check-in: 64a6a08b79 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/panel/lex_editor.css from [3cee00f715] to [d9e3b0412e].
︙ | ︙ | |||
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 | border-radius: 20px; } h1 { margin: 5px 0 20px 0; color: hsl(210, 50%, 50%); font: bold 30px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; } h2 { margin: 5px 0 2px 0; color: hsl(0, 50%, 50%); 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; } #editor { display: none; } #categories { display: flex; padding: 10px 0; | > > > > > > > > > > > > > > > | 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 | border-radius: 20px; } h1 { margin: 5px 0 20px 0; color: hsl(210, 50%, 50%); font: bold 30px "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; text-align: center; } h2 { margin: 5px 0 2px 0; color: hsl(0, 50%, 50%); 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; } .main_button { margin: 0 5px; padding: 10px 30px; background-color: hsl(210, 10%, 90%); border-radius: 5px; cursor: pointer; } #add_word_page { display: none; } #editor { display: none; } #categories { display: flex; padding: 10px 0; |
︙ | ︙ | |||
175 176 177 178 179 180 181 | cursor: pointer; } #add_to_lexicon:hover { background-color: hsl(0, 60%, 40%); color: hsl(0, 60%, 70%); box-shadow: 0 0 2px hsl(0, 60%, 50%); } | > > > > > > > > > > > > > | 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | cursor: pointer; } #add_to_lexicon:hover { background-color: hsl(0, 60%, 40%); color: hsl(0, 60%, 70%); box-shadow: 0 0 2px hsl(0, 60%, 50%); } #lexicon_page { } th { padding: 5px 20px; border-left: 1px solid hsl(210, 10%, 90%); } td { padding: 0 20px; } |
Modified gc_lang/fr/webext/panel/lex_editor.html from [f63ed175e8] to [53b86a285e].
︙ | ︙ | |||
8 9 10 11 12 13 14 | <body> <div class="inbox"> <h1>Éditeur lexical</h1> | > > > > > > | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > | > > > > > > > > > > > > > > | 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 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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | <body> <div class="inbox"> <h1>Éditeur lexical</h1> <div class="container"> <div id="lexicon_button" class="main_button">Lexique</div> <div id="add_word_button" class="main_button">Ajout</div> </div> <div id="add_word_page"> <h2>Nouveau mot</h2> <input type="text" id="word" name="word" maxlength="60" value="" placeholder="votre mot" pattern="^[a-zA-Zà-ö0-9À-Öø-ÿØ-ßĀ-ʯ._-]+$" autofocus /> <div id="editor"> <div id="categories"> <div class="category" id="select_nom" data-tag="N">Nom, adjectif</div> <div class="category" id="select_verbe" data-tag="V">Verbe</div> <div class="category" id="select_adverbe" data-tag="W">Adverbe</div> <div class="separator"></div> <div class="category" id="select_prenom" data-tag="M1">Prénom</div> <div class="category" id="select_patronyme" data-tag="M2">Patronyme</div> <div class="category" id="select_nom_propre" data-tag="MP">Nom propre</div> <div class="separator"></div> <div class="category" id="select_autre" data-tag="X">Autre</div> </div> <div id="sections"> <div id="section_vide"> Sélectionnez une catégorie. </div> <div id="section_nom" class="section"> <h2>Nom, adjectif</h2> <p class="typeline"> <input type="radio" id="up_type_nom" name="POS" value=":N" /> <label class="widelabel" for="up_type_nom">Nom</label> <input type="radio" id="up_type_adj" name="POS" value=":A" /> <label class="widelabel" for="up_type_adj">Adjectif</label> <input type="radio" id="up_type_nomadj" name="POS" value=":N:A" /> <label class="widelabel" for="up_type_nomadj">Nom & adjectif</label> </p> <div class="container"> <div class="block"> <h3>Genre</h3> <p><input type="radio" id="up_nom_genre_e" name="genre" value=":e" /><label for="up_nom_genre_e"> épicène</label></p> <p><input type="radio" id="up_nom_genre_m" name="genre" value=":m" /><label for="up_nom_genre_m"> masculin</label></p> <p><input type="radio" id="up_nom_genre_f" name="genre" value=":f" /><label for="up_nom_genre_f"> féminin</label></p> </div> <div class="block"> <h3>Pluriel</h3> <p><input type="radio" id="up_nom_pluriel_s" name="pluriel" value="s" /><label for="up_nom_pluriel_s"> pluriel en ·s</label></p> <p><input type="radio" id="up_nom_pluriel_x" name="pluriel" value="x" /><label for="up_nom_pluriel_x"> pluriel en ·x</label></p> <p><input type="radio" id="up_nom_pluriel_i" name="pluriel" value="i" /><label for="up_nom_pluriel_i"> invariable</label></p> </div> </div> <h2>[optionnel] Autre forme (masculine, féminine, variante, etc.)</h2> <input type="text" id="word2" name="word2" maxlength="60" value="" pattern="^[a-zA-Zà-ö0-9À-Öø-ÿØ-ßĀ-ʯ._-]+$" placeholder="votre mot" /> <div id="word_section2"> <p class="typeline"> <input type="radio" id="up_type_nom2" name="POS2" value=":N" /> <label class="widelabel" for="up_type_nom2">Nom</label> <input type="radio" id="up_type_adj2" name="POS2" value=":A" /> <label class="widelabel" for="up_type_adj2">Adjectif</label> <input type="radio" id="up_type_nomadj2" name="POS2" value=":N:A" /> <label class="widelabel" for="up_type_nomadj2">Nom & adjectif</label> </p> <div class="container"> <div class="block"> <h3>Genre</h3> <p><input type="radio" id="up_nom2_genre_e" name="genre2" value=":e" /><label for="up_nom2_genre_e"> épicène</label></p> <p><input type="radio" id="up_nom2_genre_m" name="genre2" value=":m" /><label for="up_nom2_genre_m"> masculin</label></p> <p><input type="radio" id="up_nom2_genre_f" name="genre2" value=":f" /><label for="up_nom2_genre_f"> féminin</label></p> </div> <div class="block"> <h3>Pluriel</h3> <p><input type="radio" id="up_nom2_pluriel_s" name="pluriel2" value="s" /><label for="up_nom2_pluriel_s"> pluriel en ·s</label></p> <p><input type="radio" id="up_nom2_pluriel_x" name="pluriel2" value="x" /><label for="up_nom2_pluriel_x"> pluriel en ·x</label></p> <p><input type="radio" id="up_nom2_pluriel_i" name="pluriel2" value="i" /><label for="up_nom2_pluriel_i"> invariable</label></p> </div> </div> </div> </div> <div id="section_verbe" class="section"> <h2>Verbe</h2> <div class="block"> <h3><input type="checkbox" id="up_v_i" value="i" /><label for="up_v_i"> intransitif</label></h3> <div class="description">Cochez cette case si ce verbe peut s’utiliser sans complément d’objet.</div> <details> <div class="container"> <div class="examples_true">Je dors.<br/>Tu pars.<br/>Elle pense.<br/>Nous écrivons.<br/>Vous manifestez.<br/>Ils viennent.</div> <div class="examples_false">J’appartiens à ce groupe…</div> </div> </details> </div> <div class="block"> <h3><input type="checkbox" id="up_v_t" value="t" /><label for="up_v_t"> transitif direct</label></h3> <div class="description">Cochez cette case si ce verbe peut s’utiliser avec un complément d’objet direct (COD).</div> <details> <div class="container"> <div class="examples_true">Je mange <i>une pomme</i>.<br/>Tu donnes <i>une bonne impression</i>.<br/>Elle écrit <i>un livre</i>.<br/>Nous fabriquons <i>une œuvre</i>.</div> <div class="examples_false">Je pars.<br/>J’appartiens à…</div> </div> </details> </div> <div class="block"> <h3><input type="checkbox" id="up_v_n" value="n" /><label for="up_v_n"> transitif indirect</label></h3> <div class="description">Cochez cette case, si ce verbe peut s’utiliser avec un complément d’objet indirect (COI). Attention à ne pas confondre avec un complément de temps ou de lieu.</div> <details> <div class="container"> <div class="examples_true">Je donne un cadeau <i>à sa femme</i>.<br/>Elle appartient <i>à ce groupe</i>.</div> <div class="examples_false"></div> </div> </details> </div> <div class="block"> <h3><input type="checkbox" id="up_v_p" value="p" /><label for="up_v_p"> pronominal</label></h3> <div class="description">Cochez cette case si ce verbe peut s’utiliser pronominalement.</div> <details> <div class="container"> <div class="examples_true">Je me suis trompé.<br/>Tu t’es étonné toi-même.<br/>Elle s’est souvenu de ses études.<br/>Nous nous sommes égarés.<br/>Vous vous êtes retrouvées.<br/>Ils se sont rappelé leur enfance.</div> <div class="examples_false">Je me suis venu.<br/>tu t’es arrivé.<br/>elle s’est marché.<br/>nous nous sommes courus.<br/>vous vous êtes acculés.<br/>Elles se sont capitulées.</div> </div> </details> </div> <div class="block"> <h3><input type="checkbox" id="up_v_m" value="m" /><label for="up_v_m"> impersonnel</label></h3> <div class="description">Cochez cette case si ce verbe ne peut s’utiliser à la première personne, mais uniquement à la troisième personne du singulier ou du pluriel.</div> <details> <div class="container"> <div class="examples_true">Il pleut.</div> <div class="examples_false">Je pleus.</div> </div> </details> </div> <div class="block"> <h3><input type="checkbox" id="up_v_ae" value="e" /><label for="up_v_ae"> passé composé avec l’auxiliaire “être”</label></h3> <div class="description">Cochez cette case si ce verbe s’emploie au passé composé avec l’auxilaire “être”.</div> <details> <div class="container"> <div class="examples_true">Je suis venu.<br/>Je suis parti.</div> <div class="examples_false">J’ai venu.<br/>J’ai parti.</div> </div> </details> </div> <div class="block"> <h3><input type="checkbox" id="up_v_aa" value="a" /><label for="up_v_aa"> passé composé avec l’auxiliaire “avoir”</label></h3> <div class="description">Cochez cette case si ce verbe s’emploie au passé composé avec l’auxilaire “avoir”.</div> <details> <div class="container"> <div class="examples_true">J’ai mangé.<br/>J’ai prié.</div> <div class="examples_false">Je suis mangé.<br/>Je suis prié.</div> </div> </details> </div> </div> <div id="section_adverbe" class="section"> <h2>Adverbe</h2> <p>Les adverbes sont invariables en genre et en nombre.</p> </div> <div id="section_prenom" class="section"> <h2>Prénom</h2> <div class="container"> <div class="block"> <h3>Genre</h3> <p><input type="radio" id="up_prenom_genre_e" name="genre_m1" value=":e" /><label for="up_prenom_genre_e"> épicène</label></p> <p><input type="radio" id="up_prenom_genre_m" name="genre_m1" value=":m" /><label for="up_prenom_genre_m"> masculin</label></p> <p><input type="radio" id="up_prenom_genre_f" name="genre_m1" value=":f" /><label for="up_prenom_genre_f"> féminin</label></p> </div> <div class="block"> <h3>Pluriel</h3> <p>Les prénoms sont invariables en nombre.</p> </div> </div> </div> <div id="section_patronyme" class="section"> <h2>Patronyme</h2> <div class="container"> <div class="block"> <h3>Genre</h3> <p><input type="radio" id="up_patronyme_genre_e" name="genre_m2" value=":e" /><label for="up_patronyme_genre_e"> épicène</label></p> <p><input type="radio" id="up_patronyme_genre_m" name="genre_m2" value=":m" /><label for="up_patronyme_genre_m"> masculin</label></p> <p><input type="radio" id="up_patronyme_genre_f" name="genre_m2" value=":f" /><label for="up_patronyme_genre_f"> féminin</label></p> </div> <div class="block"> <h3>Pluriel</h3> <p>Les noms de famille sont invariables en nombre.</p> </div> </div> </div> <div id="section_nom_propre" class="section"> <h2>Nom propre</h2> <div class="container"> <div class="block"> <h3>Genre</h3> <p><input type="radio" id="up_nom_propre_genre_e" name="genre_mp" value=":e" /><label for="up_nom_propre_genre_e"> épicène</label></p> <p><input type="radio" id="up_nom_propre_genre_m" name="genre_mp" value=":m" /><label for="up_nom_propre_genre_m"> masculin</label></p> <p><input type="radio" id="up_nom_propre_genre_f" name="genre_mp" value=":f" /><label for="up_nom_propre_genre_f"> féminin</label></p> </div> <div class="block"> <h3>Pluriel</h3> <p>Les noms propres sont invariables en nombre.</p> </div> </div> </div> <div id="section_autre" class="section"> <h2>Autre</h2> <p>Indiquez les étiquettes grammaticales que vous voulez appliquer au mot. À utiliser seulement si vous savez ce que vous faites. Dans le cas contraire, tant pis pour vous.</p> <h3>Lemme</h3> <p><input type="text" id="lemma" name="lemma" maxlength="20" value="" pattern="^[a-zA-Zà-ö0-9À-Öø-ÿØ-ßĀ-ʯ._-]+$" placeholder="lemme" /></p> <h3>Étiquettes</h3> <p><input type="text" id="tags" name="tags" maxlength="20" value="" pattern="^:[a-zA-Zà-ö0-9À-Öø-ÿØ-ßĀ-ʯ:._-]+$"placeholder="étiquettes" /></p> </div> </div> </div> <div id="actions"> <h2>Mots générés</h2> <h3>Forme fléchie (lemme), étiquettes</h3> <div id="results"> </div> <div id="buttonline"> <div id="add_to_lexicon">Ajouter au dictionnaire</div> </div> </div> </div> <div id="lexicon_page"> <h2>Votre lexique</h2> <table> <tr id="head"> <th>#</th> <th>Forme fléchie</th> <th>Lemme</th> <th>Étiquettes</th> </tr> </table> <table id="table"> </table> </div> </div> <script src="../grammalecte/graphspell/helpers.js"></script> <script src="lex_editor.js"></script> </body> |
︙ | ︙ |
Modified gc_lang/fr/webext/panel/lex_editor.js from [e7376134de] to [b986ace5c1].
1 2 3 4 5 | // JavaScript "use strict"; | < < < | < < | | < < | | < < | < > | | < < < < | | < < < < < < < | | | | | > > > > > > > > > > | 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 | // JavaScript "use strict"; function createNode (sType, oAttr, oDataset=null) { try { let xNode = document.createElement(sType); Object.assign(xNode, oAttr); if (oDataset) { Object.assign(xNode.dataset, oDataset); } return xNode; } catch (e) { showError(e); } } function showError (e) { console.error(e.fileName + "\n" + e.name + "\nline: " + e.lineNumber + "\n" + e.message); } document.getElementById("lexicon_button").addEventListener("click", () => { oPage.showPage("lex"); }, false); document.getElementById("add_word_button").addEventListener("click", () => { oPage.showPage("word"); }, false); document.getElementById("editor").addEventListener("click", (xEvent) => { oPage.onSelectionClick(xEvent); }, false); document.getElementById("word").addEventListener("keyup", () => { oPage.onWrite(); }, false); document.getElementById("word2").addEventListener("keyup", () => { oPage.onWrite2(); }, false); document.getElementById("lemma").addEventListener("keyup", () => { oFlex.update(); }, false); document.getElementById("tags").addEventListener("keyup", () => { oFlex.update(); }, false); document.getElementById("add_to_lexicon").addEventListener("click", () => { oFlex.addToLexicon(); }, false); /* ACTIONS */ const oPage = { showPage: function (sPage) { if (document.getElementById("lexicon_page").style.display == "block") { document.getElementById("lexicon_page").style.display = "none"; document.getElementById("add_word_page").style.display = "block"; } else { document.getElementById("add_word_page").style.display = "none"; document.getElementById("lexicon_page").style.display = "block"; } }, showEditor: function () { document.getElementById("editor").style.display = "block"; }, hideEditor: function () { document.getElementById("editor").style.display = "none"; |
︙ | ︙ | |||
116 117 118 119 120 121 122 123 124 125 126 127 128 129 | document.getElementById("lemma").value = ""; document.getElementById("tags").value = ""; } catch (e) { showError(e); } }, showWord2: function () { document.getElementById("word_section2").style.display = "block"; }, hideWord2: function () { document.getElementById("word_section2").style.display = "none"; | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | document.getElementById("lemma").value = ""; document.getElementById("tags").value = ""; } catch (e) { showError(e); } }, onSelectionClick: function (xEvent) { try { let xElem = xEvent.target; if (xElem.id) { if (xElem.id.startsWith("select_")) { this.showSection("section_" + xElem.id.slice(7)); oFlex.setMainTag(xElem.dataset.tag); oFlex.update(); } else if (xElem.id.startsWith("up_")) { oFlex.update(); } } } catch (e) { showError(e); } }, onWrite: function () { if (document.getElementById("word").value.trim() !== "") { this.showEditor(); } else { this.hideEditor(); this.hideActions(); } }, onWrite2: function () { if (document.getElementById("word2").value.trim() !== "") { this.showWord2(); } else { this.hideWord2(); } }, showWord2: function () { document.getElementById("word_section2").style.display = "block"; }, hideWord2: function () { document.getElementById("word_section2").style.display = "none"; |
︙ | ︙ | |||
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | } } break; case "V": if (!sWord.endsWith("er") && !sWord.endsWith("ir")) { break; } let c_g = (sWord.endsWith("er")) ? "1" : "2"; let c_i = (document.getElementById("up_v_i").checked) ? "i" : "_"; let c_t = (document.getElementById("up_v_t").checked) ? "t" : "_"; let c_n = (document.getElementById("up_v_n").checked) ? "n" : "_"; let c_p = (document.getElementById("up_v_p").checked) ? "p" : "_"; let c_m = (document.getElementById("up_v_m").checked) ? "m" : "_"; let c_ae = (document.getElementById("up_v_ae").checked) ? "e" : "_"; let c_aa = (document.getElementById("up_v_aa").checked) ? "a" : "_"; let sVerbTag = c_i + c_t + c_n + c_p + c_m + c_ae + c_aa; if (!sVerbTag.endsWith("__") && !sVerbTag.startsWith("____")) { this.addFlexion(sWord, sWord, ":V" + c_g + "_" + sVerbTag); } break; case "W": this.addFlexion(sWord, sWord, ":W"); break; case "M1": sGenderTag = this.getRadioValue("genre_m1"); if (sGenderTag) { this.addFlexion(sWord, sWord, ":M1"+sGenderTag+":i"); } break; case "M2": sGenderTag = this.getRadioValue("genre_m2"); if (sGenderTag) { this.addFlexion(sWord, sWord, ":M2"+sGenderTag+":i"); } break; case "MP": sGenderTag = this.getRadioValue("genre_mp"); | > > > > | 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | } } break; case "V": if (!sWord.endsWith("er") && !sWord.endsWith("ir")) { break; } sWord = sWord.toLowerCase(); let c_g = (sWord.endsWith("er")) ? "1" : "2"; let c_i = (document.getElementById("up_v_i").checked) ? "i" : "_"; let c_t = (document.getElementById("up_v_t").checked) ? "t" : "_"; let c_n = (document.getElementById("up_v_n").checked) ? "n" : "_"; let c_p = (document.getElementById("up_v_p").checked) ? "p" : "_"; let c_m = (document.getElementById("up_v_m").checked) ? "m" : "_"; let c_ae = (document.getElementById("up_v_ae").checked) ? "e" : "_"; let c_aa = (document.getElementById("up_v_aa").checked) ? "a" : "_"; let sVerbTag = c_i + c_t + c_n + c_p + c_m + c_ae + c_aa; if (!sVerbTag.endsWith("__") && !sVerbTag.startsWith("____")) { this.addFlexion(sWord, sWord, ":V" + c_g + "_" + sVerbTag); } break; case "W": sWord = sWord.toLowerCase(); this.addFlexion(sWord, sWord, ":W"); break; case "M1": sWord = sWord.slice(0,1).toUpperCase() + sWord.slice(1); sGenderTag = this.getRadioValue("genre_m1"); if (sGenderTag) { this.addFlexion(sWord, sWord, ":M1"+sGenderTag+":i"); } break; case "M2": sWord = sWord.slice(0,1).toUpperCase() + sWord.slice(1); sGenderTag = this.getRadioValue("genre_m2"); if (sGenderTag) { this.addFlexion(sWord, sWord, ":M2"+sGenderTag+":i"); } break; case "MP": sGenderTag = this.getRadioValue("genre_mp"); |
︙ | ︙ | |||
290 291 292 293 294 295 296 297 298 299 | lFlexion: [], addFlexions: function (lFlex) { for (let aFlex of lFlex) { this.lFlexion.push(aFlex); } }, load: function () { | > > > > | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 | lFlexion: [], addFlexions: function (lFlex) { for (let aFlex of lFlex) { this.lFlexion.push(aFlex); } this.display(); }, load: function () { if (bChrome) { browser.storage.local.get("lexicon_list", this._setList); return; } let xPromise = browser.storage.local.get("lexicon_list"); xPromise.then(this._setList, showError); }, _setList: function (dResult) { console.log("LOAD"); if (dResult.hasOwnProperty("lexicon_list")) { this.lFlexion = dResult.lexicon_list; } }, display: function () { let xTable = document.getElementById("table"); let n = 0; for (let [sFlexion, sLemma, sTags] of this.lFlexion) { xTable.appendChild(this._createRowNode(n, sFlexion, sLemma, sTags)); n += 1; } }, _createRowNode: function (n, sFlexion, sLemma, sTags) { let xRowNode = createNode("tr", { id: "row_"+n }); xRowNode.appendChild(createNode("td", { textContent: n })); xRowNode.appendChild(createNode("td", { textContent: sFlexion })); xRowNode.appendChild(createNode("td", { textContent: sLemma })); xRowNode.appendChild(createNode("td", { textContent: sTags })); return xRowNode; }, clearTable: function () { let xTable = document.getElementById("table"); while (xTable.firstChild) { xTable.removeChild(xTable.firstChild); } }, save: function () { browser.storage.local.set({ "lexicon_list": this.lFlexion }); }, build: function () { return null; }, export: function () { let xBlob = new Blob(['{ "app": "grammalecte", "data": ["énum", "test"] }'], {type: 'application/json'}); let sURL = URL.createObjectURL(xBlob); browser.downloads.download({ filename: "grammalecte_personal_dictionary.json", url: sURL, saveAs: true }); } } |