1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-06-29 08:33:23 +00:00
calibre-web/cps/static/js/table.js

216 lines
7.7 KiB
JavaScript
Raw Normal View History

/* This file is part of the Calibre-Web (https://github.com/janeczku/calibre-web)
* Copyright (C) 2018 OzzieIsaacs
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* exported TableActions, RestrictionActions*/
2018-08-28 07:42:19 +00:00
$(function() {
$("#domain_allow_submit").click(function(event) {
2018-08-28 07:42:19 +00:00
event.preventDefault();
$("#domain_add_allow").ajaxForm();
2018-08-28 07:42:19 +00:00
$(this).closest("form").submit();
$.ajax ({
2018-08-28 07:42:19 +00:00
method:"get",
url: window.location.pathname + "/../../ajax/domainlist/1",
2018-08-28 07:42:19 +00:00
async: true,
timeout: 900,
success:function(data) {
$("#domain-allow-table").bootstrapTable("load", data);
2018-08-28 07:42:19 +00:00
}
});
});
$("#domain-allow-table").bootstrapTable({
formatNoMatches: function () {
return "";
},
striped: false
});
$("#domain_deny_submit").click(function(event) {
event.preventDefault();
$("#domain_add_deny").ajaxForm();
$(this).closest("form").submit();
$.ajax ({
method:"get",
url: window.location.pathname + "/../../ajax/domainlist/0",
async: true,
timeout: 900,
success:function(data) {
$("#domain-deny-table").bootstrapTable("load", data);
}
});
});
$("#domain-deny-table").bootstrapTable({
formatNoMatches: function () {
return "";
2019-03-05 15:31:09 +00:00
},
striped: false
2018-08-28 07:42:19 +00:00
});
$("#btndeletedomain").click(function() {
//get data-id attribute of the clicked element
var domainId = $(this).data("domainId");
2018-08-28 07:42:19 +00:00
$.ajax({
method:"post",
url: window.location.pathname + "/../../ajax/deletedomain",
data: {"domainid":domainId}
});
$("#DeleteDomain").modal("hide");
2018-08-28 07:42:19 +00:00
$.ajax({
method:"get",
url: window.location.pathname + "/../../ajax/domainlist/1",
2018-08-28 07:42:19 +00:00
async: true,
timeout: 900,
2019-03-05 15:31:09 +00:00
success:function(data) {
$("#domain-allow-table").bootstrapTable("load", data);
}
});
$.ajax({
method:"get",
url: window.location.pathname + "/../../ajax/domainlist/0",
async: true,
timeout: 900,
success:function(data) {
$("#domain-deny-table").bootstrapTable("load", data);
2018-08-28 07:42:19 +00:00
}
});
});
//triggered when modal is about to be shown
2019-01-15 19:08:47 +00:00
$("#DeleteDomain").on("show.bs.modal", function(e) {
2018-08-28 07:42:19 +00:00
//get data-id attribute of the clicked element and store in button
var domainId = $(e.relatedTarget).data("domain-id");
$(e.currentTarget).find("#btndeletedomain").data("domainId", domainId);
2018-08-28 07:42:19 +00:00
});
2020-01-01 16:26:47 +00:00
$("#restrictModal").on("hidden.bs.modal", function () {
// Destroy table and remove hooks for buttons
$("#restrict-elements-table").unbind();
$("#restrict-elements-table").bootstrapTable("destroy");
$("[id^=submit_]").unbind();
$("#h1").addClass("hidden");
$("#h2").addClass("hidden");
$("#h3").addClass("hidden");
$("#h4").addClass("hidden");
2020-01-01 16:26:47 +00:00
});
function startTable(type) {
var pathname = document.getElementsByTagName("script"), src = pathname[pathname.length - 1].src;
var path = src.substring(0, src.lastIndexOf("/"));
2020-01-01 16:26:47 +00:00
$("#restrict-elements-table").bootstrapTable({
formatNoMatches: function () {
return "";
},
url: path + "/../../ajax/listrestriction/" + type,
2020-04-27 18:01:13 +00:00
rowStyle: function(row) {
// console.log('Reihe :' + row + " Index :" + index);
if (row.id.charAt(0) === "a") {
return {classes: "bg-primary"};
} else {
return {classes: "bg-dark-danger"};
}
},
2020-04-27 18:01:13 +00:00
onClickCell: function (field, value, row) {
if (field === 3) {
2020-01-01 16:26:47 +00:00
$.ajax ({
type: "Post",
data: "id=" + row.id + "&type=" + row.type + "&Element=" + row.Element,
url: path + "/../../ajax/deleterestriction/" + type,
2020-01-01 16:26:47 +00:00
async: true,
timeout: 900,
2020-04-27 18:01:13 +00:00
success:function() {
2020-01-01 16:26:47 +00:00
$.ajax({
method:"get",
url: path + "/../../ajax/listrestriction/" + type,
2020-01-01 16:26:47 +00:00
async: true,
timeout: 900,
success:function(data) {
$("#restrict-elements-table").bootstrapTable("load", data);
}
});
}
});
2020-01-01 16:26:47 +00:00
}
},
striped: false
});
$("#restrict-elements-table").removeClass("table-hover");
2020-04-27 18:01:13 +00:00
$("#restrict-elements-table").on("editable-save.bs.table", function (e, field, row) {
$.ajax({
url: path + "/../../ajax/editrestriction/" + type,
type: "Post",
data: row
});
});
2020-04-27 18:01:13 +00:00
$("[id^=submit_]").click(function() {
$(this)[0].blur();
2020-01-01 16:26:47 +00:00
$.ajax({
url: path + "/../../ajax/addrestriction/" + type,
type: "Post",
2020-01-01 16:26:47 +00:00
data: $(this).closest("form").serialize() + "&" + $(this)[0].name + "=",
success: function () {
$.ajax ({
method:"get",
url: path + "/../../ajax/listrestriction/" + type,
async: true,
timeout: 900,
success:function(data) {
$("#restrict-elements-table").bootstrapTable("load", data);
}
2020-01-01 16:26:47 +00:00
});
}
});
return;
});
}
$("#get_column_values").on("click", function() {
2020-01-01 16:26:47 +00:00
startTable(1);
$("#h2").removeClass("hidden");
2020-01-01 16:26:47 +00:00
});
$("#get_tags").on("click", function() {
2020-01-01 16:26:47 +00:00
startTable(0);
$("#h1").removeClass("hidden");
});
$("#get_user_column_values").on("click", function() {
startTable(3);
$("#h4").removeClass("hidden");
2020-01-01 16:26:47 +00:00
});
$("#get_user_tags").on("click", function() {
startTable(2);
$(this)[0].blur();
$("#h3").removeClass("hidden");
});
2018-08-28 07:42:19 +00:00
});
/* Function for deleting domain restrictions */
2020-04-27 18:01:13 +00:00
function TableActions (value, row) {
2018-08-28 07:42:19 +00:00
return [
"<a class=\"danger remove\" data-toggle=\"modal\" data-target=\"#DeleteDomain\" data-domain-id=\"" + row.id
+ "\" title=\"Remove\">",
"<i class=\"glyphicon glyphicon-trash\"></i>",
"</a>"
].join("");
}
2020-01-01 16:26:47 +00:00
/* Function for deleting domain restrictions */
2020-04-27 18:01:13 +00:00
function RestrictionActions (value, row) {
2020-01-01 16:26:47 +00:00
return [
"<div class=\"danger remove\" data-restriction-id=\"" + row.id + "\" title=\"Remove\">",
"<i class=\"glyphicon glyphicon-trash\"></i>",
"</div>"
].join("");
}