86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
-
-
+
+
|
this.nEntry = 0
this._createHeader();
this.listen();
}
_createHeader () {
let xRowNode = createNode("tr");
xRowNode.appendChild(createNode("th", { textContent: "·" }));
xRowNode.appendChild(createNode("th", { textContent: "#" }));
xRowNode.appendChild(createNode("th", { textContent: "·", width: "12px" }));
//xRowNode.appendChild(createNode("th", { textContent: "#" }));
for (let sColumn of this.lColumn) {
xRowNode.appendChild(createNode("th", { textContent: sColumn }));
}
this.xTable.appendChild(xRowNode);
}
clear () {
|
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
|
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
|
+
-
+
-
+
|
this.xProgressBar.value = 1;
for (let lData of lFlex) {
this._addRow(lData);
this.xProgressBar.value += 1;
}
this.xProgressBar.value = this.xProgressBar.max;
}
this.lEntry = lFlex;
this.nEntry = lFlex.length;
this.showEntryNumber();
}
addEntries (lFlex) {
this.lEntry.push(...lFlex);
for (let lData of lFlex) {
this._addRow(lData);
}
this.nEntry += lFlex.length;
this.showEntryNumber();
}
showEntryNumber () {
if (this.xNumEntry) {
this.xNumEntry.textContent = "Entrées : " + this.nEntry;
this.xNumEntry.textContent = this.nEntry;
}
}
_addRow (lData) {
let xRowNode = createNode("tr", { id: this.sNodeId + "_row_" + this.iEntryIndex });
xRowNode.appendChild(createNode("td", { textContent: "×", className: "delete_entry", title: "Effacer cette entrée" }, { id_entry: this.iEntryIndex }));
xRowNode.appendChild(createNode("td", { textContent: this.iEntryIndex }));
//xRowNode.appendChild(createNode("td", { textContent: this.iEntryIndex }));
for (let data of lData) {
xRowNode.appendChild(createNode("td", { textContent: data }));
}
this.xTable.appendChild(xRowNode);
this.iEntryIndex += 1;
}
|
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
|
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
|
-
+
-
+
+
+
-
+
+
+
+
|
document.getElementById("lemma2").addEventListener("keyup", () => { this.onWrite2(); }, false);
document.getElementById("verb_pattern").addEventListener("keyup", () => { this.update(); }, false);
document.getElementById("flexion").addEventListener("keyup", () => { this.update(); }, false);
document.getElementById("tags").addEventListener("keyup", () => { this.update(); }, false);
document.getElementById("add_to_lexicon").addEventListener("click", () => { this.addToLexicon(); }, false);
},
lSection: ["section_nom", "section_verbe", "section_adverbe", "section_prenom", "section_patronyme", "section_nom_propre", "section_autre"],
lSection: ["nom", "verbe", "adverbe", "prenom", "patronyme", "nom_propre", "autre"],
hideAllSections: function () {
for (let sSection of this.lSection) {
hideElement(sSection);
hideElement("section_" + sSection);
document.getElementById("select_" + sSection).style.backgroundColor = "";
}
},
showSection: function (sName) {
this.clear();
this.hideAllSections();
if (document.getElementById(sName).style.display == "none") {
showElement(sName);
showElement(sName);
} else {
hideElement(sName);
}
},
clear: function () {
try {
document.getElementById("lemma2").value = "";
hideElement("word_section2");
// nom, adjectif, noms propres
|
253
254
255
256
257
258
259
260
261
262
263
264
265
266
|
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
|
+
|
onSelectionClick: function (xEvent) {
try {
let xElem = xEvent.target;
if (xElem.id) {
if (xElem.id.startsWith("select_")) {
this.showSection("section_" + xElem.id.slice(7));
xElem.style.backgroundColor = "hsl(210, 50%, 90%)";
this.cMainTag = xElem.dataset.tag;
this.update();
} else if (xElem.id.startsWith("up_")) {
this.update();
}
}
}
|
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
|
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
|
-
+
+
-
|
}
return null;
},
createFlexLemmaTagArray: function () {
let sLemma = document.getElementById("lemma").value.trim();
let lEntry = [];
for (let [sFlex, sTags] of this.lFlexion) {
for (let [sFlex, sTags] of oGenWordsTable.getEntries()) {
lEntry.push([sFlex, sLemma, sTags]);
}
return lEntry;
},
addToLexicon: function () {
try {
oLexiconTable.addEntries(this.createFlexLemmaTagArray());
oGenWordsTable.clear();
document.getElementById("lemma").value = "";
document.getElementById("lemma").focus();
this.hideAllSections();
hideElement("editor");
oGenerator.clear();
showElement("save_button");
this.clear();
this.cMainTag = "";
}
catch (e) {
showError(e);
}
|