-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
102 lines (88 loc) · 2.74 KB
/
main.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
let dataValues;
let authIsToggled = false;
const authBlock = document.getElementById('authBlock');
authBlock.style.display = 'none';
const request = (url, method, authKey = ``, body = ``, callback) => {
const fetchHeaders = new Headers();
fetchHeaders.append('Content-Type', 'application/json');
fetchHeaders.append('Authorization', `key=${authKey}`);
let options = {
method: method,
headers: fetchHeaders
};
if (body) {
options.body = JSON.stringify(body);
}
fetch(url, options)
.then(response => response.json())
.then(data => {
callback(data);
})
.catch(error => console.error(error))
}
const requestNoToken = (url, callback) => {
fetch(url)
.then(response => response.json())
.then(data => {
callback(data);
})
.catch(error => console.error(error))
}
function doLogin() {
const loginUrl = document.getElementById('loginUrl').value;
const username = document.getElementById('loginUsername').value;
const password = document.getElementById('loginPassword').value;
request(loginUrl, `POST`, '', {
'username': username,
'password': password
}, (res) => {
if (res.token) {
const token = res.token;
localStorage.setItem('token', token);
} else {
alert('Not authenticated');
}
});
}
function toggleAuth() {
if (document.getElementById('toggleAuth').checked) {
authIsToggled = false;
authBlock.style.display = 'none';
} else {
authIsToggled = true;
authBlock.style.display = 'block';
}
}
function doRequestData() {
const requestUrl = document.getElementById('requestUrl').value;
if (authIsToggled) {
const token = localStorage.getItem('token');
request(requestUrl, `GET`, token, '', (data) => {
dataValues = data;
doGenerateViewer();
});
} else {
requestNoToken(requestUrl, (data) => {
dataValues = data;
doGenerateViewer();
});
}
}
function doGenerateViewer() {
let columns = [];
Object.keys(dataValues[0]).forEach(col => {
columns.push({ title: col, field: col, headerFilter:"input" });
});
createViewer(`viewer-table`, dataValues, columns);
}
function createViewer(elementID, tabledata, columns) {
//create Tabulator on DOM element with id 'example-table'
var table = new Tabulator(`#${elementID}`, {
headerFilterPlaceholder:"", //set column header placeholder text
data: tabledata, //assign data to table
layout: 'fitDataFill', //fit columns to width of table (optional)
columns: columns,
pagination:'local',
paginationSize:15,
});
}