Merge pull request #219 from RubenPX/feature/Search
Feature: Search lots and devices
This commit is contained in:
commit
232d40c059
|
@ -8,6 +8,7 @@ ml).
|
||||||
## master
|
## master
|
||||||
|
|
||||||
## testing
|
## testing
|
||||||
|
- [added] #219 add functionality to searchbar (Lots and devices)
|
||||||
- [changed] #211 Print DHID-QR label for selected devices.
|
- [changed] #211 Print DHID-QR label for selected devices.
|
||||||
- [fixed] #214 Login workflow
|
- [fixed] #214 Login workflow
|
||||||
|
|
||||||
|
|
|
@ -30,11 +30,6 @@ Create a demo table
|
||||||
export dhi=dbtest; dh dummy
|
export dhi=dbtest; dh dummy
|
||||||
```
|
```
|
||||||
|
|
||||||
copy `examples/app.py` to project directory:
|
|
||||||
```bash
|
|
||||||
copy examples/app.py .
|
|
||||||
```
|
|
||||||
|
|
||||||
## Run project
|
## Run project
|
||||||
|
|
||||||
Run the app
|
Run the app
|
||||||
|
|
|
@ -1,182 +1,359 @@
|
||||||
$(document).ready(function() {
|
$(document).ready(function () {
|
||||||
var show_allocate_form = $("#allocateModal").data('show-action-form');
|
var show_allocate_form = $("#allocateModal").data('show-action-form');
|
||||||
var show_datawipe_form = $("#datawipeModal").data('show-action-form');
|
var show_datawipe_form = $("#datawipeModal").data('show-action-form');
|
||||||
var show_trade_form = $("#tradeLotModal").data('show-action-form');
|
var show_trade_form = $("#tradeLotModal").data('show-action-form');
|
||||||
if (show_allocate_form != "None") {
|
if (show_allocate_form != "None") {
|
||||||
$("#allocateModal .btn-primary").show();
|
$("#allocateModal .btn-primary").show();
|
||||||
newAllocate(show_allocate_form);
|
newAllocate(show_allocate_form);
|
||||||
} else if (show_datawipe_form != "None") {
|
} else if (show_datawipe_form != "None") {
|
||||||
$("#datawipeModal .btn-primary").show();
|
$("#datawipeModal .btn-primary").show();
|
||||||
newDataWipe(show_datawipe_form);
|
newDataWipe(show_datawipe_form);
|
||||||
} else if (show_trade_form != "None") {
|
} else if (show_trade_form != "None") {
|
||||||
$("#tradeLotModal .btn-primary").show();
|
$("#tradeLotModal .btn-primary").show();
|
||||||
newTrade(show_trade_form);
|
newTrade(show_trade_form);
|
||||||
} else {
|
} else {
|
||||||
$(".deviceSelect").on("change", deviceSelect);
|
$(".deviceSelect").on("change", deviceSelect);
|
||||||
}
|
}
|
||||||
// $('#selectLot').selectpicker();
|
// $('#selectLot').selectpicker();
|
||||||
})
|
})
|
||||||
|
|
||||||
function deviceSelect() {
|
function deviceSelect() {
|
||||||
var devices_count = $(".deviceSelect").filter(':checked').length;
|
var devices_count = $(".deviceSelect").filter(':checked').length;
|
||||||
get_device_list();
|
get_device_list();
|
||||||
if (devices_count == 0) {
|
if (devices_count == 0) {
|
||||||
$("#addingLotModal .pol").show();
|
$("#addingLotModal .pol").show();
|
||||||
$("#addingLotModal .btn-primary").hide();
|
$("#addingLotModal .btn-primary").hide();
|
||||||
|
|
||||||
$("#removeLotModal .pol").show();
|
$("#removeLotModal .pol").show();
|
||||||
$("#removeLotModal .btn-primary").hide();
|
$("#removeLotModal .btn-primary").hide();
|
||||||
|
|
||||||
$("#addingTagModal .pol").show();
|
$("#addingTagModal .pol").show();
|
||||||
$("#addingTagModal .btn-primary").hide();
|
$("#addingTagModal .btn-primary").hide();
|
||||||
|
|
||||||
$("#actionModal .pol").show();
|
$("#actionModal .pol").show();
|
||||||
$("#actionModal .btn-primary").hide();
|
$("#actionModal .btn-primary").hide();
|
||||||
|
|
||||||
$("#allocateModal .pol").show();
|
$("#allocateModal .pol").show();
|
||||||
$("#allocateModal .btn-primary").hide();
|
$("#allocateModal .btn-primary").hide();
|
||||||
|
|
||||||
$("#datawipeModal .pol").show();
|
$("#datawipeModal .pol").show();
|
||||||
$("#datawipeModal .btn-primary").hide();
|
$("#datawipeModal .btn-primary").hide();
|
||||||
} else {
|
} else {
|
||||||
$("#addingLotModal .pol").hide();
|
$("#addingLotModal .pol").hide();
|
||||||
$("#addingLotModal .btn-primary").show();
|
$("#addingLotModal .btn-primary").show();
|
||||||
|
|
||||||
$("#removeLotModal .pol").hide();
|
$("#removeLotModal .pol").hide();
|
||||||
$("#removeLotModal .btn-primary").show();
|
$("#removeLotModal .btn-primary").show();
|
||||||
|
|
||||||
$("#actionModal .pol").hide();
|
$("#actionModal .pol").hide();
|
||||||
$("#actionModal .btn-primary").show();
|
$("#actionModal .btn-primary").show();
|
||||||
|
|
||||||
$("#allocateModal .pol").hide();
|
$("#allocateModal .pol").hide();
|
||||||
$("#allocateModal .btn-primary").show();
|
$("#allocateModal .btn-primary").show();
|
||||||
|
|
||||||
$("#datawipeModal .pol").hide();
|
$("#datawipeModal .pol").hide();
|
||||||
$("#datawipeModal .btn-primary").show();
|
$("#datawipeModal .btn-primary").show();
|
||||||
|
|
||||||
$("#addingTagModal .pol").hide();
|
$("#addingTagModal .pol").hide();
|
||||||
$("#addingTagModal .btn-primary").show();
|
$("#addingTagModal .btn-primary").show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function removeLot() {
|
function removeLot() {
|
||||||
var devices = $(".deviceSelect");
|
var devices = $(".deviceSelect");
|
||||||
if (devices.length > 0) {
|
if (devices.length > 0) {
|
||||||
$("#btnRemoveLots .text-danger").show();
|
$("#btnRemoveLots .text-danger").show();
|
||||||
} else {
|
} else {
|
||||||
$("#btnRemoveLots .text-danger").hide();
|
$("#btnRemoveLots .text-danger").hide();
|
||||||
}
|
}
|
||||||
$("#activeRemoveLotModal").click();
|
$("#activeRemoveLotModal").click();
|
||||||
}
|
}
|
||||||
|
|
||||||
function removeTag() {
|
function removeTag() {
|
||||||
var devices = $(".deviceSelect").filter(':checked');
|
var devices = $(".deviceSelect").filter(':checked');
|
||||||
var devices_id = $.map(devices, function(x) { return $(x).attr('data')});
|
var devices_id = $.map(devices, function (x) { return $(x).attr('data') });
|
||||||
if (devices_id.length == 1) {
|
if (devices_id.length == 1) {
|
||||||
var url = "/inventory/tag/devices/"+devices_id[0]+"/del/";
|
var url = "/inventory/tag/devices/" + devices_id[0] + "/del/";
|
||||||
window.location.href = url;
|
window.location.href = url;
|
||||||
} else {
|
} else {
|
||||||
$("#unlinkTagAlertModal").click();
|
$("#unlinkTagAlertModal").click();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function addTag() {
|
function addTag() {
|
||||||
var devices = $(".deviceSelect").filter(':checked');
|
var devices = $(".deviceSelect").filter(':checked');
|
||||||
var devices_id = $.map(devices, function(x) { return $(x).attr('data')});
|
var devices_id = $.map(devices, function (x) { return $(x).attr('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();
|
||||||
} else {
|
} else {
|
||||||
$("#addingTagModal .pol").show();
|
$("#addingTagModal .pol").show();
|
||||||
$("#addingTagModal .btn-primary").hide();
|
$("#addingTagModal .btn-primary").hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
$("#addTagAlertModal").click();
|
$("#addTagAlertModal").click();
|
||||||
}
|
}
|
||||||
|
|
||||||
function newTrade(action) {
|
function newTrade(action) {
|
||||||
var title = "Trade "
|
var title = "Trade "
|
||||||
var user_to = $("#user_to").data("email");
|
var user_to = $("#user_to").data("email");
|
||||||
var user_from = $("#user_from").data("email");
|
var user_from = $("#user_from").data("email");
|
||||||
if (action == 'user_from') {
|
if (action == 'user_from') {
|
||||||
title = 'Trade Incoming';
|
title = 'Trade Incoming';
|
||||||
$("#user_to").attr('readonly', 'readonly');
|
$("#user_to").attr('readonly', 'readonly');
|
||||||
$("#user_from").prop('readonly', false);
|
$("#user_from").prop('readonly', false);
|
||||||
$("#user_from").val('');
|
$("#user_from").val('');
|
||||||
$("#user_to").val(user_to);
|
$("#user_to").val(user_to);
|
||||||
} else if (action == 'user_to') {
|
} else if (action == 'user_to') {
|
||||||
title = 'Trade Outgoing';
|
title = 'Trade Outgoing';
|
||||||
$("#user_from").attr('readonly', 'readonly');
|
$("#user_from").attr('readonly', 'readonly');
|
||||||
$("#user_to").prop('readonly', false);
|
$("#user_to").prop('readonly', false);
|
||||||
$("#user_to").val('');
|
$("#user_to").val('');
|
||||||
$("#user_from").val(user_from);
|
$("#user_from").val(user_from);
|
||||||
}
|
}
|
||||||
$("#tradeLotModal #title-action").html(title);
|
$("#tradeLotModal #title-action").html(title);
|
||||||
$("#activeTradeModal").click();
|
$("#activeTradeModal").click();
|
||||||
}
|
}
|
||||||
|
|
||||||
function newAction(action) {
|
function newAction(action) {
|
||||||
$("#actionModal #type").val(action);
|
$("#actionModal #type").val(action);
|
||||||
$("#actionModal #title-action").html(action);
|
$("#actionModal #title-action").html(action);
|
||||||
deviceSelect();
|
deviceSelect();
|
||||||
$("#activeActionModal").click();
|
$("#activeActionModal").click();
|
||||||
}
|
}
|
||||||
|
|
||||||
function newAllocate(action) {
|
function newAllocate(action) {
|
||||||
$("#allocateModal #type").val(action);
|
$("#allocateModal #type").val(action);
|
||||||
$("#allocateModal #title-action").html(action);
|
$("#allocateModal #title-action").html(action);
|
||||||
deviceSelect();
|
deviceSelect();
|
||||||
$("#activeAllocateModal").click();
|
$("#activeAllocateModal").click();
|
||||||
}
|
}
|
||||||
|
|
||||||
function newDataWipe(action) {
|
function newDataWipe(action) {
|
||||||
$("#datawipeModal #type").val(action);
|
$("#datawipeModal #type").val(action);
|
||||||
$("#datawipeModal #title-action").html(action);
|
$("#datawipeModal #title-action").html(action);
|
||||||
deviceSelect();
|
deviceSelect();
|
||||||
$("#activeDatawipeModal").click();
|
$("#activeDatawipeModal").click();
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_device_list() {
|
function get_device_list() {
|
||||||
var devices = $(".deviceSelect").filter(':checked');
|
var devices = $(".deviceSelect").filter(':checked');
|
||||||
|
|
||||||
/* Insert the correct count of devices in actions form */
|
/* Insert the correct count of devices in actions form */
|
||||||
var devices_count = devices.length;
|
var devices_count = devices.length;
|
||||||
$("#datawipeModal .devices-count").html(devices_count);
|
$("#datawipeModal .devices-count").html(devices_count);
|
||||||
$("#allocateModal .devices-count").html(devices_count);
|
$("#allocateModal .devices-count").html(devices_count);
|
||||||
$("#actionModal .devices-count").html(devices_count);
|
$("#actionModal .devices-count").html(devices_count);
|
||||||
|
|
||||||
/* Insert the correct value in the input devicesList */
|
/* Insert the correct value in the input devicesList */
|
||||||
var devices_id = $.map(devices, function(x) { return $(x).attr('data')}).join(",");
|
var devices_id = $.map(devices, function (x) { return $(x).attr('data') }).join(",");
|
||||||
$.map($(".devicesList"), function(x) {
|
$.map($(".devicesList"), function (x) {
|
||||||
$(x).val(devices_id);
|
$(x).val(devices_id);
|
||||||
});
|
});
|
||||||
|
|
||||||
/* Create a list of devices for human representation */
|
/* Create a list of devices for human representation */
|
||||||
var computer = {
|
var computer = {
|
||||||
"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(function (x) {
|
list_devices = devices.map(function (x) {
|
||||||
var typ = $(devices[x]).data("device-type");
|
var typ = $(devices[x]).data("device-type");
|
||||||
var manuf = $(devices[x]).data("device-manufacturer");
|
var manuf = $(devices[x]).data("device-manufacturer");
|
||||||
var dhid = $(devices[x]).data("device-dhid");
|
var dhid = $(devices[x]).data("device-dhid");
|
||||||
if (computer[typ]) {
|
if (computer[typ]) {
|
||||||
typ = computer[typ];
|
typ = computer[typ];
|
||||||
};
|
};
|
||||||
return typ + " " + manuf + " " + dhid;
|
return typ + " " + manuf + " " + dhid;
|
||||||
});
|
});
|
||||||
|
|
||||||
description = $.map(list_devices, function(x) { return x }).join(", ");
|
description = $.map(list_devices, function (x) { return x }).join(", ");
|
||||||
$(".enumeration-devices").html(description);
|
$(".enumeration-devices").html(description);
|
||||||
}
|
}
|
||||||
|
|
||||||
function export_file(type_file) {
|
function export_file(type_file) {
|
||||||
var devices = $(".deviceSelect").filter(':checked');
|
var devices = $(".deviceSelect").filter(':checked');
|
||||||
var devices_id = $.map(devices, function(x) { return $(x).attr('data-device-dhid')}).join(",");
|
var devices_id = $.map(devices, function (x) { return $(x).attr('data-device-dhid') }).join(",");
|
||||||
if (devices_id){
|
if (devices_id) {
|
||||||
var url = "/inventory/export/"+type_file+"/?ids="+devices_id;
|
var url = "/inventory/export/" + type_file + "/?ids=" + devices_id;
|
||||||
window.location.href = url;
|
window.location.href = url;
|
||||||
} else {
|
} else {
|
||||||
$("#exportAlertModal").click();
|
$("#exportAlertModal").click();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
window.addEventListener("DOMContentLoaded", () => {
|
||||||
|
var searchForm = document.getElementById("SearchForm")
|
||||||
|
var inputSearch = document.querySelector("#SearchForm > input")
|
||||||
|
var doSearch = true
|
||||||
|
|
||||||
|
const Api = {
|
||||||
|
/**
|
||||||
|
* get lots id
|
||||||
|
* @returns get lots
|
||||||
|
*/
|
||||||
|
async get_lots() {
|
||||||
|
var request = await this.doRequest(API_URLS.lots, "GET", null)
|
||||||
|
if (request != undefined) return request.items
|
||||||
|
throw request
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get filtered devices info
|
||||||
|
* @param {number[]} ids devices ids
|
||||||
|
* @returns full detailed device list
|
||||||
|
*/
|
||||||
|
async get_devices(id) {
|
||||||
|
var request = await this.doRequest(API_URLS.devices + '?filter={"devicehub_id": ["' + id + '"]}', "GET", null)
|
||||||
|
if (request != undefined) return request.items
|
||||||
|
throw request
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param {string} url URL to be requested
|
||||||
|
* @param {String} type Action type
|
||||||
|
* @param {String | Object} body body content
|
||||||
|
* @returns {Object[]}
|
||||||
|
*/
|
||||||
|
async doRequest(url, type, body) {
|
||||||
|
var result;
|
||||||
|
try {
|
||||||
|
result = await $.ajax({
|
||||||
|
url: url,
|
||||||
|
type: type,
|
||||||
|
headers: {
|
||||||
|
"Authorization": API_URLS.Auth_Token
|
||||||
|
},
|
||||||
|
body: body
|
||||||
|
});
|
||||||
|
return result
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
throw error
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
searchForm.addEventListener("submit", (event) => {
|
||||||
|
event.preventDefault();
|
||||||
|
})
|
||||||
|
|
||||||
|
let timeoutHandler = setTimeout(() => { }, 1)
|
||||||
|
let dropdownList = document.getElementById("dropdown-search-list")
|
||||||
|
let defaultEmptySearch = document.getElementById("dropdown-search-list").innerHTML
|
||||||
|
|
||||||
|
|
||||||
|
inputSearch.addEventListener("input", (e) => {
|
||||||
|
clearTimeout(timeoutHandler)
|
||||||
|
let searchText = e.target.value
|
||||||
|
if (searchText == '') {
|
||||||
|
document.getElementById("dropdown-search-list").innerHTML = defaultEmptySearch;
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
let resultCount = 0;
|
||||||
|
function searchCompleted() {
|
||||||
|
resultCount++;
|
||||||
|
if (resultCount < 2 && document.getElementById("dropdown-search-list").children.length > 0) {
|
||||||
|
setTimeout(() => {
|
||||||
|
document.getElementById("dropdown-search-list").innerHTML = `
|
||||||
|
<li id="deviceSearchLoader" class="dropdown-item">
|
||||||
|
<i class="bi bi-x-lg"></i>
|
||||||
|
<span style="margin-right: 10px">Nothing found</span>
|
||||||
|
</li>`
|
||||||
|
}, 100)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
timeoutHandler = setTimeout(async () => {
|
||||||
|
dropdownList.innerHTML = `
|
||||||
|
<li id="deviceSearchLoader" class="dropdown-item">
|
||||||
|
<i class="bi bi-laptop"></i>
|
||||||
|
<div class="spinner-border spinner-border-sm" role="status">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li id="lotSearchLoader" class="dropdown-item">
|
||||||
|
<i class="bi bi-folder2"></i>
|
||||||
|
<div class="spinner-border spinner-border-sm" role="status">
|
||||||
|
<span class="visually-hidden">Loading...</span>
|
||||||
|
</div>
|
||||||
|
</li>`;
|
||||||
|
|
||||||
|
|
||||||
|
try {
|
||||||
|
Api.get_devices(searchText.toUpperCase()).then(devices => {
|
||||||
|
dropdownList.querySelector("#deviceSearchLoader").style = "display: none"
|
||||||
|
|
||||||
|
for (let i = 0; i < devices.length; i++) {
|
||||||
|
const device = devices[i];
|
||||||
|
|
||||||
|
// See: ereuse_devicehub/resources/device/models.py
|
||||||
|
var verboseName = `${device.type} ${device.manufacturer} ${device.model}`
|
||||||
|
|
||||||
|
const templateString = `
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="${API_URLS.devices_detail.replace("ReplaceTEXT", device.devicehubID)}" style="display: flex; align-items: center;" href="#">
|
||||||
|
<i class="bi bi-laptop"></i>
|
||||||
|
<span style="margin-right: 10px">${verboseName}</span>
|
||||||
|
<span class="badge bg-secondary" style="margin-left: auto;">${device.devicehubID}</span>
|
||||||
|
</a>
|
||||||
|
</li>`;
|
||||||
|
dropdownList.innerHTML += templateString
|
||||||
|
if (i == 4) { // Limit to 4 resullts
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
searchCompleted();
|
||||||
|
})
|
||||||
|
} catch (error) {
|
||||||
|
dropdownList.innerHTML += `
|
||||||
|
<li id="deviceSearchLoader" class="dropdown-item">
|
||||||
|
<i class="bi bi-x"></i>
|
||||||
|
<div class="spinner-border spinner-border-sm" role="status">
|
||||||
|
<span class="visually-hidden">Error searching devices</span>
|
||||||
|
</div>
|
||||||
|
</li>`;
|
||||||
|
console.log(error);
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
Api.get_lots().then(lots => {
|
||||||
|
dropdownList.querySelector("#lotSearchLoader").style = "display: none"
|
||||||
|
for (let i = 0; i < lots.length; i++) {
|
||||||
|
const lot = lots[i];
|
||||||
|
if (lot.name.toUpperCase().includes(searchText.toUpperCase())) {
|
||||||
|
const templateString = `
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="${API_URLS.lots_detail.replace("ReplaceTEXT", lot.id)}" style="display: flex; align-items: center;" href="#">
|
||||||
|
<i class="bi bi-folder2"></i>
|
||||||
|
<span style="margin-right: 10px">${lot.name}</span>
|
||||||
|
</a>
|
||||||
|
</li>`;
|
||||||
|
dropdownList.innerHTML += templateString
|
||||||
|
if (i == 4) { // Limit to 4 resullts
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
searchCompleted();
|
||||||
|
})
|
||||||
|
|
||||||
|
} catch (error) {
|
||||||
|
dropdownList.innerHTML += `
|
||||||
|
<li id="deviceSearchLoader" class="dropdown-item">
|
||||||
|
<i class="bi bi-x"></i>
|
||||||
|
<div class="spinner-border spinner-border-sm" role="status">
|
||||||
|
<span class="visually-hidden">Error searching lots</span>
|
||||||
|
</div>
|
||||||
|
</li>`;
|
||||||
|
console.log(error);
|
||||||
|
}
|
||||||
|
}, 1000)
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
})
|
|
@ -1,227 +1,245 @@
|
||||||
{% extends "ereuse_devicehub/base.html" %}
|
{% extends "ereuse_devicehub/base.html" %}
|
||||||
{% block page_title %}{{ page_title }}{% endblock %}
|
{% block page_title %}{{ page_title }}{% endblock %}
|
||||||
{% block body %}
|
{% block body %}
|
||||||
<!-- ======= Header ======= -->
|
<!-- ======= Header ======= -->
|
||||||
<header id="header" class="header fixed-top d-flex align-items-center">
|
<header id="header" class="header fixed-top d-flex align-items-center">
|
||||||
|
|
||||||
<div class="d-flex align-items-center justify-content-between">
|
<div class="d-flex align-items-center justify-content-between">
|
||||||
<a href="{{ url_for('inventory.devicelist')}}" class="logo d-flex align-items-center">
|
<a href="{{ url_for('inventory.devicelist')}}" class="logo d-flex align-items-center">
|
||||||
<img src="{{ url_for('static', filename='img/usody-logo-black.svg') }}" alt="">
|
<img src="{{ url_for('static', filename='img/usody-logo-black.svg') }}" alt="">
|
||||||
</a>
|
</a>
|
||||||
<i class="bi bi-list toggle-sidebar-btn"></i>
|
<i class="bi bi-list toggle-sidebar-btn"></i>
|
||||||
</div><!-- End Logo -->
|
</div><!-- End Logo -->
|
||||||
|
|
||||||
<div class="search-bar">
|
<div class="search-bar">
|
||||||
<form class="search-form d-flex align-items-center" method="POST" action="#">
|
<form class="search-form d-flex align-items-center" method="POST" id="SearchForm" action="#">
|
||||||
<input type="text" name="query" placeholder="Search" title="Enter search keyword">
|
<input class="dropdown-toggle" type="text" name="query" placeholder="Search" title="Enter search keyword" autocomplete="off" id="dropdownSearch" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<button type="submit" title="Search"><i class="bi bi-search"></i></button>
|
<button type="submit" title="Search"><i class="bi bi-search"></i></button>
|
||||||
</form>
|
|
||||||
</div><!-- End Search Bar -->
|
<ul class="dropdown-menu" autoClose="outside" aria-labelledby="dropdownSearch" id="dropdown-search-list" style="min-width: 100px;">
|
||||||
|
<li class="dropdown-header"><h6 class="dropdown-header">You can search:</h6></li>
|
||||||
<nav class="header-nav ms-auto">
|
<li class="dropdown-item"><i class="bi bi-laptop"></i> Devices <span class="badge bg-secondary" style="float: right;">DHID</span></li>
|
||||||
<ul class="d-flex align-items-center">
|
<li class="dropdown-item"><i class="bi bi-folder2"></i> lots <span class="badge bg-secondary" style="float: right;">Name</span></li>
|
||||||
|
</ul>
|
||||||
<li class="nav-item d-block d-lg-none">
|
</form>
|
||||||
<a class="nav-link nav-icon search-bar-toggle " href="#">
|
</div><!-- End Search Bar -->
|
||||||
<i class="bi bi-search"></i>
|
|
||||||
</a>
|
<nav class="header-nav ms-auto">
|
||||||
</li><!-- End Search Icon-->
|
<ul class="d-flex align-items-center">
|
||||||
|
|
||||||
<li class="nav-item dropdown pe-3">
|
<li class="nav-item d-block d-lg-none">
|
||||||
|
<a class="nav-link nav-icon search-bar-toggle " href="#">
|
||||||
<a class="nav-link nav-profile d-flex align-items-center pe-0" href="#" data-bs-toggle="dropdown">
|
<i class="bi bi-search"></i>
|
||||||
<i class="bi bi-person-circle" style="font-size: 36px;"></i>
|
</a>
|
||||||
<span class="d-none d-md-block dropdown-toggle ps-2">{{ current_user.email }}</span>
|
</li><!-- End Search Icon-->
|
||||||
</a><!-- End Profile Iamge Icon -->
|
|
||||||
|
<li class="nav-item dropdown pe-3">
|
||||||
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-arrow profile">
|
|
||||||
<li class="dropdown-header">
|
<a class="nav-link nav-profile d-flex align-items-center pe-0" href="#" data-bs-toggle="dropdown">
|
||||||
<h6>{{ current_user.get_full_name }}</h6>
|
<i class="bi bi-person-circle" style="font-size: 36px;"></i>
|
||||||
</li>
|
<span class="d-none d-md-block dropdown-toggle ps-2">{{ current_user.email }}</span>
|
||||||
<li>
|
</a><!-- End Profile Iamge Icon -->
|
||||||
<hr class="dropdown-divider">
|
|
||||||
</li>
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-arrow profile">
|
||||||
|
<li class="dropdown-header">
|
||||||
<li>
|
<h6>{{ current_user.get_full_name }}</h6>
|
||||||
<a class="dropdown-item d-flex align-items-center" href="{{ url_for('core.user-profile') }}">
|
</li>
|
||||||
<i class="bi bi-person"></i>
|
<li>
|
||||||
<span>My Profile</span>
|
<hr class="dropdown-divider">
|
||||||
</a>
|
</li>
|
||||||
</li>
|
|
||||||
<li>
|
<li>
|
||||||
<hr class="dropdown-divider">
|
<a class="dropdown-item d-flex align-items-center" href="{{ url_for('core.user-profile') }}">
|
||||||
</li>
|
<i class="bi bi-person"></i>
|
||||||
|
<span>My Profile</span>
|
||||||
<li>
|
</a>
|
||||||
<a class="dropdown-item d-flex align-items-center" href="https://help.usody.com/" target="_blank">
|
</li>
|
||||||
<i class="bi bi-question-circle"></i>
|
<li>
|
||||||
<span>Need Help?</span>
|
<hr class="dropdown-divider">
|
||||||
</a>
|
</li>
|
||||||
</li>
|
|
||||||
<li>
|
<li>
|
||||||
<hr class="dropdown-divider">
|
<a class="dropdown-item d-flex align-items-center" href="https://help.usody.com/" target="_blank">
|
||||||
</li>
|
<i class="bi bi-question-circle"></i>
|
||||||
|
<span>Need Help?</span>
|
||||||
<li>
|
</a>
|
||||||
<a class="dropdown-item d-flex align-items-center" href="{{ url_for('core.logout') }}">
|
</li>
|
||||||
<i class="bi bi-box-arrow-right"></i>
|
<li>
|
||||||
<span>Sign Out</span>
|
<hr class="dropdown-divider">
|
||||||
</a>
|
</li>
|
||||||
</li>
|
|
||||||
|
<li>
|
||||||
</ul><!-- End Profile Dropdown Items -->
|
<a class="dropdown-item d-flex align-items-center" href="{{ url_for('core.logout') }}">
|
||||||
</li><!-- End Profile Nav -->
|
<i class="bi bi-box-arrow-right"></i>
|
||||||
|
<span>Sign Out</span>
|
||||||
</ul>
|
</a>
|
||||||
</nav><!-- End Icons Navigation -->
|
</li>
|
||||||
|
|
||||||
</header><!-- End Header -->
|
</ul><!-- End Profile Dropdown Items -->
|
||||||
|
</li><!-- End Profile Nav -->
|
||||||
<!-- ======= Sidebar ======= -->
|
|
||||||
<aside id="sidebar" class="sidebar">
|
</ul>
|
||||||
|
</nav><!-- End Icons Navigation -->
|
||||||
<ul class="sidebar-nav" id="sidebar-nav">
|
|
||||||
<!-- We need defined before the Dashboard
|
</header><!-- End Header -->
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link collapsed" href="index.html">
|
<!-- ======= Sidebar ======= -->
|
||||||
<i class="bi bi-grid"></i>
|
<aside id="sidebar" class="sidebar">
|
||||||
<span>Dashboard</span>
|
|
||||||
</a>
|
<ul class="sidebar-nav" id="sidebar-nav">
|
||||||
</li><!-- End Dashboard Nav -->
|
<!-- We need defined before the Dashboard
|
||||||
|
<li class="nav-item">
|
||||||
<li class="nav-item">
|
<a class="nav-link collapsed" href="index.html">
|
||||||
<a class="nav-link collapsed" href="{{ url_for('inventory.devicelist') }}">
|
<i class="bi bi-grid"></i>
|
||||||
<i class="bi-menu-button-wide"></i>
|
<span>Dashboard</span>
|
||||||
<span>Unassigned devices</span>
|
</a>
|
||||||
</a>
|
</li><!-- End Dashboard Nav -->
|
||||||
</li>
|
|
||||||
|
<li class="nav-item">
|
||||||
<li class="nav-heading">Lots</li>
|
<a class="nav-link collapsed" href="{{ url_for('inventory.devicelist') }}">
|
||||||
|
<i class="bi-menu-button-wide"></i>
|
||||||
<li class="nav-item">
|
<span>Unassigned devices</span>
|
||||||
{% if lot and lot.is_incoming %}
|
</a>
|
||||||
<a class="nav-link" data-bs-target="#incoming-lots-nav" data-bs-toggle="collapse" href="#">
|
</li>
|
||||||
{% else %}
|
|
||||||
<a class="nav-link collapsed" data-bs-target="#incoming-lots-nav" data-bs-toggle="collapse" href="#">
|
<li class="nav-heading">Lots</li>
|
||||||
{% endif %}
|
|
||||||
<i class="bi bi-arrow-down-right"></i><span>Incoming Lots</span><i class="bi bi-chevron-down ms-auto"></i>
|
<li class="nav-item">
|
||||||
</a>
|
{% if lot and lot.is_incoming %}
|
||||||
{% if lot and lot.is_incoming %}
|
<a class="nav-link" data-bs-target="#incoming-lots-nav" data-bs-toggle="collapse" href="#">
|
||||||
<ul id="incoming-lots-nav" class="nav-content collapse show" data-bs-parent="#sidebar-nav">
|
{% else %}
|
||||||
{% else %}
|
<a class="nav-link collapsed" data-bs-target="#incoming-lots-nav" data-bs-toggle="collapse" href="#">
|
||||||
<ul id="incoming-lots-nav" class="nav-content collapse" data-bs-parent="#sidebar-nav">
|
{% endif %}
|
||||||
{% endif %}
|
<i class="bi bi-arrow-down-right"></i><span>Incoming Lots</span><i class="bi bi-chevron-down ms-auto"></i>
|
||||||
{% for lot in lots %}
|
</a>
|
||||||
{% if lot.is_incoming %}
|
{% if lot and lot.is_incoming %}
|
||||||
<li>
|
<ul id="incoming-lots-nav" class="nav-content collapse show" data-bs-parent="#sidebar-nav">
|
||||||
<a href="{{ url_for('inventory.lotdevicelist', lot_id=lot.id) }}">
|
{% else %}
|
||||||
<i class="bi bi-circle"></i><span>{{ lot.name }}</span>
|
<ul id="incoming-lots-nav" class="nav-content collapse" data-bs-parent="#sidebar-nav">
|
||||||
</a>
|
{% endif %}
|
||||||
</li>
|
{% for lot in lots %}
|
||||||
{% endif %}
|
{% if lot.is_incoming %}
|
||||||
{% endfor %}
|
<li>
|
||||||
</ul>
|
<a href="{{ url_for('inventory.lotdevicelist', lot_id=lot.id) }}">
|
||||||
</li><!-- End Incoming Lots Nav -->
|
<i class="bi bi-circle"></i><span>{{ lot.name }}</span>
|
||||||
|
</a>
|
||||||
<li class="nav-item">
|
</li>
|
||||||
{% if lot and lot.is_outgoing %}
|
{% endif %}
|
||||||
<a class="nav-link" data-bs-target="#outgoing-lots-nav" data-bs-toggle="collapse" href="#">
|
{% endfor %}
|
||||||
{% else %}
|
</ul>
|
||||||
<a class="nav-link collapsed" data-bs-target="#outgoing-lots-nav" data-bs-toggle="collapse" href="#">
|
</li><!-- End Incoming Lots Nav -->
|
||||||
{% endif %}
|
|
||||||
<i class="bi bi-arrow-up-right"></i><span>Outgoing Lots</span><i class="bi bi-chevron-down ms-auto"></i>
|
<li class="nav-item">
|
||||||
</a>
|
{% if lot and lot.is_outgoing %}
|
||||||
{% if lot and lot.is_outgoing %}
|
<a class="nav-link" data-bs-target="#outgoing-lots-nav" data-bs-toggle="collapse" href="#">
|
||||||
<ul id="outgoing-lots-nav" class="nav-content collapse show" data-bs-parent="#sidebar-nav">
|
{% else %}
|
||||||
{% else %}
|
<a class="nav-link collapsed" data-bs-target="#outgoing-lots-nav" data-bs-toggle="collapse" href="#">
|
||||||
<ul id="outgoing-lots-nav" class="nav-content collapse " data-bs-parent="#sidebar-nav">
|
{% endif %}
|
||||||
{% endif %}
|
<i class="bi bi-arrow-up-right"></i><span>Outgoing Lots</span><i class="bi bi-chevron-down ms-auto"></i>
|
||||||
{% for lot in lots %}
|
</a>
|
||||||
{% if lot.is_outgoing %}
|
{% if lot and lot.is_outgoing %}
|
||||||
<li>
|
<ul id="outgoing-lots-nav" class="nav-content collapse show" data-bs-parent="#sidebar-nav">
|
||||||
<a href="{{ url_for('inventory.lotdevicelist', lot_id=lot.id) }}">
|
{% else %}
|
||||||
<i class="bi bi-circle"></i><span>{{ lot.name }}</span>
|
<ul id="outgoing-lots-nav" class="nav-content collapse " data-bs-parent="#sidebar-nav">
|
||||||
</a>
|
{% endif %}
|
||||||
</li>
|
{% for lot in lots %}
|
||||||
{% endif %}
|
{% if lot.is_outgoing %}
|
||||||
{% endfor %}
|
<li>
|
||||||
</ul>
|
<a href="{{ url_for('inventory.lotdevicelist', lot_id=lot.id) }}">
|
||||||
</li><!-- End Outgoing Lots Nav -->
|
<i class="bi bi-circle"></i><span>{{ lot.name }}</span>
|
||||||
|
</a>
|
||||||
<li class="nav-item">
|
</li>
|
||||||
{% if lot and lot.is_temporary %}
|
{% endif %}
|
||||||
<a class="nav-link" data-bs-target="#temporal-lots-nav" data-bs-toggle="collapse" href="#">
|
{% endfor %}
|
||||||
{% else %}
|
</ul>
|
||||||
<a class="nav-link collapsed" data-bs-target="#temporal-lots-nav" data-bs-toggle="collapse" href="#">
|
</li><!-- End Outgoing Lots Nav -->
|
||||||
{% endif %}
|
|
||||||
<i class="bi bi-layout-text-window-reverse"></i><span>Temporary Lots</span><i class="bi bi-chevron-down ms-auto"></i>
|
<li class="nav-item">
|
||||||
</a>
|
{% if lot and lot.is_temporary %}
|
||||||
{% if lot and lot.is_temporary %}
|
<a class="nav-link" data-bs-target="#temporal-lots-nav" data-bs-toggle="collapse" href="#">
|
||||||
<ul id="temporal-lots-nav" class="nav-content collapse show" data-bs-parent="#sidebar-nav">
|
{% else %}
|
||||||
{% else %}
|
<a class="nav-link collapsed" data-bs-target="#temporal-lots-nav" data-bs-toggle="collapse" href="#">
|
||||||
<ul id="temporal-lots-nav" class="nav-content collapse " data-bs-parent="#sidebar-nav">
|
{% endif %}
|
||||||
{% endif %}
|
<i class="bi bi-layout-text-window-reverse"></i><span>Temporary Lots</span><i class="bi bi-chevron-down ms-auto"></i>
|
||||||
<li>
|
</a>
|
||||||
<a href="{{ url_for('inventory.lot_add')}}">
|
{% if lot and lot.is_temporary %}
|
||||||
<i class="bi bi-plus" style="font-size: larger;"></i><span>New temporary lot</span>
|
<ul id="temporal-lots-nav" class="nav-content collapse show" data-bs-parent="#sidebar-nav">
|
||||||
</a>
|
{% else %}
|
||||||
</li>
|
<ul id="temporal-lots-nav" class="nav-content collapse " data-bs-parent="#sidebar-nav">
|
||||||
{% for lot in lots %}
|
{% endif %}
|
||||||
{% if lot.is_temporary %}
|
<li>
|
||||||
<li>
|
<a href="{{ url_for('inventory.lot_add')}}">
|
||||||
<a href="{{ url_for('inventory.lotdevicelist', lot_id=lot.id) }}">
|
<i class="bi bi-plus" style="font-size: larger;"></i><span>New temporary lot</span>
|
||||||
<i class="bi bi-circle"></i><span>{{ lot.name }}</span>
|
</a>
|
||||||
</a>
|
</li>
|
||||||
</li>
|
{% for lot in lots %}
|
||||||
{% endif %}
|
{% if lot.is_temporary %}
|
||||||
{% endfor %}
|
<li>
|
||||||
</ul>
|
<a href="{{ url_for('inventory.lotdevicelist', lot_id=lot.id) }}">
|
||||||
</li><!-- End Temporal Lots Nav -->
|
<i class="bi bi-circle"></i><span>{{ lot.name }}</span>
|
||||||
|
</a>
|
||||||
<li class="nav-heading">Utils</li>
|
</li>
|
||||||
|
{% endif %}
|
||||||
<li class="nav-item">
|
{% endfor %}
|
||||||
<a class="nav-link collapsed" href="{{ url_for('labels.label_list')}}">
|
</ul>
|
||||||
<i class="bi bi-tags"></i>
|
</li><!-- End Temporal Lots Nav -->
|
||||||
<span>Tags</span>
|
|
||||||
</a>
|
<li class="nav-heading">Utils</li>
|
||||||
</li><!-- End Tags Page Nav -->
|
|
||||||
|
<li class="nav-item">
|
||||||
</ul>
|
<a class="nav-link collapsed" href="{{ url_for('labels.label_list')}}">
|
||||||
|
<i class="bi bi-tags"></i>
|
||||||
</aside><!-- End Sidebar-->
|
<span>Tags</span>
|
||||||
|
</a>
|
||||||
<main id="main" class="main">
|
</li><!-- End Tags Page Nav -->
|
||||||
{% block messages %}
|
|
||||||
{% for level, message in get_flashed_messages(with_categories=true) %}
|
</ul>
|
||||||
<div class="alert alert-{{ level}} alert-dismissible fade show" role="alert">
|
|
||||||
{% if '_message_icon' in session %}
|
</aside><!-- End Sidebar-->
|
||||||
<i class="bi bi-{{ session['_message_icon'][level]}} me-1"></i>
|
|
||||||
{% else %}<!-- fallback if 3rd party libraries (e.g. flask_login.login_required) -->
|
<main id="main" class="main">
|
||||||
<i class="bi bi-info-circle me-1"></i>
|
{% block messages %}
|
||||||
{% endif %}
|
{% for level, message in get_flashed_messages(with_categories=true) %}
|
||||||
{{ message }}
|
<div class="alert alert-{{ level}} alert-dismissible fade show" role="alert">
|
||||||
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
{% if '_message_icon' in session %}
|
||||||
</div>
|
<i class="bi bi-{{ session['_message_icon'][level]}} me-1"></i>
|
||||||
{% endfor %}
|
{% else %}<!-- fallback if 3rd party libraries (e.g. flask_login.login_required) -->
|
||||||
{% endblock %}
|
<i class="bi bi-info-circle me-1"></i>
|
||||||
{% block main %}
|
{% endif %}
|
||||||
|
{{ message }}
|
||||||
{% endblock main %}
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
||||||
</main><!-- End #main -->
|
</div>
|
||||||
|
{% endfor %}
|
||||||
<!-- ======= Footer ======= -->
|
{% endblock %}
|
||||||
<footer id="footer" class="footer">
|
{% block main %}
|
||||||
<div class="copyright">
|
|
||||||
© Copyright <strong><span>USOdy</span></strong>. All Rights Reserved
|
{% endblock main %}
|
||||||
</div>
|
</main><!-- End #main -->
|
||||||
<div class="credits">
|
|
||||||
<!-- All the links in the footer should remain intact. -->
|
<!-- ======= Footer ======= -->
|
||||||
<!-- You can delete the links only if you purchased the pro version. -->
|
<footer id="footer" class="footer">
|
||||||
<!-- Licensing information: https://bootstrapmade.com/license/ -->
|
<div class="copyright">
|
||||||
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/nice-admin-bootstrap-admin-html-template/ -->
|
© Copyright <strong><span>USOdy</span></strong>. All Rights Reserved
|
||||||
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a> // DeviceHub {{ version }}
|
</div>
|
||||||
</div>
|
<div class="credits">
|
||||||
</footer><!-- End Footer -->
|
<!-- All the links in the footer should remain intact. -->
|
||||||
|
<!-- You can delete the links only if you purchased the pro version. -->
|
||||||
{% endblock body %}
|
<!-- Licensing information: https://bootstrapmade.com/license/ -->
|
||||||
|
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/nice-admin-bootstrap-admin-html-template/ -->
|
||||||
|
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a> // DeviceHub {{ version }}
|
||||||
|
</div>
|
||||||
|
</footer><!-- End Footer -->
|
||||||
|
|
||||||
|
<!-- API_CALLS -->
|
||||||
|
<script>
|
||||||
|
const API_URLS = {
|
||||||
|
Auth_Token: `Basic ${btoa("{{ current_user.token }}:")}`, //
|
||||||
|
currentUserID: "{{ current_user.id }}",
|
||||||
|
lots: "{{ url_for('Lot.main') }}",
|
||||||
|
lots_detail: "{{ url_for('inventory.lotdevicelist', lot_id='ReplaceTEXT') }}",
|
||||||
|
devices: "{{ url_for('Device.main') }}",
|
||||||
|
devices_detail: "{{ url_for('inventory.device_details', id='ReplaceTEXT')}}"
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{% endblock body %}
|
||||||
|
|
Reference in New Issue