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,4 +1,4 @@
|
||||||
$(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');
|
||||||
|
@ -71,9 +71,9 @@ function removeLot() {
|
||||||
|
|
||||||
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();
|
||||||
|
@ -82,7 +82,7 @@ function removeTag() {
|
||||||
|
|
||||||
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();
|
||||||
|
@ -146,8 +146,8 @@ function get_device_list() {
|
||||||
$("#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);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -166,17 +166,194 @@ function get_device_list() {
|
||||||
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)
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
})
|
|
@ -12,9 +12,15 @@
|
||||||
</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>
|
||||||
|
|
||||||
|
<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>
|
||||||
|
<li class="dropdown-item"><i class="bi bi-laptop"></i> Devices <span class="badge bg-secondary" style="float: right;">DHID</span></li>
|
||||||
|
<li class="dropdown-item"><i class="bi bi-folder2"></i> lots <span class="badge bg-secondary" style="float: right;">Name</span></li>
|
||||||
|
</ul>
|
||||||
</form>
|
</form>
|
||||||
</div><!-- End Search Bar -->
|
</div><!-- End Search Bar -->
|
||||||
|
|
||||||
|
@ -224,4 +230,16 @@
|
||||||
</div>
|
</div>
|
||||||
</footer><!-- End Footer -->
|
</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 %}
|
{% endblock body %}
|
||||||
|
|
Reference in New Issue