29 lines
1.1 KiB
JavaScript
29 lines
1.1 KiB
JavaScript
function load() {
|
|
let intervalID = window.setInterval(get_active_torrents, 20000);
|
|
}
|
|
|
|
function get_active_torrents() {
|
|
let httpRequest;
|
|
httpRequest = new XMLHttpRequest();
|
|
httpRequest.onreadystatechange = function() {
|
|
if (httpRequest.readyState !== XMLHttpRequest.DONE) { return; }
|
|
if (httpRequest.status !== 200) { return; }
|
|
torrents = JSON.parse(httpRequest.responseText);
|
|
let html_str = '';
|
|
for (let i = 0; i < torrents.length; i++) {
|
|
html_str += '<tr>'
|
|
html_str += '<td class="name">' + torrents[i].name + '</td>';
|
|
html_str += '<td class="totalSize">' + torrents[i].total_size_str + '</td>';
|
|
html_str += '<td class="state">' + torrents[i].state + '</td>';
|
|
html_str += '<td class="downrate">' + torrents[i].downrate_str + '</td>';
|
|
html_str += '<td class="downPercent">' + torrents[i].down_percent + '</td>';
|
|
html_str += '<td class="uprate">' + torrents[i].uprate_str + '</td>';
|
|
html_str += '<td class="tracker">' + torrents[i].tracker + '</td>';
|
|
html_str += '</tr>';
|
|
}
|
|
document.getElementById('torrents').children[1].innerHTML = html_str;
|
|
};
|
|
httpRequest.open('GET', get_torrents_uri, true);
|
|
httpRequest.send();
|
|
}
|