2022-04-20 10:04:53 +00:00
|
|
|
$(document).ready(() => {
|
|
|
|
const show_allocate_form = $("#allocateModal").data("show-action-form");
|
|
|
|
const show_datawipe_form = $("#datawipeModal").data("show-action-form");
|
|
|
|
const show_trade_form = $("#tradeLotModal").data("show-action-form");
|
2022-02-07 13:01:38 +00:00
|
|
|
if (show_allocate_form != "None") {
|
2022-02-01 12:40:06 +00:00
|
|
|
$("#allocateModal .btn-primary").show();
|
2022-02-07 13:01:38 +00:00
|
|
|
newAllocate(show_allocate_form);
|
|
|
|
} else if (show_datawipe_form != "None") {
|
|
|
|
$("#datawipeModal .btn-primary").show();
|
|
|
|
newDataWipe(show_datawipe_form);
|
2022-02-18 12:37:45 +00:00
|
|
|
} else if (show_trade_form != "None") {
|
|
|
|
$("#tradeLotModal .btn-primary").show();
|
|
|
|
newTrade(show_trade_form);
|
2022-02-01 12:40:06 +00:00
|
|
|
} else {
|
|
|
|
$(".deviceSelect").on("change", deviceSelect);
|
|
|
|
}
|
|
|
|
// $('#selectLot').selectpicker();
|
2021-12-30 11:41:37 +00:00
|
|
|
})
|
|
|
|
|
2022-04-29 09:36:55 +00:00
|
|
|
class TableController {
|
2022-04-29 12:39:56 +00:00
|
|
|
static #tableRows = () => table.activeRows.length > 0 ? table.activeRows : [];
|
2022-04-29 11:58:48 +00:00
|
|
|
|
|
|
|
static #tableRowsPage = () => table.pages[table.rows().dt.currentPage - 1];
|
2022-04-29 09:36:55 +00:00
|
|
|
|
|
|
|
/**
|
2022-04-29 11:34:45 +00:00
|
|
|
* @returns Selected inputs from device list
|
2022-04-29 09:36:55 +00:00
|
|
|
*/
|
|
|
|
static getSelectedDevices() {
|
2022-04-29 12:39:56 +00:00
|
|
|
if (this.#tableRows() == undefined) return [];
|
|
|
|
return this.#tableRows()
|
2022-04-29 10:36:42 +00:00
|
|
|
.filter(element => element.querySelector("input").checked)
|
|
|
|
.map(element => element.querySelector("input"))
|
2022-04-29 09:36:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-04-29 11:34:45 +00:00
|
|
|
* @returns Selected inputs in current page from device list
|
|
|
|
*/
|
2022-04-29 12:06:09 +00:00
|
|
|
static getAllSelectedDevicesInCurrentPage() {
|
2022-04-29 12:39:56 +00:00
|
|
|
if (this.#tableRowsPage() == undefined) return [];
|
2022-04-29 11:58:48 +00:00
|
|
|
return this.#tableRowsPage()
|
2022-04-29 11:34:45 +00:00
|
|
|
.filter(element => element.querySelector("input").checked)
|
|
|
|
.map(element => element.querySelector("input"))
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns All inputs from device list
|
2022-04-29 09:36:55 +00:00
|
|
|
*/
|
|
|
|
static getAllDevices() {
|
2022-04-29 12:39:56 +00:00
|
|
|
if (this.#tableRows() == undefined) return [];
|
|
|
|
return this.#tableRows()
|
2022-04-29 10:36:42 +00:00
|
|
|
.map(element => element.querySelector("input"))
|
2022-04-29 09:36:55 +00:00
|
|
|
}
|
|
|
|
|
2022-04-29 11:34:45 +00:00
|
|
|
/**
|
|
|
|
* @returns All inputs from current page in device list
|
|
|
|
*/
|
2022-04-29 12:07:04 +00:00
|
|
|
static getAllDevicesInCurrentPage() {
|
2022-04-29 12:39:56 +00:00
|
|
|
if (this.#tableRowsPage() == undefined) return [];
|
2022-04-29 11:58:48 +00:00
|
|
|
return this.#tableRowsPage()
|
2022-04-29 11:34:45 +00:00
|
|
|
.map(element => element.querySelector("input"))
|
|
|
|
}
|
|
|
|
|
2022-04-29 09:36:55 +00:00
|
|
|
/**
|
2022-05-06 17:44:59 +00:00
|
|
|
*
|
|
|
|
* @param {HTMLElement} DOMElements
|
2022-04-29 09:36:55 +00:00
|
|
|
* @returns Procesed input atributes to an Object class
|
|
|
|
*/
|
2022-04-29 10:36:42 +00:00
|
|
|
static ProcessTR(DOMElements) {
|
2022-04-29 09:36:55 +00:00
|
|
|
return DOMElements.map(element => {
|
|
|
|
const info = {}
|
2022-04-29 10:36:42 +00:00
|
|
|
info.checked = element.checked
|
2022-04-29 12:07:04 +00:00
|
|
|
Object.values(element.attributes).forEach(attrib => { info[attrib.nodeName.replace(/-/g, "_")] = attrib.nodeValue })
|
2022-04-29 09:36:55 +00:00
|
|
|
return info
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-29 12:06:09 +00:00
|
|
|
/**
|
|
|
|
* Select all functionality
|
|
|
|
*/
|
|
|
|
window.addEventListener("DOMContentLoaded", () => {
|
|
|
|
const btnSelectAll = document.getElementById("SelectAllBTN");
|
2022-05-03 10:13:15 +00:00
|
|
|
const alertInfoDevices = document.getElementById("select-devices-info");
|
2022-04-29 12:06:09 +00:00
|
|
|
|
|
|
|
function itemListCheckChanged() {
|
2022-05-09 12:40:28 +00:00
|
|
|
alertInfoDevices.innerHTML = `Selected devices: ${TableController.getSelectedDevices().length}
|
|
|
|
${TableController.getAllDevices().length != TableController.getSelectedDevices().length
|
|
|
|
? `<a href="#" class="ml-3">Select all devices (${TableController.getAllDevices().length})</a>`
|
|
|
|
: "<a href=\"#\" class=\"ml-3\">Cancel selection</a>"
|
|
|
|
}`;
|
|
|
|
|
2022-05-11 08:42:32 +00:00
|
|
|
if (TableController.getSelectedDevices().length <= 0) {
|
2022-05-09 12:40:28 +00:00
|
|
|
alertInfoDevices.classList.add("d-none")
|
2022-05-11 08:42:32 +00:00
|
|
|
} else {
|
|
|
|
alertInfoDevices.classList.remove("d-none");
|
2022-05-09 12:40:28 +00:00
|
|
|
}
|
2022-04-29 12:06:09 +00:00
|
|
|
|
2022-05-11 09:09:38 +00:00
|
|
|
if (TableController.getAllDevices().length == TableController.getSelectedDevices().length) {
|
2022-04-29 12:06:09 +00:00
|
|
|
btnSelectAll.checked = true;
|
|
|
|
btnSelectAll.indeterminate = false;
|
2022-05-11 09:09:38 +00:00
|
|
|
} else if(TableController.getAllDevices().length < TableController.getSelectedDevices().length) {
|
|
|
|
btnSelectAll.indeterminate = true;
|
|
|
|
} else {
|
2022-04-29 12:06:09 +00:00
|
|
|
btnSelectAll.checked = false;
|
|
|
|
btnSelectAll.indeterminate = false;
|
|
|
|
}
|
2022-05-11 09:19:56 +00:00
|
|
|
|
|
|
|
if (TableController.getAllDevices().length == 0) {
|
|
|
|
btnSelectAll.checked = false;
|
|
|
|
btnSelectAll.disabled = true;
|
|
|
|
} else {
|
|
|
|
btnSelectAll.disabled = false;
|
|
|
|
}
|
2022-04-29 12:06:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TableController.getAllDevices().forEach(item => {
|
|
|
|
item.addEventListener("click", itemListCheckChanged);
|
|
|
|
})
|
|
|
|
|
|
|
|
btnSelectAll.addEventListener("click", event => {
|
|
|
|
const checkedState = event.target.checked;
|
|
|
|
TableController.getAllDevicesInCurrentPage().forEach(ckeckbox => { ckeckbox.checked = checkedState });
|
2022-05-03 10:13:15 +00:00
|
|
|
itemListCheckChanged()
|
|
|
|
})
|
|
|
|
|
|
|
|
alertInfoDevices.addEventListener("click", () => {
|
2022-05-03 10:52:26 +00:00
|
|
|
const checkState = TableController.getAllDevices().length == TableController.getSelectedDevices().length
|
|
|
|
TableController.getAllDevices().forEach(ckeckbox => { ckeckbox.checked = !checkState });
|
2022-05-03 10:13:15 +00:00
|
|
|
itemListCheckChanged()
|
2022-04-29 12:06:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
// https://github.com/fiduswriter/Simple-DataTables/wiki/Events
|
|
|
|
table.on("datatable.page", () => itemListCheckChanged());
|
|
|
|
table.on("datatable.perpage", () => itemListCheckChanged());
|
|
|
|
table.on("datatable.update", () => itemListCheckChanged());
|
2022-05-11 09:19:56 +00:00
|
|
|
|
|
|
|
itemListCheckChanged();
|
2022-04-29 12:06:09 +00:00
|
|
|
})
|
|
|
|
|
2021-12-30 11:41:37 +00:00
|
|
|
function deviceSelect() {
|
2022-04-29 10:36:42 +00:00
|
|
|
const devices_count = TableController.getSelectedDevices().length;
|
2022-02-17 12:51:27 +00:00
|
|
|
get_device_list();
|
2022-02-03 12:58:54 +00:00
|
|
|
if (devices_count == 0) {
|
2022-02-04 12:22:47 +00:00
|
|
|
$("#addingLotModal .pol").show();
|
2021-12-30 11:41:37 +00:00
|
|
|
$("#addingLotModal .btn-primary").hide();
|
2022-01-05 11:13:44 +00:00
|
|
|
|
2022-02-04 12:22:47 +00:00
|
|
|
$("#removeLotModal .pol").show();
|
2022-01-03 10:32:12 +00:00
|
|
|
$("#removeLotModal .btn-primary").hide();
|
2022-02-03 12:58:54 +00:00
|
|
|
|
2022-02-04 12:22:47 +00:00
|
|
|
$("#addingTagModal .pol").show();
|
2022-01-25 11:53:36 +00:00
|
|
|
$("#addingTagModal .btn-primary").hide();
|
2022-02-03 12:58:54 +00:00
|
|
|
|
2022-02-04 12:22:47 +00:00
|
|
|
$("#actionModal .pol").show();
|
2022-02-03 12:58:54 +00:00
|
|
|
$("#actionModal .btn-primary").hide();
|
|
|
|
|
2022-02-04 12:22:47 +00:00
|
|
|
$("#allocateModal .pol").show();
|
2022-02-03 12:58:54 +00:00
|
|
|
$("#allocateModal .btn-primary").hide();
|
2022-02-07 13:01:38 +00:00
|
|
|
|
|
|
|
$("#datawipeModal .pol").show();
|
|
|
|
$("#datawipeModal .btn-primary").hide();
|
2021-12-30 11:41:37 +00:00
|
|
|
} else {
|
2022-02-04 12:22:47 +00:00
|
|
|
$("#addingLotModal .pol").hide();
|
2021-12-30 11:41:37 +00:00
|
|
|
$("#addingLotModal .btn-primary").show();
|
2022-01-05 11:13:44 +00:00
|
|
|
|
2022-02-04 12:22:47 +00:00
|
|
|
$("#removeLotModal .pol").hide();
|
2022-01-03 10:32:12 +00:00
|
|
|
$("#removeLotModal .btn-primary").show();
|
2022-01-05 11:13:44 +00:00
|
|
|
|
2022-02-04 12:22:47 +00:00
|
|
|
$("#actionModal .pol").hide();
|
2022-01-05 11:13:44 +00:00
|
|
|
$("#actionModal .btn-primary").show();
|
2022-01-10 14:53:11 +00:00
|
|
|
|
2022-02-04 12:22:47 +00:00
|
|
|
$("#allocateModal .pol").hide();
|
2022-01-10 14:53:11 +00:00
|
|
|
$("#allocateModal .btn-primary").show();
|
2022-02-02 12:05:55 +00:00
|
|
|
|
2022-02-07 13:01:38 +00:00
|
|
|
$("#datawipeModal .pol").hide();
|
|
|
|
$("#datawipeModal .btn-primary").show();
|
|
|
|
|
2022-02-04 12:22:47 +00:00
|
|
|
$("#addingTagModal .pol").hide();
|
2022-02-18 10:18:54 +00:00
|
|
|
$("#addingTagModal .btn-primary").show();
|
2021-12-30 11:41:37 +00:00
|
|
|
}
|
|
|
|
}
|
2022-01-03 12:40:30 +00:00
|
|
|
|
2022-03-07 10:24:02 +00:00
|
|
|
function removeLot() {
|
2022-04-29 10:36:42 +00:00
|
|
|
const devices = TableController.getAllDevices();
|
2022-03-07 10:24:02 +00:00
|
|
|
if (devices.length > 0) {
|
|
|
|
$("#btnRemoveLots .text-danger").show();
|
|
|
|
} else {
|
|
|
|
$("#btnRemoveLots .text-danger").hide();
|
|
|
|
}
|
|
|
|
$("#activeRemoveLotModal").click();
|
|
|
|
}
|
|
|
|
|
2022-01-25 13:39:15 +00:00
|
|
|
function removeTag() {
|
2022-04-29 10:36:42 +00:00
|
|
|
const devices = TableController.getSelectedDevices();
|
|
|
|
const devices_id = devices.map(dev => dev.data);
|
2022-03-02 12:08:23 +00:00
|
|
|
if (devices_id.length == 1) {
|
2022-04-20 10:04:53 +00:00
|
|
|
const url = `/inventory/tag/devices/${devices_id[0]}/del/`;
|
2022-01-25 13:39:15 +00:00
|
|
|
window.location.href = url;
|
2022-03-02 12:08:23 +00:00
|
|
|
} else {
|
|
|
|
$("#unlinkTagAlertModal").click();
|
2022-01-25 13:39:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-18 10:18:54 +00:00
|
|
|
function addTag() {
|
2022-04-29 10:36:42 +00:00
|
|
|
const devices = TableController.getSelectedDevices();
|
|
|
|
const devices_id = devices.map(dev => dev.data);
|
2022-03-02 12:08:23 +00:00
|
|
|
if (devices_id.length == 1) {
|
|
|
|
$("#addingTagModal .pol").hide();
|
|
|
|
$("#addingTagModal .btn-primary").show();
|
|
|
|
} else {
|
|
|
|
$("#addingTagModal .pol").show();
|
|
|
|
$("#addingTagModal .btn-primary").hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
$("#addTagAlertModal").click();
|
2022-02-18 10:18:54 +00:00
|
|
|
}
|
|
|
|
|
2022-02-10 12:22:47 +00:00
|
|
|
function newTrade(action) {
|
2022-04-20 10:04:53 +00:00
|
|
|
let title = "Trade "
|
|
|
|
const user_to = $("#user_to").data("email");
|
|
|
|
const user_from = $("#user_from").data("email");
|
|
|
|
if (action == "user_from") {
|
|
|
|
title = "Trade Incoming";
|
|
|
|
$("#user_to").attr("readonly", "readonly");
|
|
|
|
$("#user_from").prop("readonly", false);
|
|
|
|
$("#user_from").val("");
|
2022-02-18 08:30:20 +00:00
|
|
|
$("#user_to").val(user_to);
|
2022-04-20 10:04:53 +00:00
|
|
|
} else if (action == "user_to") {
|
|
|
|
title = "Trade Outgoing";
|
|
|
|
$("#user_from").attr("readonly", "readonly");
|
|
|
|
$("#user_to").prop("readonly", false);
|
|
|
|
$("#user_to").val("");
|
2022-02-18 08:30:20 +00:00
|
|
|
$("#user_from").val(user_from);
|
2022-02-10 12:22:47 +00:00
|
|
|
}
|
2022-02-18 12:37:45 +00:00
|
|
|
$("#tradeLotModal #title-action").html(title);
|
2022-02-10 12:22:47 +00:00
|
|
|
$("#activeTradeModal").click();
|
|
|
|
}
|
|
|
|
|
2022-01-03 12:40:30 +00:00
|
|
|
function newAction(action) {
|
2022-01-05 15:00:13 +00:00
|
|
|
$("#actionModal #type").val(action);
|
2022-02-03 10:44:51 +00:00
|
|
|
$("#actionModal #title-action").html(action);
|
2022-02-04 12:22:47 +00:00
|
|
|
deviceSelect();
|
2022-01-05 15:00:13 +00:00
|
|
|
$("#activeActionModal").click();
|
2022-01-03 12:40:30 +00:00
|
|
|
}
|
2022-01-10 14:53:11 +00:00
|
|
|
|
|
|
|
function newAllocate(action) {
|
|
|
|
$("#allocateModal #type").val(action);
|
2022-02-03 10:44:51 +00:00
|
|
|
$("#allocateModal #title-action").html(action);
|
2022-02-04 12:22:47 +00:00
|
|
|
deviceSelect();
|
2022-01-10 14:53:11 +00:00
|
|
|
$("#activeAllocateModal").click();
|
|
|
|
}
|
2022-02-04 10:30:29 +00:00
|
|
|
|
2022-02-07 13:01:38 +00:00
|
|
|
function newDataWipe(action) {
|
|
|
|
$("#datawipeModal #type").val(action);
|
|
|
|
$("#datawipeModal #title-action").html(action);
|
|
|
|
deviceSelect();
|
|
|
|
$("#activeDatawipeModal").click();
|
|
|
|
}
|
|
|
|
|
2022-02-04 10:30:29 +00:00
|
|
|
function get_device_list() {
|
2022-04-29 10:36:42 +00:00
|
|
|
const devices = TableController.getSelectedDevices();
|
2022-02-04 10:30:29 +00:00
|
|
|
|
|
|
|
/* Insert the correct count of devices in actions form */
|
2022-04-20 10:04:53 +00:00
|
|
|
const devices_count = devices.length;
|
2022-02-07 13:01:38 +00:00
|
|
|
$("#datawipeModal .devices-count").html(devices_count);
|
2022-02-04 10:30:29 +00:00
|
|
|
$("#allocateModal .devices-count").html(devices_count);
|
|
|
|
$("#actionModal .devices-count").html(devices_count);
|
|
|
|
|
|
|
|
/* Insert the correct value in the input devicesList */
|
2022-04-20 10:04:53 +00:00
|
|
|
const devices_id = $.map(devices, (x) => $(x).attr("data")).join(",");
|
|
|
|
$.map($(".devicesList"), (x) => {
|
2022-02-04 10:30:29 +00:00
|
|
|
$(x).val(devices_id);
|
|
|
|
});
|
|
|
|
|
|
|
|
/* Create a list of devices for human representation */
|
2022-04-20 10:04:53 +00:00
|
|
|
const computer = {
|
2022-02-04 10:30:29 +00:00
|
|
|
"Desktop": "<i class='bi bi-building'></i>",
|
|
|
|
"Laptop": "<i class='bi bi-laptop'></i>",
|
|
|
|
};
|
2022-04-29 10:36:42 +00:00
|
|
|
|
2022-04-20 10:04:53 +00:00
|
|
|
list_devices = devices.map((x) => {
|
2022-04-29 10:36:42 +00:00
|
|
|
let typ = $(x).data("device-type");
|
|
|
|
const manuf = $(x).data("device-manufacturer");
|
|
|
|
const dhid = $(x).data("device-dhid");
|
2022-02-04 10:30:29 +00:00
|
|
|
if (computer[typ]) {
|
|
|
|
typ = computer[typ];
|
|
|
|
};
|
2022-04-28 15:00:23 +00:00
|
|
|
return `${typ} ${manuf} ${dhid}`;
|
2022-02-04 10:30:29 +00:00
|
|
|
});
|
|
|
|
|
2022-04-20 10:04:53 +00:00
|
|
|
description = $.map(list_devices, (x) => x).join(", ");
|
2022-02-04 10:30:29 +00:00
|
|
|
$(".enumeration-devices").html(description);
|
|
|
|
}
|
2022-02-24 13:15:58 +00:00
|
|
|
|
|
|
|
function export_file(type_file) {
|
2022-04-29 10:36:42 +00:00
|
|
|
const devices = TableController.getSelectedDevices();
|
2022-04-20 10:04:53 +00:00
|
|
|
const devices_id = $.map(devices, (x) => $(x).attr("data-device-dhid")).join(",");
|
2022-04-28 15:00:23 +00:00
|
|
|
if (devices_id) {
|
2022-04-20 10:04:53 +00:00
|
|
|
const url = `/inventory/export/${type_file}/?ids=${devices_id}`;
|
2022-02-24 13:15:58 +00:00
|
|
|
window.location.href = url;
|
2022-02-28 10:19:22 +00:00
|
|
|
} else {
|
|
|
|
$("#exportAlertModal").click();
|
2022-02-24 13:15:58 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-07 11:28:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2022-04-12 08:35:19 +00:00
|
|
|
* Reactive lots button
|
2022-04-07 11:28:07 +00:00
|
|
|
*/
|
|
|
|
async function processSelectedDevices() {
|
|
|
|
class Actions {
|
|
|
|
|
2022-04-08 10:37:10 +00:00
|
|
|
constructor() {
|
|
|
|
this.list = []; // list of petitions of requests @item --> {type: ["Remove" | "Add"], "LotID": string, "devices": number[]}
|
2022-04-07 11:28:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Manage the actions that will be performed when applying the changes
|
2022-04-28 13:29:57 +00:00
|
|
|
* @param {EventSource} ev event (Should be a checkbox type)
|
|
|
|
* @param {Lot} lot lot id
|
2022-04-28 16:29:18 +00:00
|
|
|
* @param {Device[]} selectedDevices device id
|
2022-04-07 11:28:07 +00:00
|
|
|
*/
|
2022-04-28 16:29:18 +00:00
|
|
|
manage(event, lot, selectedDevices) {
|
2022-04-08 10:37:10 +00:00
|
|
|
event.preventDefault();
|
2022-04-28 13:29:57 +00:00
|
|
|
const lotID = lot.id;
|
2022-04-13 11:53:22 +00:00
|
|
|
const srcElement = event.srcElement.parentElement.children[0]
|
|
|
|
const checked = !srcElement.checked;
|
2022-04-07 11:28:07 +00:00
|
|
|
|
2022-04-28 13:32:35 +00:00
|
|
|
const found = this.list.filter(list => list.lot.id == lotID)[0];
|
2022-04-07 11:28:07 +00:00
|
|
|
|
|
|
|
if (checked) {
|
2022-04-28 13:32:35 +00:00
|
|
|
if (found && found.type == "Remove") {
|
|
|
|
found.type = "Add";
|
2022-04-07 11:28:07 +00:00
|
|
|
} else {
|
2022-04-28 16:29:18 +00:00
|
|
|
this.list.push({ type: "Add", lot, devices: selectedDevices });
|
2022-04-07 11:28:07 +00:00
|
|
|
}
|
2022-04-28 13:32:35 +00:00
|
|
|
} else if (found && found.type == "Add") {
|
2022-04-28 15:00:23 +00:00
|
|
|
found.type = "Remove";
|
|
|
|
} else {
|
2022-04-28 16:29:18 +00:00
|
|
|
this.list.push({ type: "Remove", lot, devices: selectedDevices });
|
2022-04-28 15:00:23 +00:00
|
|
|
}
|
2022-04-07 11:28:07 +00:00
|
|
|
|
|
|
|
if (this.list.length > 0) {
|
2022-04-08 10:37:10 +00:00
|
|
|
document.getElementById("ApplyDeviceLots").classList.remove("disabled");
|
2022-04-07 11:28:07 +00:00
|
|
|
} else {
|
2022-04-08 10:37:10 +00:00
|
|
|
document.getElementById("ApplyDeviceLots").classList.add("disabled");
|
2022-04-07 11:28:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates notification to give feedback to user
|
|
|
|
* @param {string} title notification title
|
|
|
|
* @param {string | null} toastText notification text
|
|
|
|
* @param {boolean} isError defines if a toast is a error
|
|
|
|
*/
|
|
|
|
notifyUser(title, toastText, isError) {
|
2022-04-20 10:04:53 +00:00
|
|
|
const toast = document.createElement("div");
|
2022-04-28 15:00:23 +00:00
|
|
|
toast.classList = `alert alert-dismissible fade show ${isError ? "alert-danger" : "alert-success"}`;
|
2022-04-08 10:37:10 +00:00
|
|
|
toast.attributes["data-autohide"] = !isError;
|
2022-04-20 10:04:53 +00:00
|
|
|
toast.attributes.role = "alert";
|
2022-04-08 10:37:10 +00:00
|
|
|
toast.style = "margin-left: auto; width: fit-content;";
|
|
|
|
toast.innerHTML = `<strong>${title}</strong><button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>`;
|
2022-04-07 11:28:07 +00:00
|
|
|
if (toastText && toastText.length > 0) {
|
2022-04-08 10:37:10 +00:00
|
|
|
toast.innerHTML += `<br>${toastText}`;
|
2022-04-07 11:28:07 +00:00
|
|
|
}
|
|
|
|
|
2022-04-08 10:37:10 +00:00
|
|
|
document.getElementById("NotificationsContainer").appendChild(toast);
|
2022-04-07 11:28:07 +00:00
|
|
|
if (!isError) {
|
2022-04-08 10:37:10 +00:00
|
|
|
setTimeout(() => toast.classList.remove("show"), 3000);
|
2022-04-07 11:28:07 +00:00
|
|
|
}
|
2022-04-08 10:37:10 +00:00
|
|
|
setTimeout(() => document.getElementById("NotificationsContainer").innerHTML == "", 3500);
|
2022-04-07 11:28:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get actions and execute call request to add or remove devices from lots
|
|
|
|
*/
|
|
|
|
doActions() {
|
2022-04-20 10:04:53 +00:00
|
|
|
let requestCount = 0; // This is for count all requested api count, to perform reRender of table device list
|
2022-04-07 11:28:07 +00:00
|
|
|
this.list.forEach(async action => {
|
|
|
|
if (action.type == "Add") {
|
|
|
|
try {
|
2022-05-03 09:06:05 +00:00
|
|
|
const devicesIDs = action.devices.filter(dev => !action.lot.devices.includes(dev.id)).map(dev => dev.id)
|
|
|
|
await Api.devices_add(action.lot.id, devicesIDs);
|
2022-05-06 17:44:59 +00:00
|
|
|
this.notifyUser("Devices sucefully added to selected lot/s", "", false);
|
2022-04-07 11:28:07 +00:00
|
|
|
} catch (error) {
|
2022-04-08 10:37:10 +00:00
|
|
|
this.notifyUser("Failed to add devices to selected lot/s", error.responseJSON.message, true);
|
2022-04-07 11:28:07 +00:00
|
|
|
}
|
|
|
|
} else if (action.type == "Remove") {
|
|
|
|
try {
|
2022-05-03 09:06:05 +00:00
|
|
|
const devicesIDs = action.devices.filter(dev => action.lot.devices.includes(dev.id)).map(dev => dev.id)
|
|
|
|
await Api.devices_remove(action.lot.id, devicesIDs);
|
2022-04-08 10:37:10 +00:00
|
|
|
this.notifyUser("Devices sucefully removed from selected lot/s", "", false);
|
2022-04-07 11:28:07 +00:00
|
|
|
} catch (error) {
|
2022-05-06 17:44:59 +00:00
|
|
|
this.notifyUser("Failed to remove devices from selected lot/s", error.responseJSON.message, true);
|
2022-04-07 11:28:07 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-11 08:35:26 +00:00
|
|
|
requestCount += 1
|
|
|
|
if (requestCount == this.list.length) {
|
|
|
|
this.reRenderTable();
|
2022-04-12 12:06:41 +00:00
|
|
|
this.list = [];
|
2022-04-11 08:35:26 +00:00
|
|
|
}
|
2022-04-07 11:28:07 +00:00
|
|
|
})
|
2022-04-28 14:58:44 +00:00
|
|
|
$("#confirmLotsModal").modal("hide"); // Hide dialog when click "Save changes"
|
2022-04-12 12:06:41 +00:00
|
|
|
document.getElementById("dropDownLotsSelector").classList.remove("show");
|
2022-04-11 08:35:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Re-render list in table
|
|
|
|
*/
|
|
|
|
async reRenderTable() {
|
2022-04-20 10:04:53 +00:00
|
|
|
const newRequest = await Api.doRequest(window.location)
|
2022-04-11 08:35:26 +00:00
|
|
|
|
2022-04-20 10:04:53 +00:00
|
|
|
const tmpDiv = document.createElement("div")
|
2022-04-11 08:35:26 +00:00
|
|
|
tmpDiv.innerHTML = newRequest
|
|
|
|
|
2022-04-20 10:04:53 +00:00
|
|
|
const newTable = Array.from(tmpDiv.querySelectorAll("table.table > tbody > tr .deviceSelect")).map(x => x.attributes["data-device-dhid"].value)
|
2022-04-12 09:39:53 +00:00
|
|
|
|
2022-04-29 11:27:46 +00:00
|
|
|
// 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];
|
2022-04-28 13:01:39 +00:00
|
|
|
if (!newTable.includes(row.querySelector("input").attributes["data-device-dhid"].value)) {
|
2022-04-29 11:27:46 +00:00
|
|
|
rowsToRemove.push(i)
|
2022-04-12 09:39:53 +00:00
|
|
|
}
|
2022-04-29 11:27:46 +00:00
|
|
|
}
|
|
|
|
table.rows().remove(rowsToRemove);
|
2022-04-29 11:33:44 +00:00
|
|
|
|
|
|
|
// Restore state of checkbox
|
|
|
|
const selectAllBTN = document.getElementById("SelectAllBTN");
|
|
|
|
selectAllBTN.checked = false;
|
|
|
|
selectAllBTN.indeterminate = false;
|
2022-04-07 11:28:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-20 10:04:53 +00:00
|
|
|
let eventClickActions;
|
2022-04-07 11:28:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates a list item with a correspondient checkbox state
|
2022-04-28 14:58:44 +00:00
|
|
|
* @param {Object} lot Lot model server
|
2022-04-28 16:29:18 +00:00
|
|
|
* @param {Device[]} selectedDevices list selected devices
|
2022-05-06 17:44:59 +00:00
|
|
|
* @param {HTMLElement} elementTarget
|
2022-04-28 16:29:18 +00:00
|
|
|
* @param {Action[]} actions
|
2022-04-07 11:28:07 +00:00
|
|
|
*/
|
2022-04-28 16:29:18 +00:00
|
|
|
function templateLot(lot, selectedDevices, elementTarget, actions) {
|
2022-04-07 11:28:07 +00:00
|
|
|
elementTarget.innerHTML = ""
|
2022-04-28 15:00:23 +00:00
|
|
|
const { id, name, state } = lot;
|
2022-04-07 11:28:07 +00:00
|
|
|
|
2022-04-21 17:53:27 +00:00
|
|
|
const htmlTemplate = `<input class="form-check-input" type="checkbox" id="${id}" style="width: 20px; height: 20px; margin-right: 7px;">
|
|
|
|
<label class="form-check-label" for="${id}">${name}</label>`;
|
2022-04-07 11:28:07 +00:00
|
|
|
|
2022-04-20 10:04:53 +00:00
|
|
|
const doc = document.createElement("li");
|
2022-04-08 10:37:10 +00:00
|
|
|
doc.innerHTML = htmlTemplate;
|
2022-04-07 11:28:07 +00:00
|
|
|
|
2022-04-21 17:53:27 +00:00
|
|
|
switch (state) {
|
|
|
|
case "true":
|
|
|
|
doc.children[0].checked = true;
|
|
|
|
break;
|
|
|
|
case "false":
|
|
|
|
doc.children[0].checked = false;
|
|
|
|
break;
|
|
|
|
case "indetermined":
|
|
|
|
doc.children[0].indeterminate = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
console.warn("This shouldn't be happend: Lot without state: ", lot);
|
|
|
|
break;
|
2022-04-07 11:28:07 +00:00
|
|
|
}
|
2022-04-21 17:53:27 +00:00
|
|
|
|
2022-04-28 13:29:57 +00:00
|
|
|
doc.children[0].addEventListener("mouseup", (ev) => actions.manage(ev, lot, selectedDevices));
|
|
|
|
doc.children[1].addEventListener("mouseup", (ev) => actions.manage(ev, lot, selectedDevices));
|
2022-04-08 10:37:10 +00:00
|
|
|
elementTarget.append(doc);
|
2022-04-07 11:28:07 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 10:04:53 +00:00
|
|
|
const listHTML = $("#LotsSelector")
|
2022-04-07 11:28:07 +00:00
|
|
|
|
2022-04-28 13:29:57 +00:00
|
|
|
// Get selected devices
|
2022-04-29 10:36:42 +00:00
|
|
|
const selectedDevicesID = TableController.ProcessTR(TableController.getSelectedDevices()).map(item => item.data)
|
2022-04-28 16:29:18 +00:00
|
|
|
|
|
|
|
if (selectedDevicesID.length <= 0) {
|
2022-04-28 13:29:57 +00:00
|
|
|
listHTML.html("<li style=\"color: red; text-align: center\">No devices selected</li>");
|
|
|
|
return;
|
|
|
|
}
|
2022-04-07 11:28:07 +00:00
|
|
|
|
|
|
|
// Initialize Actions list, and set checkbox triggers
|
2022-04-20 10:04:53 +00:00
|
|
|
const actions = new Actions();
|
2022-04-07 11:28:07 +00:00
|
|
|
if (eventClickActions) {
|
2022-04-08 10:37:10 +00:00
|
|
|
document.getElementById("ApplyDeviceLots").removeEventListener(eventClickActions);
|
2022-04-07 11:28:07 +00:00
|
|
|
}
|
2022-04-28 16:43:38 +00:00
|
|
|
|
2022-04-28 14:58:44 +00:00
|
|
|
eventClickActions = document.getElementById("ApplyDeviceLots").addEventListener("click", () => {
|
|
|
|
const modal = $("#confirmLotsModal")
|
|
|
|
modal.modal({ keyboard: false })
|
|
|
|
|
|
|
|
let list_changes_html = "";
|
|
|
|
// {type: ["Remove" | "Add"], "LotID": string, "devices": number[]}
|
|
|
|
actions.list.forEach(action => {
|
|
|
|
let type;
|
|
|
|
let devices;
|
|
|
|
if (action.type == "Add") {
|
|
|
|
type = "success";
|
2022-04-28 16:43:38 +00:00
|
|
|
devices = action.devices.filter(dev => !action.lot.devices.includes(dev.id)) // Only show affected devices
|
2022-04-28 14:58:44 +00:00
|
|
|
} else {
|
|
|
|
type = "danger";
|
2022-04-28 16:43:38 +00:00
|
|
|
devices = action.devices.filter(dev => action.lot.devices.includes(dev.id)) // Only show affected devices
|
2022-04-28 14:58:44 +00:00
|
|
|
}
|
|
|
|
list_changes_html += `
|
|
|
|
<div class="card border-primary mb-3 w-100">
|
|
|
|
<div class="card-header" title="${action.lotID}">${action.lot.name}</div>
|
|
|
|
<div class="card-body pt-3">
|
|
|
|
<p class="card-text">
|
|
|
|
${devices.map(item => {
|
2022-04-28 16:43:38 +00:00
|
|
|
const name = `${item.type} ${item.manufacturer} ${item.model}`
|
|
|
|
return `<span class="badge bg-${type}" title="${name}">${item.devicehubID}</span>`;
|
2022-04-28 15:00:23 +00:00
|
|
|
}).join(" ")}
|
2022-04-28 14:58:44 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>`;
|
|
|
|
})
|
|
|
|
|
|
|
|
modal.find(".modal-body").html(list_changes_html)
|
|
|
|
|
|
|
|
const el = document.getElementById("SaveAllActions")
|
|
|
|
const elClone = el.cloneNode(true);
|
|
|
|
el.parentNode.replaceChild(elClone, el);
|
|
|
|
elClone.addEventListener("click", () => actions.doActions())
|
2022-04-28 15:00:23 +00:00
|
|
|
|
2022-04-28 14:58:44 +00:00
|
|
|
modal.modal("show")
|
|
|
|
|
|
|
|
// actions.doActions();
|
|
|
|
});
|
2022-04-08 10:37:10 +00:00
|
|
|
document.getElementById("ApplyDeviceLots").classList.add("disabled");
|
2022-04-07 11:28:07 +00:00
|
|
|
|
|
|
|
try {
|
2022-04-20 10:04:53 +00:00
|
|
|
listHTML.html("<li style=\"text-align: center\"><div class=\"spinner-border text-info\" style=\"margin: auto\" role=\"status\"></div></li>")
|
2022-04-28 16:29:18 +00:00
|
|
|
const selectedDevices = await Api.get_devices(selectedDevicesID);
|
2022-04-20 10:04:53 +00:00
|
|
|
let lots = await Api.get_lots();
|
2022-04-07 11:28:07 +00:00
|
|
|
|
|
|
|
lots = lots.map(lot => {
|
2022-04-28 16:29:18 +00:00
|
|
|
lot.devices = selectedDevices
|
2022-04-07 11:28:07 +00:00
|
|
|
.filter(device => device.lots.filter(devicelot => devicelot.id == lot.id).length > 0)
|
2022-04-08 10:37:10 +00:00
|
|
|
.map(device => parseInt(device.id));
|
2022-04-21 17:53:27 +00:00
|
|
|
|
2022-04-28 13:29:57 +00:00
|
|
|
switch (lot.devices.length) {
|
2022-04-21 17:53:27 +00:00
|
|
|
case 0:
|
|
|
|
lot.state = "false";
|
|
|
|
break;
|
2022-04-28 16:29:18 +00:00
|
|
|
case selectedDevicesID.length:
|
2022-04-21 17:53:27 +00:00
|
|
|
lot.state = "true";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
lot.state = "indetermined";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2022-04-08 10:37:10 +00:00
|
|
|
return lot;
|
2022-04-07 11:28:07 +00:00
|
|
|
})
|
|
|
|
|
2022-04-21 18:04:42 +00:00
|
|
|
let lotsList = [];
|
2022-04-28 15:00:23 +00:00
|
|
|
lotsList.push(lots.filter(lot => lot.state == "true").sort((a, b) => a.name.localeCompare(b.name)));
|
|
|
|
lotsList.push(lots.filter(lot => lot.state == "indetermined").sort((a, b) => a.name.localeCompare(b.name)));
|
|
|
|
lotsList.push(lots.filter(lot => lot.state == "false").sort((a, b) => a.name.localeCompare(b.name)));
|
2022-04-21 17:59:10 +00:00
|
|
|
lotsList = lotsList.flat(); // flat array
|
2022-04-21 17:53:27 +00:00
|
|
|
|
2022-04-20 10:04:53 +00:00
|
|
|
listHTML.html("");
|
2022-04-28 16:29:18 +00:00
|
|
|
lotsList.forEach(lot => templateLot(lot, selectedDevices, listHTML, actions));
|
2022-04-07 11:28:07 +00:00
|
|
|
} catch (error) {
|
2022-04-08 10:37:10 +00:00
|
|
|
console.log(error);
|
2022-04-20 10:04:53 +00:00
|
|
|
listHTML.html("<li style=\"color: red; text-align: center\">Error feching devices and lots<br>(see console for more details)</li>");
|
2022-04-07 11:28:07 +00:00
|
|
|
}
|
2022-04-08 10:37:10 +00:00
|
|
|
}
|