-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfetch_objective.js
56 lines (48 loc) · 1.4 KB
/
fetch_objective.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
function loadObjectives() {
var objectiveUrls = []
var objectivesSettings = {
url: "https://goal.sun-asterisk.vn/dashboard",
method: "GET",
xhrFields: {
withCredentials: true
},
async: false,
success: function(data, statusText, xhr) {
var parser = new DOMParser();
var doc = parser.parseFromString(xhr.responseText, "text/html");
var objectiveItems = doc.getElementsByClassName("objectiveItem")
objectiveUrls = Array.from(objectiveItems).map(function(objectiveItem) {
return objectiveItem.getElementsByClassName("float-left obj-name")[0].getElementsByTagName("a")[0].href
})
},
error: function(e) {
console.log(e)
}
}
$.ajax(objectivesSettings)
return objectiveUrls
}
function loadKeyResults(url) {
var keyResultIds = []
var objectDetailSettings = {
url: url,
method: "GET",
xhrFields: {
withCredentials: true
},
async: false,
success: function(data, statusText, xhr) {
var parser = new DOMParser();
var doc = parser.parseFromString(xhr.responseText, "text/html");
var keyResults = doc.getElementsByClassName("modal fade modalDetail keyResult-show")
keyResultIds = Array.from(keyResults).map(function(keyResult) {
return keyResult.id
})
},
error: function(e) {
console.log(e)
}
}
$.ajax(objectDetailSettings)
return keyResultIds
}