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

444 lines
16 KiB
JavaScript
Raw Normal View History

2022-04-11 08:42:56 +00:00
$(document).ready(function() {
2022-02-07 13:01:38 +00:00
var show_allocate_form = $("#allocateModal").data('show-action-form');
var show_datawipe_form = $("#datawipeModal").data('show-action-form');
var 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-02-04 10:30:29 +00:00
var 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() {
var 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() {
var devices = $(".deviceSelect").filter(':checked');
2022-04-11 08:42:56 +00:00
var devices_id = $.map(devices, function(x) { return $(x).attr('data')});
if (devices_id.length == 1) {
2022-04-11 08:42:56 +00:00
var 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() {
var devices = $(".deviceSelect").filter(':checked');
2022-04-11 08:42:56 +00:00
var devices_id = $.map(devices, function(x) { return $(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) {
var title = "Trade "
var user_to = $("#user_to").data("email");
var user_from = $("#user_from").data("email");
if (action == 'user_from') {
2022-02-10 12:22:47 +00:00
title = 'Trade Incoming';
$("#user_to").attr('readonly', 'readonly');
$("#user_from").prop('readonly', false);
$("#user_from").val('');
$("#user_to").val(user_to);
} else if (action == 'user_to') {
2022-02-10 12:22:47 +00:00
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() {
var devices = $(".deviceSelect").filter(':checked');
/* Insert the correct count of devices in actions form */
var 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-11 08:42:56 +00:00
var devices_id = $.map(devices, function(x) { return $(x).attr('data')}).join(",");
$.map($(".devicesList"), function(x) {
2022-02-04 10:30:29 +00:00
$(x).val(devices_id);
});
/* Create a list of devices for human representation */
var computer = {
"Desktop": "<i class='bi bi-building'></i>",
"Laptop": "<i class='bi bi-laptop'></i>",
};
list_devices = devices.map(function (x) {
var typ = $(devices[x]).data("device-type");
var manuf = $(devices[x]).data("device-manufacturer");
var dhid = $(devices[x]).data("device-dhid");
if (computer[typ]) {
typ = computer[typ];
};
return typ + " " + manuf + " " + dhid;
});
2022-04-11 08:42:56 +00:00
description = $.map(list_devices, function(x) { return 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) {
var devices = $(".deviceSelect").filter(':checked');
2022-04-11 08:42:56 +00:00
var devices_id = $.map(devices, function(x) { return $(x).attr('data-device-dhid')}).join(",");
if (devices_id){
var 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
/**
* Añade reactividad al botón de lotes
*/
async function processSelectedDevices() {
const Api = {
/**
* get lots id
* @returns get lots
*/
async get_lots() {
2022-04-08 10:37:10 +00:00
var request = await this.doRequest(API_URLS.lots, "GET", null);
if (request != undefined) return request.items;
throw request;
2022-04-07 11:28:07 +00:00
},
/**
* Get filtered devices info
* @param {number[]} ids devices ids
* @returns full detailed device list
*/
async get_devices(ids) {
2022-04-08 10:37:10 +00:00
var request = await this.doRequest(API_URLS.devices + '?filter={"id": [' + ids.toString() + ']}', "GET", null);
if (request != undefined) return request.items;
throw request;
2022-04-07 11:28:07 +00:00
},
/**
* Add devices to lot
* @param {number} lotID lot id
* @param {number[]} listDevices list devices id
*/
async devices_add(lotID, listDevices) {
2022-04-08 10:37:10 +00:00
var queryURL = API_URLS.devices_modify.replace("UUID", lotID) + "?" + listDevices.map(deviceID => "id=" + deviceID).join("&");
return await Api.doRequest(queryURL, "POST", null);
2022-04-07 11:28:07 +00:00
},
/**
* Remove devices from a lot
* @param {number} lotID lot id
* @param {number[]} listDevices list devices id
*/
async devices_remove(lotID, listDevices) {
2022-04-08 10:37:10 +00:00
var queryURL = API_URLS.devices_modify.replace("UUID", lotID) + "?" + listDevices.map(deviceID => "id=" + deviceID).join("&");
return await Api.doRequest(queryURL, "DELETE", null);
2022-04-07 11:28:07 +00:00
},
/**
*
* @param {string} url URL to be requested
* @param {String} type Action type
* @param {String | Object} body body content
* @returns
*/
async doRequest(url, type, body) {
var result;
try {
result = await $.ajax({
url: url,
type: type,
2022-04-08 10:37:10 +00:00
headers: { "Authorization": API_URLS.Auth_Token },
2022-04-07 11:28:07 +00:00
body: body
});
2022-04-08 10:37:10 +00:00
return result;
2022-04-07 11:28:07 +00:00
} catch (error) {
2022-04-08 10:37:10 +00:00
console.error(error);
throw error;
2022-04-07 11:28:07 +00:00
}
}
}
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();
const indeterminate = event.srcElement.indeterminate;
const checked = !event.srcElement.checked;
2022-04-07 11:28:07 +00:00
2022-04-08 10:37:10 +00:00
var found = this.list.filter(list => list.lotID == lotID)[0];
var 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-08 10:37:10 +00:00
this.list.push({ type: "Add", lotID: lotID, devices: deviceListID, isFromIndeterminate: indeterminate });
2022-04-07 11:28:07 +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-08 10:37:10 +00:00
this.list.push({ type: "Remove", lotID: 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-08 10:37:10 +00:00
let toast = document.createElement("div");
toast.classList = "alert alert-dismissible fade show " + (isError ? "alert-danger" : "alert-success");
toast.attributes["data-autohide"] = !isError;
toast.attributes["role"] = "alert";
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-11 08:35:26 +00:00
var 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:42:56 +00:00
2022-04-11 08:35:26 +00:00
requestCount += 1
if (requestCount == this.list.length) {
this.reRenderTable();
this.list = []
}
2022-04-07 11:28:07 +00:00
})
2022-04-11 08:35:26 +00:00
}
/**
* Re-render list in table
*/
async reRenderTable() {
var newRequest = await Api.doRequest(window.location)
var tmpDiv = document.createElement("div")
tmpDiv.innerHTML = newRequest
document.querySelector("table.table > tbody").innerHTML = tmpDiv.querySelector("table.table > tbody").innerHTML
2022-04-07 11:28:07 +00:00
}
}
var eventClickActions;
/**
* 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 = ""
var htmlTemplate = `<input class="form-check-input" type="checkbox" id="${lotID}" style="width: 20px; height: 20px; margin-right: 7px;">
<label class="form-check-label" for="${lotID}">${lot.name}</label>`;
2022-04-08 10:37:10 +00:00
var existLotList = selectedDevicesIDs.map(selected => lot.devices.includes(selected));
2022-04-07 11:28:07 +00:00
2022-04-08 10:37:10 +00:00
var doc = document.createElement('li');
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));
elementTarget.append(doc);
2022-04-07 11:28:07 +00:00
}
var listHTML = $("#LotsSelector")
// Get selected devices
2022-04-08 10:37:10 +00:00
var selectedDevicesIDs = $.map($(".deviceSelect").filter(':checked'), function (x) { return parseInt($(x).attr('data')) });
2022-04-07 11:28:07 +00:00
if (selectedDevicesIDs.length <= 0) {
2022-04-08 10:37:10 +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-08 10:37:10 +00:00
var 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 {
listHTML.html('<li style="text-align: center"><div class="spinner-border text-info" style="margin: auto" role="status"></div></li>')
2022-04-08 10:37:10 +00:00
var devices = await Api.get_devices(selectedDevicesIDs);
var 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-08 10:37:10 +00:00
listHTML.html('');
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);
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
}