This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
devicehub-teal/ereuse_devicehub/static/js/main_inventory.js

384 lines
15 KiB
JavaScript
Raw Normal View History

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") {
$("#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);
} else if (show_trade_form != "None") {
$("#tradeLotModal .btn-primary").show();
newTrade(show_trade_form);
} else {
$(".deviceSelect").on("change", deviceSelect);
}
// $('#selectLot').selectpicker();
})
function deviceSelect() {
2022-04-20 10:04:53 +00:00
const devices_count = $(".deviceSelect").filter(":checked").length;
2022-02-17 12:51:27 +00:00
get_device_list();
2022-02-03 12:58:54 +00:00
if (devices_count == 0) {
$("#addingLotModal .pol").show();
$("#addingLotModal .btn-primary").hide();
$("#removeLotModal .pol").show();
2022-01-03 10:32:12 +00:00
$("#removeLotModal .btn-primary").hide();
2022-02-03 12:58:54 +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
$("#actionModal .pol").show();
2022-02-03 12:58:54 +00:00
$("#actionModal .btn-primary").hide();
$("#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();
} else {
$("#addingLotModal .pol").hide();
$("#addingLotModal .btn-primary").show();
$("#removeLotModal .pol").hide();
2022-01-03 10:32:12 +00:00
$("#removeLotModal .btn-primary").show();
$("#actionModal .pol").hide();
$("#actionModal .btn-primary").show();
2022-01-10 14:53:11 +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();
$("#addingTagModal .pol").hide();
$("#addingTagModal .btn-primary").show();
}
}
2022-01-03 12:40:30 +00:00
function removeLot() {
2022-04-20 10:04:53 +00:00
const devices = $(".deviceSelect");
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-20 10:04:53 +00:00
const devices = $(".deviceSelect").filter(":checked");
const devices_id = $.map(devices, (x) => $(x).attr("data"));
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;
} else {
$("#unlinkTagAlertModal").click();
2022-01-25 13:39:15 +00:00
}
}
function addTag() {
2022-04-20 10:04:53 +00:00
const devices = $(".deviceSelect").filter(":checked");
const devices_id = $.map(devices, (x) => $(x).attr("data"));
if (devices_id.length == 1) {
$("#addingTagModal .pol").hide();
$("#addingTagModal .btn-primary").show();
} else {
$("#addingTagModal .pol").show();
$("#addingTagModal .btn-primary").hide();
}
$("#addTagAlertModal").click();
}
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("");
$("#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("");
$("#user_from").val(user_from);
2022-02-10 12:22:47 +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) {
$("#actionModal #type").val(action);
$("#actionModal #title-action").html(action);
deviceSelect();
$("#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);
$("#allocateModal #title-action").html(action);
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-20 10:04:53 +00:00
const devices = $(".deviceSelect").filter(":checked");
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-20 10:04:53 +00:00
list_devices = devices.map((x) => {
let typ = $(devices[x]).data("device-type");
const manuf = $(devices[x]).data("device-manufacturer");
const dhid = $(devices[x]).data("device-dhid");
2022-02-04 10:30:29 +00:00
if (computer[typ]) {
typ = computer[typ];
};
2022-04-20 10:04:53 +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-20 10:04:53 +00:00
const devices = $(".deviceSelect").filter(":checked");
const devices_id = $.map(devices, (x) => $(x).attr("data-device-dhid")).join(",");
2022-04-11 08:42:56 +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;
} else {
$("#exportAlertModal").click();
2022-02-24 13:15:58 +00:00
}
}
2022-04-07 11:28:07 +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
* @param {*} ev event (Should be a checkbox type)
2022-04-07 11:28:07 +00:00
* @param {string} lotID lot id
* @param {number} deviceID device id
*/
manage(event, lotID, deviceListID) {
2022-04-08 10:37:10 +00:00
event.preventDefault();
2022-04-13 11:53:22 +00:00
const srcElement = event.srcElement.parentElement.children[0]
const indeterminate = srcElement.indeterminate;
const checked = !srcElement.checked;
2022-04-07 11:28:07 +00:00
2022-04-20 10:04:53 +00:00
const found = this.list.filter(list => list.lotID == lotID)[0];
const foundIndex = found != undefined ? this.list.findLastIndex(x => x.lotID == found.lotID) : -1;
2022-04-07 11:28:07 +00:00
if (checked) {
if (found != undefined && found.type == "Remove") {
if (found.isFromIndeterminate == true) {
2022-04-08 10:37:10 +00:00
found.type = "Add";
this.list[foundIndex] = found;
} else {
2022-04-08 10:37:10 +00:00
this.list = this.list.filter(list => list.lotID != lotID);
}
2022-04-07 11:28:07 +00:00
} else {
2022-04-20 10:04:53 +00:00
this.list.push({ type: "Add", lotID, devices: deviceListID, isFromIndeterminate: indeterminate });
2022-04-07 11:28:07 +00:00
}
2022-04-20 10:04:53 +00:00
} else if (found != undefined && found.type == "Add") {
if (found.isFromIndeterminate == true) {
2022-04-08 10:37:10 +00:00
found.type = "Remove";
this.list[foundIndex] = found;
} else {
2022-04-08 10:37:10 +00:00
this.list = this.list.filter(list => list.lotID != lotID);
}
2022-04-07 11:28:07 +00:00
} else {
2022-04-20 10:04:53 +00:00
this.list.push({ type: "Remove", lotID, devices: deviceListID, isFromIndeterminate: indeterminate });
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");
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-04-08 10:37:10 +00:00
await Api.devices_add(action.lotID, action.devices);
this.notifyUser("Devices sucefully aded 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-04-08 10:37:10 +00:00
await Api.devices_remove(action.lotID, action.devices);
this.notifyUser("Devices sucefully removed from selected lot/s", "", false);
2022-04-07 11:28:07 +00:00
} catch (error) {
2022-04-08 10:37:10 +00:00
this.notifyUser("Fail 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-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 oldTable = Array.from(document.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)
for (let i = 0; i < oldTable.length; i++) {
if (!newTable.includes(oldTable[i])) {
// variable from device_list.html --> See: ereuse_devicehub\templates\inventory\device_list.html (Ln: 411)
table.rows().remove(i)
}
}
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
* @param {String} lotID
* @param {String} lotName
* @param {Array<number>} selectedDevicesIDs
* @param {HTMLElement} target
*/
function templateLot(lotID, lot, selectedDevicesIDs, elementTarget, actions) {
elementTarget.innerHTML = ""
2022-04-20 10:04:53 +00:00
const htmlTemplate = `<input class="form-check-input" type="checkbox" id="${lotID}" style="width: 20px; height: 20px; margin-right: 7px;">
2022-04-07 11:28:07 +00:00
<label class="form-check-label" for="${lotID}">${lot.name}</label>`;
2022-04-20 10:04:53 +00:00
const existLotList = selectedDevicesIDs.map(selected => lot.devices.includes(selected));
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
if (selectedDevicesIDs.length <= 0) {
2022-04-08 10:37:10 +00:00
doc.children[0].disabled = true;
2022-04-07 11:28:07 +00:00
} else if (existLotList.every(value => value == true)) {
2022-04-08 10:37:10 +00:00
doc.children[0].checked = true;
2022-04-07 11:28:07 +00:00
} else if (existLotList.every(value => value == false)) {
2022-04-08 10:37:10 +00:00
doc.children[0].checked = false;
2022-04-07 11:28:07 +00:00
} else {
doc.children[0].indeterminate = true;
}
2022-04-08 10:37:10 +00:00
doc.children[0].addEventListener('mouseup', (ev) => actions.manage(ev, lotID, selectedDevicesIDs));
2022-04-13 11:53:22 +00:00
doc.children[1].addEventListener('mouseup', (ev) => actions.manage(ev, lotID, selectedDevicesIDs));
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
// Get selected devices
2022-04-20 10:04:53 +00:00
const selectedDevicesIDs = $.map($(".deviceSelect").filter(":checked"), (x) => parseInt($(x).attr("data")));
2022-04-07 11:28:07 +00:00
if (selectedDevicesIDs.length <= 0) {
2022-04-20 10:04:53 +00:00
listHTML.html("<li style=\"color: red; text-align: center\">No devices selected</li>");
2022-04-08 10:37:10 +00:00
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-08 10:37:10 +00:00
eventClickActions = document.getElementById("ApplyDeviceLots").addEventListener("click", () => actions.doActions());
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>")
const devices = await Api.get_devices(selectedDevicesIDs);
let lots = await Api.get_lots();
2022-04-07 11:28:07 +00:00
lots = lots.map(lot => {
lot.devices = devices
.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));
return lot;
2022-04-07 11:28:07 +00:00
})
2022-04-20 10:04:53 +00:00
listHTML.html("");
2022-04-08 10:37:10 +00:00
lots.forEach(lot => templateLot(lot.id, lot, selectedDevicesIDs, 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
}