-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheventHandlers.js.html
480 lines (420 loc) · 20.1 KB
/
eventHandlers.js.html
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
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
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
316
317
318
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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
<script>
function displayMessage(div, message){
const close_button = document.createElement("i")
close_button.classList.add("fa-solid", "fa-circle-xmark");
// close_button.id = "close-button";
div.textContent = message;
div.appendChild(close_button);
}
function clearStatus(){
const error = document.getElementById('error');
const success = document.getElementById('success');
const warning = document.getElementById('warning');
const divs = [error, success, warning]
for (let div of divs){
while(div.firstChild){
div.removeChild(div.firstChild);
}
}
}
function logError(error){
const div = document.getElementById('error');
displayMessage(div, "ERROR: " + error.message)
}
function logWarning(warning_message){
const div = document.getElementById('warning');
displayMessage(div, "Warning: " + warning_message)
}
function displaySuccess(message){
const div = document.getElementById('success');
displayMessage(div, "Success: " + message)
}
function logLoading(){
const div = document.getElementById('warning');
displayMessage(div, "Loading... This may take a moment")
}
function logSuccess(){
const div = document.getElementById('success');
displayMessage(div, "Success!")
}
$(document).ready(function() {
clearDocument();
clearSidebar();
});
$(window).unload(function(){
clearDocument();
});
function clearDocument(){
google.script.run.clearAnnotation();
}
//Event handlers
$(function() {
$('div.level-options').on('click', 'i.toggle-suggestions', function(){
const parent_option_div = $(this).parent()
const this_div = $(parent_option_div).children('div.suggestions')
if($(this_div).is(":hidden")){
$(this_div).show()
$(this).removeClass('fa-plus')
$(this).addClass('fa-minus')
} else {
$(this_div).hide()
$(this).removeClass('fa-minus')
$(this).addClass('fa-plus')
}
})
$('#hide-encoding-button').click(function(){
clearStatus()
logLoading();
google.script.run.withSuccessHandler((x) => {
const {text, startOffset} = x;
const [soluSet, tokIdxList] = runMorphAnalyzer(text)
const markList = buildMarkupList(tokIdxList, soluSet);
google.script.run.withFailureHandler(logError).withSuccessHandler(logSuccess).hideMarkup(markList, startOffset);
}).getTextStr(true);
});
$('#show-encoding-button').click(function(){
clearStatus()
logLoading();
google.script.run.withSuccessHandler((x) => {
const {text, startOffset} = x;
const [soluSet, tokIdxList] = runMorphAnalyzer(text)
const markList = buildMarkupList(tokIdxList, soluSet);
console.log(markList);
google.script.run.withFailureHandler(logError).withSuccessHandler(logSuccess).showMarkup(markList, startOffset);
}).getTextStr(true);
});
$('#clear-encoding-button').click(function(){
clearStatus()
google.script.run.withSuccessHandler((x) => {
logWarning("You are about to delete all your markups. This can be undone with with ⌘-Z or CTRL-Z.")
const {text, startOffset} = x;
const [soluSet, tokIdxList] = runMorphAnalyzer(text)
const markList = buildMarkupList(tokIdxList, soluSet);
google.script.run.withFailureHandler(logError).withSuccessHandler(logSuccess).clearMarkup(markList, startOffset);
}).getTextStr(true);
});
$("#minimize-encoding-button").click(function(){
clearStatus()
logLoading();
google.script.run.withSuccessHandler((x) => {
const {text, startOffset} = x;
const [soluSet, tokIdxList] = runMorphAnalyzer(text)
const markList = buildMarkupList(tokIdxList, soluSet);
google.script.run.withFailureHandler(logError).withSuccessHandler(logSuccess).minimizeMarkup(markList, startOffset);
}).getTextStr(true);
});
$('button#doc-analysis-button').click(function() {
clearStatus()
logLoading();
var l = $('input[name=target]:checked').val();
google.script.run.withSuccessHandler((x) => {
const {text, startOffset} = x;
const {soluSet, markList} = processText(text, false, startOffset);
// const [soluSet, tokIdxList] = runMorphAnalyzer(x)
// const markList = annotate(tokIdxList, soluSet, false)
console.log(markList);
const uniqueLemmas = getUniqueLemmas(soluSet)
writeDocLevelHTML(markList);
writeDocLevelHTML(uniqueLemmas, "type");
displaySuccess("Document analysis complete")
}).getTextStr();
});
$("button#word-analysis-button").click(function(){
clearStatus()
logLoading();
google.script.run.withSuccessHandler((x) => {
const {text, startOffset} = x;
console.log(`text: ${text}`);
const [soluSet, tokIdxList] = runMorphAnalyzer(text)
if (tokIdxList.length !== 1)
logError({message: "Select a word to perform word-level analysis."})
else {
annotate(tokIdxList, soluSet, false, startOffset)
writeWordLevelHTML(soluSet)
displaySuccess("Word analysis complete")
}
}).getTextStr();
});
$('button#clear').click(function() {
clearStatus()
logLoading();
clearSidebar();
clearDocument();
displaySuccess("Document analysis has been cleared.")
});
$('#word-level-toggle').click(function(){
$("div.moreSol").toggle()
if($('div.moreSol').is(":hidden")){
$('#word-level-toggle').html('<i class="fas fa-plus"></i>')
} else {
$('#word-level-toggle').html('<i class="fas fa-minus"></i>')
}
})
$('#doc-level-toggle').click(function(){
$("div#doc-level-inner").toggle()
if($("div#doc-level-inner").is(":hidden")){
$('#doc-level-toggle').html('<i class="fas fa-plus"></i>')
} else {
$('#doc-level-toggle').html('<i class="fas fa-minus"></i>')
}
})
$("div.moreSol").on("click", "button.replaceAll", function(){
clearStatus()
logLoading();
const optionDiv = $(this).parent();
let level = "";
const classes = optionDiv.attr("class").split(" ")
for(let _class of classes){
if (_class.includes('level')){
level = _class.split('-')[1]
break;
}
}
google.script.run.withSuccessHandler((x) => {
let {text, startOffset} = x;
// remove existing hashes and punctuation, numbers, etc.
if (text.match(/^#[٠١٢٣٤٥]#/))
text = text.replace(/#[٠١٢٣٤٥]#/, "")
text = stripNumbers(stripPunct(text))
// If more than one word selected or no text selected
if (text.split(" ").length > 1){
return logError({message: "Please select a single word to annotate"})
}
google.script.run.withSuccessHandler((res) => {
clearSidebar();
google.script.run.withSuccessHandler((num_instances)=>{
displaySuccess(`Successfully replaced ${num_instances} instances of this word with level ${level}.`)
}).highlightText(text, level)
}).replaceAll(text, level)
}).getTextStr()
});
$("div.moreSol").on("click", "button.useSol", function(){
const optionDiv = $(this).parent();
let level = "";
const classes = optionDiv.attr("class").split(" ")
for(let _class of classes){
if (_class.includes('level')){
level = _class.split('-')[1]
break;
}
}
// todo fix
google.script.run.withSuccessHandler((x)=>{
// const [soluSet, tokIdxList] = runMorphAnalyzer(str)
// const markList = annotate(tokIdxList, soluSet, true)
const {text, startOffset} = x;
console.log(`text: ${text}, startoffset: ${startOffset}`);
const {soluSet, markList} = processText(text, true, startOffset);
writeWordLevelHTML(soluSet);
})
.withFailureHandler((msg)=>{
logError({message:msg})
})
.addHash(level)
});
$("button#token").click(function(){
$('div#doc-level-token').show()
$('div#doc-level-type').hide()
$("button#token").addClass('selected')
$("button#type").removeClass('selected')
})
$("button#type").click(function(){
$('div#doc-level-type').show()
$('div#doc-level-token').hide()
$("button#type").addClass('selected')
$("button#token").removeClass('selected')
})
$("div.message").on("click", "i.fa-circle-xmark", function(){
const message_div = this.parentElement;
// message_div.style.color="red";
message_div.innerHTML = "";
})
});
function writeLemmaSuggestionsHTML(lemma_pos, max_level){
const syns = get_rel_words(lemma_pos, synonyms, max_level)
const ants = get_rel_words(lemma_pos, antonyms, max_level)
const hyp = get_rel_words(lemma_pos, hypernyms, max_level)
let div = '<div class="suggestions">'
let rels = {"Synonyms": syns, "Antonyms": ants, "Hypernyms": hyp}
for (const name in rels){
div = div + writeSetHTML(lemma_pos, name, rels[name])
}
// if (div === '<div class="suggestions">')
// div = div + "<p>No suggestions available</p>"
div = div + '</div>'
return div
}
function writeSetHTML(lemma_pos, set_name, rel_set){
if(is_empty(rel_set))
return '';
let div = `<div class='${set_name}'>`
const title = `<p class="rel-title"> ${set_name} </p>`
div = div + title;
for (let level in rel_set){
if(rel_set[level].length){
div = div + `<p>Level ${level}: `
for (let rel_lemma_pos of rel_set[level]){
let [rel_lemma, rel_pos] = rel_lemma_pos.split("+")
div = div + `${toUnicode(rel_lemma)} (${rel_pos}), `
}
}
}
div = div + "</p></div>"
return div;
}
function writeWordLevelHTML(soluSet){
const word = Object.keys(soluSet)[0]
const options = soluSet[word].options
$('div.level-div').removeClass('best-option')
$('div.level-options').empty()
for(let i = 0; i <= 5; i++){
let level_i = options.filter(item => item.level === i)
let is_best = soluSet[word].best_option.level === i ? 'best-option' : '';
$(`div.level-${i}.level-div`).addClass(is_best)
for (let option of level_i){
let relWordsDiv = writeLemmaSuggestionsHTML(option.lp, option.level)
let suggestions = true;
if (relWordsDiv === '<div class="suggestions"></div>'){
suggestions = false;
}
let newDiv = displayOptionDiv(word, option, is_best, suggestions)
newDiv.children('.lemma').text(`${toUnicode(option.lemma)}`)
$(relWordsDiv).appendTo(newDiv).hide()
}
}
$("div.word-level-analysis").show();
}
function displayOptionDiv(word, option, best=false, suggestions){
let div = ""
if(option.lp !== ""){
let plus_icon = suggestions ?'<i class="fas fa-plus toggle-suggestions"></i>' : '<i class="fas fa-minus disabled"></i>';
let lp = `<span class='lemma'> </span>`
let pos = `<span class='pos'> (${option.pos}) </span>`
let gloss = `<span class='gloss'> ${option.gloss} </span>`
div = `<div class="option level-${option.level}" id="${encodeURI(option.lp)}"> ${plus_icon} ${lp} ${pos}: ${gloss}</div>`
}
return $(div).appendTo(`div.level-${option.level}.level-options`)
}
function runMorphAnalyzer(str){
let target = $('input[name=target]:checked').val();
let tokIdxList = buildTokenIndexList(str);
let tokset = buildTokenSet(tokIdxList); //word and word locations and also make sure each token is unique
let solutionSet = analyzeTokenSet(tokset); // get lemmas and levels of each one
const uniqueLemmas = getUniqueLemmas(solutionSet)
console.log(solutionSet)
return [solutionSet, tokIdxList]
}
function annotate(tokIdxList, soluSet, colorLevel1, startOffset){
let markList = buildMarkupList(tokIdxList, soluSet);
console.log(markList)
google.script.run.withFailureHandler(logError).annotateDoc(markList,startOffset,'byword', colorLevel1);
return markList
}
function processText(str, colorLevel1, startOffset){
let [soluSet, tokIdxList] = runMorphAnalyzer(str)
console.log(soluSet)
console.log(tokIdxList)
let markList = annotate(tokIdxList, soluSet, colorLevel1, startOffset)
return {soluSet, markList}
}
function writeDocLevelHTML(markList, token_level="token"){
let chart_div = "";
if (token_level === "token"){
chart_div = "div#doc-level-token"
}
else {
chart_div = "div#doc-level-type"
}
$(`${chart_div} div.cache`).text("Total word count: " + markList.length);
// numCoveredWord X = words in levels Proper + 1 to X
var numCoveredWord5 = numCoveredWords(markList,5);
var numCoveredWord4 = numCoveredWords(markList,4);
var numCoveredWord3 = numCoveredWords(markList,3);
var numCoveredWord2 = numCoveredWords(markList,2);
var numCoveredWord1 = numCoveredWords(markList,1);
var percentCoveredWord5 = Math.round(numCoveredWord5/markList.length*1000)/10;
var percentCoveredWord4 = Math.round(numCoveredWord4/markList.length*1000)/10;
var percentCoveredWord3 = Math.round(numCoveredWord3/markList.length*1000)/10;
var percentCoveredWord2 = Math.round(numCoveredWord2/markList.length*1000)/10;
var percentCoveredWord1 = Math.round(numCoveredWord1/markList.length*1000)/10;
var numWords1 = numCoveredWord1;
var numWords2 = numCoveredWord2-numCoveredWord1;
var numWords3 = numCoveredWord3-numCoveredWord2;
var numWords4 = numCoveredWord4-numCoveredWord3;
var numWords5 = numCoveredWord5-numCoveredWord4;
var percentWords1 = Math.round(numWords1/markList.length*1000)/10;
var percentWords2 = Math.round(numWords2/markList.length*1000)/10;
var percentWords3 = Math.round(numWords3/markList.length*1000)/10;
var percentWords4 = Math.round(numWords4/markList.length*1000)/10;
var percentWords5 = Math.round(numWords5/markList.length*1000)/10;
var numWordsAbove1 = numCoveredWord5 - numWords1;
var numWordsAbove2 = numCoveredWord5 - numCoveredWord2;
var numWordsAbove3 = numCoveredWord5 - numCoveredWord3;
var numWordsAbove4 = numCoveredWord5 - numCoveredWord4;
var numWordsAbove5 = 0;
var percentWordsAbove1 = Math.round(numWordsAbove1/markList.length*1000)/10;
var percentWordsAbove2 = Math.round(numWordsAbove2/markList.length*1000)/10;
var percentWordsAbove3 = Math.round(numWordsAbove3/markList.length*1000)/10;
var percentWordsAbove4 = Math.round(numWordsAbove4/markList.length*1000)/10;
var percentWordsAbove5 = Math.round(numWordsAbove5/markList.length*1000)/10;
// if (percentCoveredWord1 == 100){
// $(`${chart_div} div.score`).text("✅ Easy Text")
// $(`${chart_div} div.infoAbove`).text("")
// $(`${chart_div} div.infoAt`).text("At Level 1 | " + numWords1 + " words | " + percentWords1 +"%");
// $(`${chart_div} div.infoBelow`).text("");
// } else if ((percentWords2 <= 5)&&(percentCoveredWord1>=95)){
// $(`${chart_div} div.score`).text("✅ Target Level 2 ")
// $(`${chart_div} div.infoAbove`).text("Above Level 2 | " + numWordsAbove2 + " words | " + percentWordsAbove2 +"%");
// $(`${chart_div} div.infoAt`).text(" At Level 2 | " + numWords2 + " words | " + percentWords2 +"%");
// $(`${chart_div} div.infoBelow`).text("Below Level 2 | " + numCoveredWord1 + " words | " + percentCoveredWord1 +"%");
// } else if ((percentWords3 <= 5)&&(percentCoveredWord2>=95)){
// $(`${chart_div} div.score`).text("✅ Target Level 3 ")
// $(`${chart_div} div.infoAbove`).text("Above Level 3 | " + numWordsAbove3 + " words | " + percentWordsAbove2 +"%");
// $(`${chart_div} div.infoAt`).text(" At Level 3 | " + numWords3 + " words | " + percentWords3 +"%");
// $(`${chart_div} div.infoBelow`).text("Below Level 3 | " + numCoveredWord2 + " words | " + percentCoveredWord2 +"%");
// }else if ((percentWords4 <= 5)&&(percentCoveredWord3>=95)){
// $(`${chart_div} div.score`).text("✅ Target Level 4 ")
// $(`${chart_div} div.infoAbove`).text("Above Level 4 | " + numWordsAbove4 + " words | " + percentWordsAbove4 +"%");
// $(`${chart_div} div.infoAt`).text(" At Level 4 | " + numWords4 + " words | " + percentWords4 +"%");
// $(`${chart_div} div.infoBelow`).text("Below Level 4 | " + numCoveredWord3 + " words | " + percentCoveredWord3 +"%");
// }else if ((percentWords5 <= 5)&&(percentCoveredWord4>=95)){
// $(`${chart_div} div.score`).text("✅ Target Level 5 ")
// $(`${chart_div} div.infoAbove`).text("")
// $(`${chart_div} div.infoAt`).text(" At Level 5 | " + numWords5 + " words | " + percentWords5 +"%");
// $(`${chart_div} div.infoBelow`).text("Below Level 5 | " + numCoveredWord4 + " words | " + percentCoveredWord4 +"%");
// }else {
// $(`${chart_div} div.score`).text("✅ Hard Text");
// $(`${chart_div} div.infoAbove`).text("")
// $(`${chart_div} div.infoAt`).text(" At Level 5 | " + numWords5 + " words | " + percentWords5 +"%");
// $(`${chart_div} div.infoBelow`).text("Below Level 5 | " + numCoveredWord4 + " words | " + percentCoveredWord4 +"%");
// }
if (percentWords5 > 0){
$(`${chart_div} div.score`).text("✅ Target Level 5 ")
$(`${chart_div} div.infoAbove`).text("")
$(`${chart_div} div.infoAt`).text(" At Level 5 | " + numWords5 + " words | " + percentWords5 +"%");
$(`${chart_div} div.infoBelow`).text("Below Level 5 | " + numCoveredWord4 + " words | " + percentCoveredWord4 +"%");
} else if (percentWords4 > 0){
$(`${chart_div} div.score`).text("✅ Target Level 4 ")
$(`${chart_div} div.infoAbove`).text("Above Level 4 | " + numWordsAbove4 + " words | " + percentWordsAbove4 +"%");
$(`${chart_div} div.infoAt`).text(" At Level 4 | " + numWords4 + " words | " + percentWords4 +"%");
$(`${chart_div} div.infoBelow`).text("Below Level 4 | " + numCoveredWord3 + " words | " + percentCoveredWord3 +"%");
} else if (percentWords3 > 0){
$(`${chart_div} div.score`).text("✅ Target Level 3 ")
$(`${chart_div} div.infoAbove`).text("Above Level 3 | " + numWordsAbove3 + " words | " + percentWordsAbove2 +"%");
$(`${chart_div} div.infoAt`).text(" At Level 3 | " + numWords3 + " words | " + percentWords3 +"%");
$(`${chart_div} div.infoBelow`).text("Below Level 3 | " + numCoveredWord2 + " words | " + percentCoveredWord2 +"%");
} else if (percentWords2 > 0){
$(`${chart_div} div.score`).text("✅ Target Level 2 ")
$(`${chart_div} div.infoAbove`).text("Above Level 2 | " + numWordsAbove2 + " words | " + percentWordsAbove2 +"%");
$(`${chart_div} div.infoAt`).text(" At Level 2 | " + numWords2 + " words | " + percentWords2 +"%");
$(`${chart_div} div.infoBelow`).text("Below Level 2 | " + numCoveredWord1 + " words | " + percentCoveredWord1 +"%");
} else {
$(`${chart_div} div.score`).text("✅ Easy Text")
$(`${chart_div} div.infoAbove`).text("")
$(`${chart_div} div.infoAt`).text("At Level 1 | " + numWords1 + " words | " + percentWords1 +"%");
$(`${chart_div} div.infoBelow`).text("");
}
$('div.doc-level-analysis').show()
chartTokenStats(markList, chart_div)
}
</script>