Merge branch 'bugfix/various-fixes' into feature/confirm-trade-changes
This commit is contained in:
commit
c1829a657e
|
@ -27,7 +27,8 @@
|
||||||
"strict": "off",
|
"strict": "off",
|
||||||
"class-methods-use-this": "off",
|
"class-methods-use-this": "off",
|
||||||
"eqeqeq": "warn",
|
"eqeqeq": "warn",
|
||||||
"radix": "warn"
|
"radix": "warn",
|
||||||
|
"max-classes-per-file": ["error", 2]
|
||||||
},
|
},
|
||||||
"globals": {
|
"globals": {
|
||||||
"API_URLS": true,
|
"API_URLS": true,
|
||||||
|
|
|
@ -215,34 +215,6 @@
|
||||||
}, 200);
|
}, 200);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Select all functionality
|
|
||||||
*/
|
|
||||||
const btnSelectAll = document.getElementById("SelectAllBTN");
|
|
||||||
const tableListCheckboxes = document.querySelectorAll(".deviceSelect");
|
|
||||||
|
|
||||||
function itemListCheckChanged(event) {
|
|
||||||
const isAllChecked = Array.from(tableListCheckboxes).map(itm => itm.checked);
|
|
||||||
if (isAllChecked.every(bool => bool == true)) {
|
|
||||||
btnSelectAll.checked = true;
|
|
||||||
btnSelectAll.indeterminate = false;
|
|
||||||
} else if (isAllChecked.every(bool => bool == false)) {
|
|
||||||
btnSelectAll.checked = false;
|
|
||||||
btnSelectAll.indeterminate = false;
|
|
||||||
} else {
|
|
||||||
btnSelectAll.indeterminate = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tableListCheckboxes.forEach(item => {
|
|
||||||
item.addEventListener("click", itemListCheckChanged);
|
|
||||||
})
|
|
||||||
|
|
||||||
btnSelectAll.addEventListener("click", event => {
|
|
||||||
const checkedState = event.target.checked;
|
|
||||||
tableListCheckboxes.forEach(ckeckbox => {ckeckbox.checked = checkedState});
|
|
||||||
})
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Avoid hide dropdown when user clicked inside
|
* Avoid hide dropdown when user clicked inside
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -17,8 +17,98 @@ $(document).ready(() => {
|
||||||
// $('#selectLot').selectpicker();
|
// $('#selectLot').selectpicker();
|
||||||
})
|
})
|
||||||
|
|
||||||
|
class TableController {
|
||||||
|
static #tableRows = table.activeRows;
|
||||||
|
|
||||||
|
static #tableRowsPage = () => table.pages[table.rows().dt.currentPage - 1];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @returns Selected inputs from device list
|
||||||
|
*/
|
||||||
|
static getSelectedDevices() {
|
||||||
|
return this.#tableRows
|
||||||
|
.filter(element => element.querySelector("input").checked)
|
||||||
|
.map(element => element.querySelector("input"))
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @returns Selected inputs in current page from device list
|
||||||
|
*/
|
||||||
|
static getAllSelectedDevicesInCurrentPage() {
|
||||||
|
return this.#tableRowsPage()
|
||||||
|
.filter(element => element.querySelector("input").checked)
|
||||||
|
.map(element => element.querySelector("input"))
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @returns All inputs from device list
|
||||||
|
*/
|
||||||
|
static getAllDevices() {
|
||||||
|
return this.#tableRows
|
||||||
|
.map(element => element.querySelector("input"))
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @returns All inputs from current page in device list
|
||||||
|
*/
|
||||||
|
static getAllDevicesInCurrentPage() {
|
||||||
|
return this.#tableRowsPage()
|
||||||
|
.map(element => element.querySelector("input"))
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param {HTMLElement} DOMElements
|
||||||
|
* @returns Procesed input atributes to an Object class
|
||||||
|
*/
|
||||||
|
static ProcessTR(DOMElements) {
|
||||||
|
return DOMElements.map(element => {
|
||||||
|
const info = {}
|
||||||
|
info.checked = element.checked
|
||||||
|
Object.values(element.attributes).forEach(attrib => { info[attrib.nodeName.replace(/-/g, "_")] = attrib.nodeValue })
|
||||||
|
return info
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Select all functionality
|
||||||
|
*/
|
||||||
|
window.addEventListener("DOMContentLoaded", () => {
|
||||||
|
const btnSelectAll = document.getElementById("SelectAllBTN");
|
||||||
|
|
||||||
|
function itemListCheckChanged() {
|
||||||
|
const listDevices = TableController.getAllDevicesInCurrentPage()
|
||||||
|
const isAllChecked = listDevices.map(itm => itm.checked);
|
||||||
|
|
||||||
|
if (isAllChecked.every(bool => bool == true)) {
|
||||||
|
btnSelectAll.checked = true;
|
||||||
|
btnSelectAll.indeterminate = false;
|
||||||
|
} else if (isAllChecked.every(bool => bool == false)) {
|
||||||
|
btnSelectAll.checked = false;
|
||||||
|
btnSelectAll.indeterminate = false;
|
||||||
|
} else {
|
||||||
|
btnSelectAll.indeterminate = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
TableController.getAllDevices().forEach(item => {
|
||||||
|
item.addEventListener("click", itemListCheckChanged);
|
||||||
|
})
|
||||||
|
|
||||||
|
btnSelectAll.addEventListener("click", event => {
|
||||||
|
const checkedState = event.target.checked;
|
||||||
|
TableController.getAllDevicesInCurrentPage().forEach(ckeckbox => { ckeckbox.checked = checkedState });
|
||||||
|
})
|
||||||
|
|
||||||
|
// https://github.com/fiduswriter/Simple-DataTables/wiki/Events
|
||||||
|
table.on("datatable.page", () => itemListCheckChanged());
|
||||||
|
table.on("datatable.perpage", () => itemListCheckChanged());
|
||||||
|
table.on("datatable.update", () => itemListCheckChanged());
|
||||||
|
})
|
||||||
|
|
||||||
function deviceSelect() {
|
function deviceSelect() {
|
||||||
const devices_count = $(".deviceSelect").filter(":checked").length;
|
const devices_count = TableController.getSelectedDevices().length;
|
||||||
get_device_list();
|
get_device_list();
|
||||||
if (devices_count == 0) {
|
if (devices_count == 0) {
|
||||||
$("#addingLotModal .pol").show();
|
$("#addingLotModal .pol").show();
|
||||||
|
@ -60,7 +150,7 @@ function deviceSelect() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function removeLot() {
|
function removeLot() {
|
||||||
const devices = $(".deviceSelect");
|
const devices = TableController.getAllDevices();
|
||||||
if (devices.length > 0) {
|
if (devices.length > 0) {
|
||||||
$("#btnRemoveLots .text-danger").show();
|
$("#btnRemoveLots .text-danger").show();
|
||||||
} else {
|
} else {
|
||||||
|
@ -70,8 +160,8 @@ function removeLot() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function removeTag() {
|
function removeTag() {
|
||||||
const devices = $(".deviceSelect").filter(":checked");
|
const devices = TableController.getSelectedDevices();
|
||||||
const devices_id = $.map(devices, (x) => $(x).attr("data"));
|
const devices_id = devices.map(dev => dev.data);
|
||||||
if (devices_id.length == 1) {
|
if (devices_id.length == 1) {
|
||||||
const url = `/inventory/tag/devices/${devices_id[0]}/del/`;
|
const url = `/inventory/tag/devices/${devices_id[0]}/del/`;
|
||||||
window.location.href = url;
|
window.location.href = url;
|
||||||
|
@ -81,8 +171,8 @@ function removeTag() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function addTag() {
|
function addTag() {
|
||||||
const devices = $(".deviceSelect").filter(":checked");
|
const devices = TableController.getSelectedDevices();
|
||||||
const devices_id = $.map(devices, (x) => $(x).attr("data"));
|
const devices_id = devices.map(dev => dev.data);
|
||||||
if (devices_id.length == 1) {
|
if (devices_id.length == 1) {
|
||||||
$("#addingTagModal .pol").hide();
|
$("#addingTagModal .pol").hide();
|
||||||
$("#addingTagModal .btn-primary").show();
|
$("#addingTagModal .btn-primary").show();
|
||||||
|
@ -137,7 +227,7 @@ function newDataWipe(action) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_device_list() {
|
function get_device_list() {
|
||||||
const devices = $(".deviceSelect").filter(":checked");
|
const devices = TableController.getSelectedDevices();
|
||||||
|
|
||||||
/* Insert the correct count of devices in actions form */
|
/* Insert the correct count of devices in actions form */
|
||||||
const devices_count = devices.length;
|
const devices_count = devices.length;
|
||||||
|
@ -156,10 +246,11 @@ function get_device_list() {
|
||||||
"Desktop": "<i class='bi bi-building'></i>",
|
"Desktop": "<i class='bi bi-building'></i>",
|
||||||
"Laptop": "<i class='bi bi-laptop'></i>",
|
"Laptop": "<i class='bi bi-laptop'></i>",
|
||||||
};
|
};
|
||||||
|
|
||||||
list_devices = devices.map((x) => {
|
list_devices = devices.map((x) => {
|
||||||
let typ = $(devices[x]).data("device-type");
|
let typ = $(x).data("device-type");
|
||||||
const manuf = $(devices[x]).data("device-manufacturer");
|
const manuf = $(x).data("device-manufacturer");
|
||||||
const dhid = $(devices[x]).data("device-dhid");
|
const dhid = $(x).data("device-dhid");
|
||||||
if (computer[typ]) {
|
if (computer[typ]) {
|
||||||
typ = computer[typ];
|
typ = computer[typ];
|
||||||
};
|
};
|
||||||
|
@ -171,7 +262,7 @@ function get_device_list() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function export_file(type_file) {
|
function export_file(type_file) {
|
||||||
const devices = $(".deviceSelect").filter(":checked");
|
const devices = TableController.getSelectedDevices();
|
||||||
const devices_id = $.map(devices, (x) => $(x).attr("data-device-dhid")).join(",");
|
const devices_id = $.map(devices, (x) => $(x).attr("data-device-dhid")).join(",");
|
||||||
if (devices_id) {
|
if (devices_id) {
|
||||||
const url = `/inventory/export/${type_file}/?ids=${devices_id}`;
|
const url = `/inventory/export/${type_file}/?ids=${devices_id}`;
|
||||||
|
@ -291,11 +382,20 @@ async function processSelectedDevices() {
|
||||||
|
|
||||||
const newTable = Array.from(tmpDiv.querySelectorAll("table.table > tbody > tr .deviceSelect")).map(x => x.attributes["data-device-dhid"].value)
|
const newTable = Array.from(tmpDiv.querySelectorAll("table.table > tbody > tr .deviceSelect")).map(x => x.attributes["data-device-dhid"].value)
|
||||||
|
|
||||||
table.rows().dt.activeRows.forEach(row => {
|
// https://github.com/fiduswriter/Simple-DataTables/wiki/rows()#removeselect-arraynumber
|
||||||
|
const rowsToRemove = []
|
||||||
|
for (let i = 0; i < table.activeRows.length; i++) {
|
||||||
|
const row = table.activeRows[i];
|
||||||
if (!newTable.includes(row.querySelector("input").attributes["data-device-dhid"].value)) {
|
if (!newTable.includes(row.querySelector("input").attributes["data-device-dhid"].value)) {
|
||||||
row.remove()
|
rowsToRemove.push(i)
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
|
table.rows().remove(rowsToRemove);
|
||||||
|
|
||||||
|
// Restore state of checkbox
|
||||||
|
const selectAllBTN = document.getElementById("SelectAllBTN");
|
||||||
|
selectAllBTN.checked = false;
|
||||||
|
selectAllBTN.indeterminate = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -341,7 +441,7 @@ async function processSelectedDevices() {
|
||||||
const listHTML = $("#LotsSelector")
|
const listHTML = $("#LotsSelector")
|
||||||
|
|
||||||
// Get selected devices
|
// Get selected devices
|
||||||
const selectedDevicesID = table.rows().dt.activeRows.filter(item => item.querySelector("input").checked).map(item => item.querySelector("input").attributes.data.value)
|
const selectedDevicesID = TableController.ProcessTR(TableController.getSelectedDevices()).map(item => item.data)
|
||||||
|
|
||||||
if (selectedDevicesID.length <= 0) {
|
if (selectedDevicesID.length <= 0) {
|
||||||
listHTML.html("<li style=\"color: red; text-align: center\">No devices selected</li>");
|
listHTML.html("<li style=\"color: red; text-align: center\">No devices selected</li>");
|
||||||
|
|
Reference in New Issue