-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathparsing.js
93 lines (73 loc) · 2.83 KB
/
parsing.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
function initParseModalButton() {
document.getElementById('parse-modal').classList.remove("hidden");
document.getElementById('parse-overlay').classList.remove("hidden");
}
function initGetParsedModalButton(parse_data_id) {
// hides the parse-modal
document.getElementById('parse-modal').classList.add("hidden");
document.getElementById('parse-overlay').classList.add("hidden");
// show the update tree modal
document.getElementById('get-parsed-modal').classList.remove("hidden");
document.getElementById('get-parsed-overlay').classList.remove("hidden");
// set up button that sends a request to the backend to get the new trees
closeButton = document.getElementById("get-parsed-btn");
closeButton.textContent = 'View trees';
closeButton.addEventListener('click', () => {
document.getElementById('get-parsed-modal').classList.add("hidden");
document.getElementById('get-parsed-overlay').classList.add("hidden");
getParsedData(parse_data_id)
});
}
function parseFile() {
let textSentences = $("#treedata2").val();
let parserType = $("#select-parser").val();
// removing empty lines
textSentences = textSentences.split("\n");
textSentences = textSentences.filter(function(el) { return el != ""});
if(parserType === "") {
alert("Please select a parser");
return;
}
let myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
let raw = JSON.stringify({"sentences": textSentences, "parserType": parserType});
let requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
fetch(`${SERVER_ORIGIN}/parse_data`, requestOptions)
.then(res => res.text())
.then(data => {
initGetParsedModalButton(data)
})
.catch(error => console.log('error', error));
initParseModalButton();
}
// var readConfigFileForParsedSentences = async function () {
// await readConfigFile();
// }
function getParsedData(parse_data_id) {
let myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
let requestOptions = {
method: 'GET',
headers: myHeaders,
redirect: 'follow'
};
fetch(`${SERVER_ORIGIN}/get_parsed_data?data_id=${parse_data_id}`, requestOptions)
.then(response => response.text())
.then(data => {
readConfigFile();
// readConfigFileForParsedSentences();
treesArray = convertToJSON(data);
currentTreeIndex = 0;
UndoRedoHelperOnTreePageSetUp();
view([$(".upload")], hideComponents);
addFilenameToHtmlElements('Untitled.conllx');
getTree(treesArray[0]);
isConlluLocal = true;
})
.catch(error => console.log('error', error));
}