You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

221 lines
7.1 KiB

$(function () {
$(".my-checks-name").click(function() {
var code = $(this).closest("tr.checks-row").attr("id");
var url = "/checks/" + code + "/name/";
$("#update-name-form").attr("action", url);
$("#update-name-input").val(this.dataset.name);
$("#update-tags-input").val(this.dataset.tags);
$("#update-desc-input").val(this.dataset.desc);
$('#update-name-modal').modal("show");
$("#update-name-input").focus();
return false;
});
$(".integrations").tooltip({
container: "body",
selector: "span",
title: function() {
var idx = $(this).index();
return $("#ch-" + idx).data("title");
}
});
$(".integrations").on("click", "span", function() {
var isOff = $(this).toggleClass("off").hasClass("off");
var token = $('input[name=csrfmiddlewaretoken]').val();
var idx = $(this).index();
var checkCode = $(this).closest("tr.checks-row").attr("id");
var channelCode = $("#ch-" + idx).data("code");
var url = "/checks/" + checkCode + "/channels/" + channelCode + "/enabled";
$.ajax({
url: url,
type: "post",
headers: {"X-CSRFToken": token},
data: {"state": isOff ? "off" : "on"}
});
return false;
});
$(".last-ping").on("click", function() {
if (this.innerText == "Never") {
return false;
}
$("#ping-details-body").text("Updating...");
$('#ping-details-modal').modal("show");
var code = $(this).closest("tr.checks-row").attr("id");
var lastPingUrl = "/checks/" + code + "/last_ping/";
$.get(lastPingUrl, function(data) {
$("#ping-details-body" ).html(data);
});
var logUrl = "/checks/" + code + "/log/";
$("#ping-details-log").attr("href", logUrl);
return false;
});
function applyFilters() {
// Make a list of currently checked tags:
var checked = [];
var qs = [];
$("#my-checks-tags .checked").each(function(index, el) {
checked.push(el.textContent);
qs.push({"name": "tag", "value": el.textContent});
});
var search = $("#search").val().toLowerCase();
if (search) {
qs.push({"name": "search", "value": search});
}
// Update hash
if (window.history && window.history.replaceState) {
var url = "/checks/";
if (qs.length) {
url += "?" + $.param(qs);
}
window.history.replaceState({}, "", url);
}
// No checked tags and no search string: show all
if (checked.length == 0 && !search) {
$("#checks-table tr.checks-row").show();
return;
}
function applySingle(index, element) {
if (search) {
var code = element.getAttribute("id");
var name = $(".my-checks-name", element).attr("data-name").toLowerCase();
if (name.indexOf(search) == -1 && code.indexOf(search) == -1) {
$(element).hide();
return;
}
}
if (checked.length) {
// use attr(), as data() tries converting strings to JS types:
// (e.g., "123" -> 123)
var tags = $(".my-checks-name", element).attr("data-tags").split(" ");
for (var i=0, tag; tag=checked[i]; i++) {
if (tags.indexOf(tag) == -1) {
$(element).hide();
return;
}
}
}
$(element).show();
}
// For each row, see if it needs to be shown or hidden
$("#checks-table tr.checks-row").each(applySingle);
}
// User clicks on tags: apply filters
$("#my-checks-tags div").click(function() {
$(this).toggleClass('checked');
applyFilters();
});
// User changes the search string: apply filters
$("#search").keyup(applyFilters);
$(".show-log").click(function(e) {
var code = $(this).closest("tr.checks-row").attr("id");
var url = "/checks/" + code + "/details/";
window.location = url;
return false;
});
$('[data-toggle="tooltip"]').tooltip({
html: true,
container: "body",
title: function() {
var cssClasses = this.getAttribute("class");
if (cssClasses.indexOf("icon-new") > -1)
return "New. Has never received a ping.";
if (cssClasses.indexOf("icon-paused") > -1)
return "Monitoring paused. Ping to resume.";
if (cssClasses.indexOf("sort-name") > -1)
return "Sort by name<br />(but failed always first)";
if (cssClasses.indexOf("sort-last-ping") > -1)
return "Sort by last ping<br />(but failed always first)";
}
});
// Schedule refresh to run every 3s when tab is visible and user
// is active, every 60s otherwise
var lastStatus = {};
var lastPing = {};
var statusUrl = $("#checks-table").data("status-url");
function refreshStatus() {
$.ajax({
url: statusUrl,
dataType: "json",
timeout: 2000,
success: function(data) {
for(var i=0, el; el=data.details[i]; i++) {
if (lastStatus[el.code] != el.status) {
lastStatus[el.code] = el.status;
$("#" + el.code + " span.status").attr("class", "status icon-" + el.status);
$("#" + el.code + " .pause-li").toggleClass("disabled", el.status == "paused");
}
if (lastPing[el.code] != el.last_ping) {
lastPing[el.code] = el.last_ping;
$("#lpd-" + el.code).html(el.last_ping);
}
}
$("#my-checks-tags div").each(function(a) {
var status = data.tags[this.innerText];
if (lastStatus[this.innerText] == status)
return;
$(this).removeClass("up grace down").addClass(status);
lastStatus[this.innerText] = status;
});
if (document.title != data.title) {
document.title = data.title;
}
}
});
}
// Schedule regular status updates:
if (statusUrl) {
adaptiveSetInterval(refreshStatus);
}
// Copy to clipboard
var clipboard = new Clipboard('button.copy-link');
$("button.copy-link").mouseout(function(e) {
setTimeout(function() {
e.target.textContent = "copy";
}, 300);
})
clipboard.on('success', function(e) {
e.trigger.textContent = "copied!";
e.clearSelection();
});
clipboard.on('error', function(e) {
var text = e.trigger.getAttribute("data-clipboard-text");
prompt("Press Ctrl+C to select:", text)
});
});