$(document).ready(function(){ // setup a function to grab the assignments function getNodesAndAssignments() { $.getJSON("nodes.json", function(json){ json.nodes.sort(function(a, b){ if (a.type === b.type) { if (a.wake_timestamp < b.wake_timestamp) { return 1; } else if (a.wake_timestamp > b.wake_timestamp) { return -1; } else { return 0; } } if (a.type === "agent" && b.type !== "agent") { return 1; } else if (b.type === "agent" && a.type !== "agent") { return -1; } if (a.type > b.type) { return 1; } if (a.type < b.type) { return -1; } }); nodesTableBody = ""; $.each(json.nodes, function(index, data) { nodesTableBody += ""; nodesTableBody += "" + data.type + ""; nodesTableBody += "" + data.uuid + ""; nodesTableBody += "" + (data.pool ? data.pool : "") + ""; nodesTableBody += "" + data.public.ip + ":" + data.public.port + ""; nodesTableBody += "" + data.local.ip + ":" + data.local.port + ""; var uptimeSeconds = (Date.now() - data.wake_timestamp) / 1000; nodesTableBody += "" + uptimeSeconds.toLocaleString() + ""; nodesTableBody += "" + (typeof data.pending_credits == 'number' ? data.pending_credits.toLocaleString() : 'N/A') + ""; nodesTableBody += ""; nodesTableBody += ""; }); $('#nodes-table tbody').html(nodesTableBody); }); $.getJSON("assignments.json", function(json){ queuedTableBody = ""; $.each(json.queued, function (uuid, data) { queuedTableBody += ""; queuedTableBody += "" + data.type + ""; queuedTableBody += "" + uuid + ""; queuedTableBody += "" + (data.pool ? data.pool : "") + ""; queuedTableBody += ""; }); $('#assignments-table tbody').html(queuedTableBody); }); } // do the first GET on page load getNodesAndAssignments(); // grab the new assignments JSON every two seconds var getNodesAndAssignmentsInterval = setInterval(getNodesAndAssignments, 2000); // hook the node delete to the X button $(document.body).on('click', '.glyphicon-remove', function(){ // fire off a delete for this node $.ajax({ url: "/nodes/" + $(this).data('uuid'), type: 'DELETE', success: function(result) { console.log("Succesful request to delete node."); } }); }); $(document.body).on('click', '#kill-all-btn', function() { var confirmed_kill = confirm("Are you sure?"); if (confirmed_kill == true) { $.ajax({ url: "/nodes/", type: 'DELETE', success: function(result) { console.log("Successful request to delete all nodes."); } }); } }); });