mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
134 lines
3.6 KiB
JavaScript
Executable file
134 lines
3.6 KiB
JavaScript
Executable file
$(function () {
|
|
|
|
// navbar notification popups
|
|
$(".notification-dropdown").each(function (index, el) {
|
|
var $el = $(el);
|
|
var $dialog = $el.find(".pop-dialog");
|
|
var $trigger = $el.find(".trigger");
|
|
|
|
$dialog.click(function (e) {
|
|
e.stopPropagation()
|
|
});
|
|
$dialog.find(".close-icon").click(function (e) {
|
|
e.preventDefault();
|
|
$dialog.removeClass("is-visible");
|
|
$trigger.removeClass("active");
|
|
});
|
|
$("body").click(function () {
|
|
$dialog.removeClass("is-visible");
|
|
$trigger.removeClass("active");
|
|
});
|
|
|
|
$trigger.click(function (e) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
|
|
// hide all other pop-dialogs
|
|
$(".notification-dropdown .pop-dialog").removeClass("is-visible");
|
|
$(".notification-dropdown .trigger").removeClass("active")
|
|
|
|
$dialog.toggleClass("is-visible");
|
|
if ($dialog.hasClass("is-visible")) {
|
|
$(this).addClass("active");
|
|
} else {
|
|
$(this).removeClass("active");
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
|
|
// sidebar menu dropdown toggle
|
|
$("#dashboard-menu .dropdown-toggle").click(function (e) {
|
|
e.preventDefault();
|
|
var $item = $(this).parent();
|
|
$item.toggleClass("active");
|
|
if ($item.hasClass("active")) {
|
|
$item.find(".submenu").slideDown("fast");
|
|
} else {
|
|
$item.find(".submenu").slideUp("fast");
|
|
}
|
|
});
|
|
|
|
|
|
// mobile side-menu slide toggler
|
|
var $menu = $("#sidebar-nav");
|
|
$("body").click(function () {
|
|
if ($(this).hasClass("menu")) {
|
|
$(this).removeClass("menu");
|
|
}
|
|
});
|
|
$menu.click(function(e) {
|
|
e.stopPropagation();
|
|
});
|
|
$("#menu-toggler").click(function (e) {
|
|
e.stopPropagation();
|
|
$("body").toggleClass("menu");
|
|
});
|
|
$(window).resize(function() {
|
|
$(this).width() > 769 && $("body.menu").removeClass("menu")
|
|
})
|
|
|
|
|
|
// build all tooltips from data-attributes
|
|
$("[data-toggle='tooltip']").each(function (index, el) {
|
|
$(el).tooltip({
|
|
placement: $(this).data("placement") || 'top'
|
|
});
|
|
});
|
|
|
|
|
|
// custom uiDropdown element, example can be seen in user-list.html on the 'Filter users' button
|
|
var uiDropdown = new function() {
|
|
var self;
|
|
self = this;
|
|
this.hideDialog = function($el) {
|
|
return $el.find(".dialog").hide().removeClass("is-visible");
|
|
};
|
|
this.showDialog = function($el) {
|
|
return $el.find(".dialog").show().addClass("is-visible");
|
|
};
|
|
return this.initialize = function() {
|
|
$("html").click(function() {
|
|
$(".ui-dropdown .head").removeClass("active");
|
|
return self.hideDialog($(".ui-dropdown"));
|
|
});
|
|
$(".ui-dropdown .body").click(function(e) {
|
|
return e.stopPropagation();
|
|
});
|
|
return $(".ui-dropdown").each(function(index, el) {
|
|
return $(el).click(function(e) {
|
|
e.stopPropagation();
|
|
$(el).find(".head").toggleClass("active");
|
|
if ($(el).find(".head").hasClass("active")) {
|
|
return self.showDialog($(el));
|
|
} else {
|
|
return self.hideDialog($(el));
|
|
}
|
|
});
|
|
});
|
|
};
|
|
};
|
|
|
|
// instantiate new uiDropdown from above to build the plugins
|
|
new uiDropdown();
|
|
|
|
|
|
// toggle all checkboxes from a table when header checkbox is clicked
|
|
$(".table th input:checkbox").click(function () {
|
|
$checks = $(this).closest(".table").find("tbody input:checkbox");
|
|
if ($(this).is(":checked")) {
|
|
$checks.prop("checked", true);
|
|
} else {
|
|
$checks.prop("checked", false);
|
|
}
|
|
});
|
|
|
|
// quirk to fix dark skin sidebar menu because of B3 border-box
|
|
if ($("#sidebar-nav").height() > $(".content").height()) {
|
|
$("html").addClass("small");
|
|
}
|
|
|
|
|
|
});
|