-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfigFileHandler.js
310 lines (265 loc) · 9.91 KB
/
configFileHandler.js
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
var alreadyReadConfigFiles = [];
var defaultConfigFiles = [];
// helper function to populate the config file selector with file names, given an array of file objects
function populateConfigFileSelectorHelper(files) {
let option;
let selectList = document.getElementById("configFileSelector");
let lastOption = selectList.lastElementChild;
// pop last child element of selectList
selectList.removeChild(lastOption);
for (let file of files) {
option = document.createElement("option");
option.text = file.name;
selectList.appendChild(option);
}
selectList.appendChild(lastOption);
// set the default value to the first option
selectList.selectedIndex = 0;
}
// retrieve the config files from github using the github api
function retrieveConfigFiles() {
return new Promise((resolve, reject) => {
let fileObjects = [];
let rsp;
axios
.get(
"https://api.github.com/repos/CAMeL-Lab/palmyra/contents/palmyraSampleFiles/config"
)
.then(async (rsp) => {
let files = rsp.data;
for (let file of files) {
rsp = await axios.get(file.download_url);
let fileObject = new File([JSON.stringify(rsp.data)], file.name, { type: "text/plain" });
fileObjects.push(fileObject);
}
resolve(fileObjects);
})
.catch((err) => {
reject(err);
});
});
}
// populate the selector with the default config files retrieved from github
function populateConfigFileSelector() {
let selectList = document.getElementById("configFileSelector");
selectList.onchange = () => { // set the onchange event handler for the selector
if (selectList.selectedIndex == selectList.options.length - 1) // user upload their own file option
document.getElementById("configFile").style.display = "block"; // display the file input
else document.getElementById("configFile").style.display = "none"; // hide the file input
};
retrieveConfigFiles()
.then((files) => {
defaultConfigFiles = files;
populateConfigFileSelectorHelper(files);
})
.catch((err) => {
console.log(err);
});
}
function createButton(buttonText, editPOSByButton) {
let btn = document.createElement("BUTTON");
let text = document.createTextNode(buttonText);
btn.appendChild(text);
btn.tabindex = -1;
btn.value = buttonText;
btn.onclick = editPOSByButton;
return btn
}
function addButtonToDivGroup(divs, group, btn) {
if (!(group in divs)) {
divs[group] = document.createElement("div");
}
divs[group].classList.add('editTagsAndLabels');
divs[group].appendChild(btn);
}
var parseConfig = function (content) {
var configs = JSON.parse(content);
orientation = configs.orientation;
listingKey = configs.display_text;
if (configs.lemma === "true") editLemma = true;
else editLemma = false;
var posContainer = document.getElementById("postags");
var divs = {};
for (let i = 0; i < configs.pos.values.length; i++) {
if (!(configs.pos.values[i].key in posTags)) {
posTags[configs.pos.values[i].key] = [];
}
posTags[configs.pos.values[i].key].push(configs.pos.values[i].label);
let btn = createButton(configs.pos.values[i].label, editPOSByButton);
group = configs.pos.values[i].group;
addButtonToDivGroup(divs, group, btn);
}
for (var div in divs) {
var hzRule = document.createElement("hr");
posContainer.appendChild(hzRule);
posContainer.appendChild(divs[div]);
}
var labelContainer = document.getElementById("labels");
var divs = {};
for (var i = 0; i < configs.relation.values.length; i++) {
if (configs.relation.values[i].key in relLabels) {
relLabels[configs.relation.values[i].key].push(
configs.relation.values[i].label
);
var btn = document.createElement("BUTTON");
var text = document.createTextNode(configs.relation.values[i].label);
btn.appendChild(text);
btn.setAttribute("id", configs.relation.values[i].label);
btn.value = configs.relation.values[i].label;
btn.onclick = editLabelByButton;
group = configs.relation.values[i].group;
addButtonToDivGroup(divs, group, btn)
} else {
relLabels[configs.relation.values[i].key] = [];
relLabels[configs.relation.values[i].key].push(
configs.relation.values[i].label
);
var btn = document.createElement("BUTTON");
var text = document.createTextNode(configs.relation.values[i].label);
btn.appendChild(text);
btn.setAttribute("id", configs.relation.values[i].label);
btn.value = configs.relation.values[i].label;
btn.onclick = editLabelByButton;
group = configs.relation.values[i].group;
if (group in divs) {
divs[group].appendChild(btn);
} else {
divs[group] = document.createElement("div");
divs[group].appendChild(btn);
}
}
}
for (var div in divs) {
var hzRule = document.createElement("hr");
labelContainer.appendChild(hzRule);
labelContainer.appendChild(divs[div]);
}
if (configs.hasOwnProperty("features") == false) {
var morphoLabel = document.getElementById("labelspMorphoFeats");
morphoLabel.style.visibility = "hidden";
} else {
var morphoLabel = document.getElementById("labelspMorphoFeats");
morphoLabel.style.visibility = "visible";
var item = document.getElementById("morphoFeats");
var lexicalFeats = document.getElementById("lexicalFeats");
for (var i = 0; i < configs.features.length; i++) {
var div = document.createElement("div");
div.setAttribute("id", configs.features[i].name);
div.setAttribute("class", "morphoFeat");
var fieldName = document.createElement("div");
fieldName.style.width = "100px";
fieldName.style.right = "0px";
fieldName.style.display = "inline-block";
var displayName = document.createTextNode(configs.features[i].display);
fieldName.appendChild(displayName);
var menu = document.createElement("select");
menu.setAttribute("id", configs.features[i].name + "Array");
menu.setAttribute("class", "inputArray");
menu.style.width = "100px";
menu.style.left = "0px";
menu.style.display = "inline-block";
if (configs.features[i].type === "list") {
featureValues[configs.features[i].name] = configs.features[i].values;
for (var j = 0; j < configs.features[i].values.length; j++) {
var opt = document.createElement("option");
var name = document.createTextNode(
configs.features[i].values[j].display
);
opt.setAttribute("value", configs.features[i].values[j].display);
opt.setAttribute("id", configs.features[i].values[j].value);
opt.appendChild(name);
menu.appendChild(opt);
}
div.appendChild(fieldName);
div.appendChild(menu);
item.appendChild(div);
} else {
lexicalFeatsList.push(configs.features[i].name);
var titleParagraph = document.createElement("P");
titleParagraph.setAttribute("class", "labelsp");
titleParagraph.innerHTML = configs.features[i].display + ":";
var field = document.createElement("INPUT");
field.setAttribute("type", "text");
field.setAttribute("id", configs.features[i].name);
var lexDiv = document.createElement("div");
lexDiv.appendChild(field);
lexicalFeats.append(titleParagraph);
lexicalFeats.appendChild(lexDiv);
}
}
for (var i = 0; i < configs.defaultFeatures.length; i++) {
var posTag = configs.defaultFeatures[i].pos;
var defaultFeatValuePairs = {};
for (var j = 0; j < configs.defaultFeatures[i].features.length; j++) {
var featName = configs.defaultFeatures[i].features[j].name;
var featValue = configs.defaultFeatures[i].features[j].value;
defaultFeatValuePairs[featName] = featValue;
}
defaultFeatValues[posTag] = defaultFeatValuePairs;
}
}
if (editLemma === true) {
var lemmaField = document.getElementById("lemmaField");
var titleParagraph = document.createElement("P");
titleParagraph.setAttribute("class", "labelsp");
titleParagraph.innerHTML = "Lemma:";
var field = document.createElement("INPUT");
field.setAttribute("type", "text");
field.setAttribute("id", "lemma");
var lexDiv = document.createElement("div");
lexDiv.appendChild(field);
lemmaField.append(titleParagraph);
lemmaField.appendChild(lexDiv);
}
newPOSTag = configs.newNodeDefaults.pos;
newLinkLabel = configs.newNodeDefaults.relation;
newNodeName = configs.newNodeDefaults.name;
return;
};
function loadFile(file) {
return new Promise((resolve, reject) => {
var reader = new FileReader();
reader.onload = function () {
parseConfig(reader.result);
configRead = true;
resolve();
};
reader.onerror = function (error) {
reject(error);
};
reader.readAsText(file);
});
}
//Read the config file
var readConfigFile = async function () {
var selectList = document.getElementById("configFileSelector");
var file;
// default config file
if (
selectList.selectedIndex > 0 &&
selectList.selectedIndex < selectList.options.length - 1
) {
file = defaultConfigFiles[selectList.selectedIndex - 1];
} else if (selectList.selectedIndex == selectList.options.length - 1) {
// user uploaded config file
var x = document.getElementById("configFile");
var input = "";
if ("files" in x) {
if (x.files.length == 0) {
var morphoLabel = document.getElementById("labelspMorphoFeats");
morphoLabel.style.visibility = "hidden";
txt = "Select config file.";
return;
} else {
file = x.files[0];
}
}
} else return; // no config file selected
if (!alreadyReadConfigFiles.includes(file)) {
alreadyReadConfigFiles.push(file);
await loadFile(file);
}
return;
};
window.populateConfigFileSelector = populateConfigFileSelector;
window.readConfigFile = readConfigFile;