Merge branch 'testing' into change/frontend-fixes
This commit is contained in:
commit
22ddea4a43
|
@ -8,7 +8,9 @@ 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.
|
||||||
|
- [changed] #218 Add reactivity to device lots.
|
||||||
- [fixed] #214 Login workflow
|
- [fixed] #214 Login workflow
|
||||||
|
|
||||||
## [2.0.0] - 2022-03-15
|
## [2.0.0] - 2022-03-15
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -97,62 +97,6 @@ class FilterForm(FlaskForm):
|
||||||
return ['Desktop', 'Laptop', 'Server']
|
return ['Desktop', 'Laptop', 'Server']
|
||||||
|
|
||||||
|
|
||||||
class LotDeviceForm(FlaskForm):
|
|
||||||
lot = StringField('Lot', [validators.UUID()])
|
|
||||||
devices = StringField('Devices', [validators.length(min=1)])
|
|
||||||
|
|
||||||
def validate(self, extra_validators=None):
|
|
||||||
is_valid = super().validate(extra_validators)
|
|
||||||
|
|
||||||
if not is_valid:
|
|
||||||
return False
|
|
||||||
|
|
||||||
self._lot = (
|
|
||||||
Lot.query.outerjoin(Trade)
|
|
||||||
.filter(Lot.id == self.lot.data)
|
|
||||||
.filter(
|
|
||||||
or_(
|
|
||||||
Trade.user_from == g.user,
|
|
||||||
Trade.user_to == g.user,
|
|
||||||
Lot.owner_id == g.user.id,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
.one()
|
|
||||||
)
|
|
||||||
|
|
||||||
devices = set(self.devices.data.split(","))
|
|
||||||
self._devices = (
|
|
||||||
Device.query.filter(Device.id.in_(devices))
|
|
||||||
.filter(Device.owner_id == g.user.id)
|
|
||||||
.distinct()
|
|
||||||
.all()
|
|
||||||
)
|
|
||||||
|
|
||||||
return bool(self._devices)
|
|
||||||
|
|
||||||
def save(self, commit=True):
|
|
||||||
trade = self._lot.trade
|
|
||||||
if trade:
|
|
||||||
for dev in self._devices:
|
|
||||||
if trade not in dev.actions:
|
|
||||||
trade.devices.add(dev)
|
|
||||||
|
|
||||||
if self._devices:
|
|
||||||
self._lot.devices.update(self._devices)
|
|
||||||
db.session.add(self._lot)
|
|
||||||
|
|
||||||
if commit:
|
|
||||||
db.session.commit()
|
|
||||||
|
|
||||||
def remove(self, commit=True):
|
|
||||||
if self._devices:
|
|
||||||
self._lot.devices.difference_update(self._devices)
|
|
||||||
db.session.add(self._lot)
|
|
||||||
|
|
||||||
if commit:
|
|
||||||
db.session.commit()
|
|
||||||
|
|
||||||
|
|
||||||
class LotForm(FlaskForm):
|
class LotForm(FlaskForm):
|
||||||
name = StringField('Name', [validators.length(min=1)])
|
name = StringField('Name', [validators.length(min=1)])
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,6 @@ from ereuse_devicehub.inventory.forms import (
|
||||||
AllocateForm,
|
AllocateForm,
|
||||||
DataWipeForm,
|
DataWipeForm,
|
||||||
FilterForm,
|
FilterForm,
|
||||||
LotDeviceForm,
|
|
||||||
LotForm,
|
LotForm,
|
||||||
NewActionForm,
|
NewActionForm,
|
||||||
NewDeviceForm,
|
NewDeviceForm,
|
||||||
|
@ -109,7 +108,6 @@ class DeviceListMix(GenericMixView):
|
||||||
self.context = {
|
self.context = {
|
||||||
'devices': devices,
|
'devices': devices,
|
||||||
'lots': lots,
|
'lots': lots,
|
||||||
'form_lot_device': LotDeviceForm(),
|
|
||||||
'form_tag_device': TagDeviceForm(),
|
'form_tag_device': TagDeviceForm(),
|
||||||
'form_new_action': form_new_action,
|
'form_new_action': form_new_action,
|
||||||
'form_new_allocate': form_new_allocate,
|
'form_new_allocate': form_new_allocate,
|
||||||
|
@ -153,46 +151,6 @@ class DeviceDetailView(GenericMixView):
|
||||||
return flask.render_template(self.template_name, **context)
|
return flask.render_template(self.template_name, **context)
|
||||||
|
|
||||||
|
|
||||||
class LotDeviceAddView(View):
|
|
||||||
methods = ['POST']
|
|
||||||
decorators = [login_required]
|
|
||||||
template_name = 'inventory/device_list.html'
|
|
||||||
|
|
||||||
def dispatch_request(self):
|
|
||||||
form = LotDeviceForm()
|
|
||||||
if form.validate_on_submit():
|
|
||||||
form.save(commit=False)
|
|
||||||
messages.success(
|
|
||||||
'Add devices to lot "{}" successfully!'.format(form._lot.name)
|
|
||||||
)
|
|
||||||
db.session.commit()
|
|
||||||
else:
|
|
||||||
messages.error('Error adding devices to lot!')
|
|
||||||
|
|
||||||
next_url = request.referrer or url_for('inventory.devicelist')
|
|
||||||
return flask.redirect(next_url)
|
|
||||||
|
|
||||||
|
|
||||||
class LotDeviceDeleteView(View):
|
|
||||||
methods = ['POST']
|
|
||||||
decorators = [login_required]
|
|
||||||
template_name = 'inventory/device_list.html'
|
|
||||||
|
|
||||||
def dispatch_request(self):
|
|
||||||
form = LotDeviceForm()
|
|
||||||
if form.validate_on_submit():
|
|
||||||
form.remove(commit=False)
|
|
||||||
messages.success(
|
|
||||||
'Remove devices from lot "{}" successfully!'.format(form._lot.name)
|
|
||||||
)
|
|
||||||
db.session.commit()
|
|
||||||
else:
|
|
||||||
messages.error('Error removing devices from lot!')
|
|
||||||
|
|
||||||
next_url = request.referrer or url_for('inventory.devicelist')
|
|
||||||
return flask.redirect(next_url)
|
|
||||||
|
|
||||||
|
|
||||||
class LotCreateView(GenericMixView):
|
class LotCreateView(GenericMixView):
|
||||||
methods = ['GET', 'POST']
|
methods = ['GET', 'POST']
|
||||||
decorators = [login_required]
|
decorators = [login_required]
|
||||||
|
@ -607,12 +565,6 @@ devices.add_url_rule(
|
||||||
devices.add_url_rule(
|
devices.add_url_rule(
|
||||||
'/lot/<string:lot_id>/device/', view_func=DeviceListView.as_view('lotdevicelist')
|
'/lot/<string:lot_id>/device/', view_func=DeviceListView.as_view('lotdevicelist')
|
||||||
)
|
)
|
||||||
devices.add_url_rule(
|
|
||||||
'/lot/devices/add/', view_func=LotDeviceAddView.as_view('lot_devices_add')
|
|
||||||
)
|
|
||||||
devices.add_url_rule(
|
|
||||||
'/lot/devices/del/', view_func=LotDeviceDeleteView.as_view('lot_devices_del')
|
|
||||||
)
|
|
||||||
devices.add_url_rule('/lot/add/', view_func=LotCreateView.as_view('lot_add'))
|
devices.add_url_rule('/lot/add/', view_func=LotCreateView.as_view('lot_add'))
|
||||||
devices.add_url_rule(
|
devices.add_url_rule(
|
||||||
'/lot/<string:id>/del/', view_func=LotDeleteView.as_view('lot_del')
|
'/lot/<string:id>/del/', view_func=LotDeleteView.as_view('lot_del')
|
||||||
|
|
|
@ -0,0 +1,76 @@
|
||||||
|
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(ids) {
|
||||||
|
var request = await this.doRequest(API_URLS.devices + '?filter={"id": [' + ids.toString() + ']}', "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 search_device(id) {
|
||||||
|
var request = await this.doRequest(API_URLS.devices + '?filter={"devicehub_id": ["' + id + '"]}', "GET", null)
|
||||||
|
if (request != undefined) return request.items
|
||||||
|
throw request
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add devices to lot
|
||||||
|
* @param {number} lotID lot id
|
||||||
|
* @param {number[]} listDevices list devices id
|
||||||
|
*/
|
||||||
|
async devices_add(lotID, listDevices) {
|
||||||
|
var queryURL = API_URLS.devices_modify.replace("UUID", lotID) + "?" + listDevices.map(deviceID => "id=" + deviceID).join("&");
|
||||||
|
return await Api.doRequest(queryURL, "POST", null);
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove devices from a lot
|
||||||
|
* @param {number} lotID lot id
|
||||||
|
* @param {number[]} listDevices list devices id
|
||||||
|
*/
|
||||||
|
async devices_remove(lotID, listDevices) {
|
||||||
|
var queryURL = API_URLS.devices_modify.replace("UUID", lotID) + "?" + listDevices.map(deviceID => "id=" + deviceID).join("&");
|
||||||
|
return await Api.doRequest(queryURL, "DELETE", null);
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @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,
|
||||||
|
headers: { "Authorization": API_URLS.Auth_Token },
|
||||||
|
body: body
|
||||||
|
});
|
||||||
|
return result;
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -217,4 +217,167 @@
|
||||||
}, 200);
|
}, 200);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Select all functionality
|
||||||
|
*/
|
||||||
|
var btnSelectAll = document.getElementById("SelectAllBTN");
|
||||||
|
var tableListCheckboxes = document.querySelectorAll(".deviceSelect");
|
||||||
|
|
||||||
|
function itemListCheckChanged(event) {
|
||||||
|
let isAllChecked = Array.from(tableListCheckboxes).map(itm => itm.checked);
|
||||||
|
if (isAllChecked.every(bool => bool == true)) {
|
||||||
|
btnSelectAll.checked = true;
|
||||||
|
btnSelectAll.indeterminate = false;
|
||||||
|
} else if (isAllChecked.every(bool => bool == false)) {
|
||||||
|
btnSelectAll.checked = false;
|
||||||
|
btnSelectAll.indeterminate = false;
|
||||||
|
} else {
|
||||||
|
btnSelectAll.indeterminate = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tableListCheckboxes.forEach(item => {
|
||||||
|
item.addEventListener("click", itemListCheckChanged);
|
||||||
|
})
|
||||||
|
|
||||||
|
btnSelectAll.addEventListener("click", event => {
|
||||||
|
let checkedState = event.target.checked;
|
||||||
|
tableListCheckboxes.forEach(ckeckbox => ckeckbox.checked = checkedState);
|
||||||
|
})
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Avoid hide dropdown when user clicked inside
|
||||||
|
*/
|
||||||
|
document.getElementById("dropDownLotsSelector").addEventListener("click", event => {
|
||||||
|
event.stopPropagation();
|
||||||
|
})
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Search form functionality
|
||||||
|
*/
|
||||||
|
window.addEventListener("DOMContentLoaded", () => {
|
||||||
|
var searchForm = document.getElementById("SearchForm")
|
||||||
|
var inputSearch = document.querySelector("#SearchForm > input")
|
||||||
|
var doSearch = true
|
||||||
|
|
||||||
|
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++;
|
||||||
|
setTimeout(() => {
|
||||||
|
if (resultCount == 2 && document.getElementById("dropdown-search-list").children.length == 2) {
|
||||||
|
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.search_device(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)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
|
|
@ -180,3 +180,205 @@ function export_file(type_file) {
|
||||||
$("#exportAlertModal").click();
|
$("#exportAlertModal").click();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reactive lots button
|
||||||
|
*/
|
||||||
|
async function processSelectedDevices() {
|
||||||
|
class Actions {
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
this.list = []; // list of petitions of requests @item --> {type: ["Remove" | "Add"], "LotID": string, "devices": number[]}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Manage the actions that will be performed when applying the changes
|
||||||
|
* @param {*} ev event (Should be a checkbox type)
|
||||||
|
* @param {string} lotID lot id
|
||||||
|
* @param {number} deviceID device id
|
||||||
|
*/
|
||||||
|
manage(event, lotID, deviceListID) {
|
||||||
|
event.preventDefault();
|
||||||
|
const indeterminate = event.srcElement.indeterminate;
|
||||||
|
const checked = !event.srcElement.checked;
|
||||||
|
|
||||||
|
var found = this.list.filter(list => list.lotID == lotID)[0];
|
||||||
|
var foundIndex = found != undefined ? this.list.findLastIndex(x => x.lotID == found.lotID) : -1;
|
||||||
|
|
||||||
|
if (checked) {
|
||||||
|
if (found != undefined && found.type == "Remove") {
|
||||||
|
if (found.isFromIndeterminate == true) {
|
||||||
|
found.type = "Add";
|
||||||
|
this.list[foundIndex] = found;
|
||||||
|
} else {
|
||||||
|
this.list = this.list.filter(list => list.lotID != lotID);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.list.push({ type: "Add", lotID: lotID, devices: deviceListID, isFromIndeterminate: indeterminate });
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (found != undefined && found.type == "Add") {
|
||||||
|
if (found.isFromIndeterminate == true) {
|
||||||
|
found.type = "Remove";
|
||||||
|
this.list[foundIndex] = found;
|
||||||
|
} else {
|
||||||
|
this.list = this.list.filter(list => list.lotID != lotID);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.list.push({ type: "Remove", lotID: lotID, devices: deviceListID, isFromIndeterminate: indeterminate });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.list.length > 0) {
|
||||||
|
document.getElementById("ApplyDeviceLots").classList.remove("disabled");
|
||||||
|
} else {
|
||||||
|
document.getElementById("ApplyDeviceLots").classList.add("disabled");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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) {
|
||||||
|
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>`;
|
||||||
|
if (toastText && toastText.length > 0) {
|
||||||
|
toast.innerHTML += `<br>${toastText}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
document.getElementById("NotificationsContainer").appendChild(toast);
|
||||||
|
if (!isError) {
|
||||||
|
setTimeout(() => toast.classList.remove("show"), 3000);
|
||||||
|
}
|
||||||
|
setTimeout(() => document.getElementById("NotificationsContainer").innerHTML == "", 3500);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get actions and execute call request to add or remove devices from lots
|
||||||
|
*/
|
||||||
|
doActions() {
|
||||||
|
var requestCount = 0; // This is for count all requested api count, to perform reRender of table device list
|
||||||
|
this.list.forEach(async action => {
|
||||||
|
if (action.type == "Add") {
|
||||||
|
try {
|
||||||
|
await Api.devices_add(action.lotID, action.devices);
|
||||||
|
this.notifyUser("Devices sucefully aded to selected lot/s", "", false);
|
||||||
|
} catch (error) {
|
||||||
|
this.notifyUser("Failed to add devices to selected lot/s", error.responseJSON.message, true);
|
||||||
|
}
|
||||||
|
} else if (action.type == "Remove") {
|
||||||
|
try {
|
||||||
|
await Api.devices_remove(action.lotID, action.devices);
|
||||||
|
this.notifyUser("Devices sucefully removed from selected lot/s", "", false);
|
||||||
|
} catch (error) {
|
||||||
|
this.notifyUser("Fail to remove devices from selected lot/s", error.responseJSON.message, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
requestCount += 1
|
||||||
|
if (requestCount == this.list.length) {
|
||||||
|
this.reRenderTable();
|
||||||
|
this.list = [];
|
||||||
|
}
|
||||||
|
})
|
||||||
|
document.getElementById("dropDownLotsSelector").classList.remove("show");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Re-render list in table
|
||||||
|
*/
|
||||||
|
async reRenderTable() {
|
||||||
|
var newRequest = await Api.doRequest(window.location)
|
||||||
|
|
||||||
|
var tmpDiv = document.createElement("div")
|
||||||
|
tmpDiv.innerHTML = newRequest
|
||||||
|
|
||||||
|
var oldTable = Array.from(document.querySelectorAll("table.table > tbody > tr .deviceSelect")).map(x => x.attributes["data-device-dhid"].value)
|
||||||
|
var 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)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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>`;
|
||||||
|
|
||||||
|
var existLotList = selectedDevicesIDs.map(selected => lot.devices.includes(selected));
|
||||||
|
|
||||||
|
var doc = document.createElement('li');
|
||||||
|
doc.innerHTML = htmlTemplate;
|
||||||
|
|
||||||
|
if (selectedDevicesIDs.length <= 0) {
|
||||||
|
doc.children[0].disabled = true;
|
||||||
|
} else if (existLotList.every(value => value == true)) {
|
||||||
|
doc.children[0].checked = true;
|
||||||
|
} else if (existLotList.every(value => value == false)) {
|
||||||
|
doc.children[0].checked = false;
|
||||||
|
} else {
|
||||||
|
doc.children[0].indeterminate = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
doc.children[0].addEventListener('mouseup', (ev) => actions.manage(ev, lotID, selectedDevicesIDs));
|
||||||
|
elementTarget.append(doc);
|
||||||
|
}
|
||||||
|
|
||||||
|
var listHTML = $("#LotsSelector")
|
||||||
|
|
||||||
|
// Get selected devices
|
||||||
|
var selectedDevicesIDs = $.map($(".deviceSelect").filter(':checked'), function (x) { return parseInt($(x).attr('data')) });
|
||||||
|
if (selectedDevicesIDs.length <= 0) {
|
||||||
|
listHTML.html('<li style="color: red; text-align: center">No devices selected</li>');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Initialize Actions list, and set checkbox triggers
|
||||||
|
var actions = new Actions();
|
||||||
|
if (eventClickActions) {
|
||||||
|
document.getElementById("ApplyDeviceLots").removeEventListener(eventClickActions);
|
||||||
|
}
|
||||||
|
eventClickActions = document.getElementById("ApplyDeviceLots").addEventListener("click", () => actions.doActions());
|
||||||
|
document.getElementById("ApplyDeviceLots").classList.add("disabled");
|
||||||
|
|
||||||
|
try {
|
||||||
|
listHTML.html('<li style="text-align: center"><div class="spinner-border text-info" style="margin: auto" role="status"></div></li>')
|
||||||
|
var devices = await Api.get_devices(selectedDevicesIDs);
|
||||||
|
var lots = await Api.get_lots();
|
||||||
|
|
||||||
|
lots = lots.map(lot => {
|
||||||
|
lot.devices = devices
|
||||||
|
.filter(device => device.lots.filter(devicelot => devicelot.id == lot.id).length > 0)
|
||||||
|
.map(device => parseInt(device.id));
|
||||||
|
return lot;
|
||||||
|
})
|
||||||
|
|
||||||
|
listHTML.html('');
|
||||||
|
lots.forEach(lot => templateLot(lot.id, lot, selectedDevicesIDs, listHTML, actions));
|
||||||
|
} catch (error) {
|
||||||
|
console.log(error);
|
||||||
|
listHTML.html('<li style="color: red; text-align: center">Error feching devices and lots<br>(see console for more details)</li>');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -50,6 +50,20 @@
|
||||||
<!-- Template Main JS File -->
|
<!-- Template Main JS File -->
|
||||||
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
|
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
|
||||||
|
|
||||||
|
<!-- Api backend -->
|
||||||
|
<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_modify: "{{ url_for('Lot.lot-device', id='UUID') }}",
|
||||||
|
devices_detail: "{{ url_for('inventory.device_details', id='ReplaceTEXT')}}"
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script src="{{ url_for('static', filename='js/api.js') }}"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -12,9 +12,21 @@
|
||||||
</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="" 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 -->
|
||||||
|
|
||||||
|
@ -154,7 +166,8 @@
|
||||||
{% else %}
|
{% else %}
|
||||||
<a class="nav-link collapsed" data-bs-target="#temporal-lots-nav" data-bs-toggle="collapse" href="#">
|
<a class="nav-link collapsed" data-bs-target="#temporal-lots-nav" data-bs-toggle="collapse" href="#">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<i class="bi bi-layout-text-window-reverse"></i><span>Temporary Lots</span><i class="bi bi-chevron-down ms-auto"></i>
|
<i class="bi bi-layout-text-window-reverse"></i><span>Temporary Lots</span><i
|
||||||
|
class="bi bi-chevron-down ms-auto"></i>
|
||||||
</a>
|
</a>
|
||||||
{% if lot and lot.is_temporary %}
|
{% if lot and lot.is_temporary %}
|
||||||
<ul id="temporal-lots-nav" class="nav-content collapse show" data-bs-parent="#sidebar-nav">
|
<ul id="temporal-lots-nav" class="nav-content collapse show" data-bs-parent="#sidebar-nav">
|
||||||
|
@ -197,7 +210,8 @@
|
||||||
<div class="alert alert-{{ level}} alert-dismissible fade show" role="alert">
|
<div class="alert alert-{{ level}} alert-dismissible fade show" role="alert">
|
||||||
{% if '_message_icon' in session %}
|
{% if '_message_icon' in session %}
|
||||||
<i class="bi bi-{{ session['_message_icon'][level]}} me-1"></i>
|
<i class="bi bi-{{ session['_message_icon'][level]}} me-1"></i>
|
||||||
{% else %}<!-- fallback if 3rd party libraries (e.g. flask_login.login_required) -->
|
{% else %}
|
||||||
|
<!-- fallback if 3rd party libraries (e.g. flask_login.login_required) -->
|
||||||
<i class="bi bi-info-circle me-1"></i>
|
<i class="bi bi-info-circle me-1"></i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ message }}
|
{{ message }}
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
<div class="modal fade" id="addingLotModal" tabindex="-1" style="display: none;" aria-hidden="true">
|
|
||||||
<div class="modal-dialog">
|
|
||||||
<div class="modal-content">
|
|
||||||
|
|
||||||
<div class="modal-header">
|
|
||||||
<h5 class="modal-title">Adding to a lot</h5>
|
|
||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<form action="{{ url_for('inventory.lot_devices_add') }}" method="post">
|
|
||||||
{{ form_lot_device.csrf_token }}
|
|
||||||
<div class="modal-body">
|
|
||||||
Please write a name of a lot
|
|
||||||
<select class="form-control selectpicker" id="selectLot" name="lot" data-live-search="true">
|
|
||||||
{% for lot in lots %}
|
|
||||||
<option value="{{ lot.id }}">{{ lot.name }}</option>
|
|
||||||
{% endfor %}
|
|
||||||
</select>
|
|
||||||
<input class="devicesList" type="hidden" name="devices" />
|
|
||||||
<p class="text-danger pol">
|
|
||||||
You need select first some device for adding this in a lot
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="modal-footer">
|
|
||||||
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
|
|
||||||
<input type="submit" class="btn btn-primary" style="display: none;" value="Save changes" />
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
|
@ -71,25 +71,22 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="tab-content pt-1">
|
<div class="tab-content pt-1">
|
||||||
<div id="devices-list" class="tab-pane fade devices-list active show">
|
<div id="devices-list" class="tab-pane fade devices-list active show">
|
||||||
|
<label class="btn btn-primary " for="SelectAllBTN"><input type="checkbox" id="SelectAllBTN" autocomplete="off"></label>
|
||||||
<div class="btn-group dropdown m-1">
|
<div class="btn-group dropdown ml-1">
|
||||||
<button id="btnLots" type="button" class="btn btn-primary dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
|
<button id="btnLots" type="button" onclick="processSelectedDevices()" class="btn btn-primary dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<i class="bi bi-folder2"></i>
|
<i class="bi bi-folder2"></i>
|
||||||
Lots
|
Lots
|
||||||
<span class="caret"></span>
|
<span class="caret"></span>
|
||||||
</button>
|
</button>
|
||||||
<span class="d-none" id="activeTradeModal" data-bs-toggle="modal" data-bs-target="#tradeLotModal"></span>
|
<span class="d-none" id="activeTradeModal" data-bs-toggle="modal" data-bs-target="#tradeLotModal"></span>
|
||||||
<ul class="dropdown-menu" aria-labelledby="btnLots">
|
<ul class="dropdown-menu" aria-labelledby="btnLots" style="width: 300px;" id="dropDownLotsSelector">
|
||||||
|
<h6 class="dropdown-header">Select some devices to manage lots</h6>
|
||||||
|
<ul style="list-style-type: none; margin: 0; padding: 0;" class="mx-3" id="LotsSelector"></ul>
|
||||||
|
<li><hr /></li>
|
||||||
<li>
|
<li>
|
||||||
<a href="javascript:void()" class="dropdown-item" data-bs-toggle="modal" data-bs-target="#addingLotModal">
|
<a href="#" class="dropdown-item" id="ApplyDeviceLots">
|
||||||
<i class="bi bi-plus"></i>
|
<i class="bi bi-check"></i>
|
||||||
Add selected Devices to a lot
|
Apply
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="javascript:void()" class="dropdown-item" data-bs-toggle="modal" data-bs-target="#removeLotModal">
|
|
||||||
<i class="bi bi-x"></i>
|
|
||||||
Remove selected devices from a lot
|
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -394,12 +391,12 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="NotificationsContainer" style="position: absolute; bottom: 0; right: 0; margin: 10px; margin-top: 70px; width: calc(100% - 310px);"></div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
{% include "inventory/addDeviceslot.html" %}
|
|
||||||
{% include "inventory/addDevicestag.html" %}
|
{% include "inventory/addDevicestag.html" %}
|
||||||
{% include "inventory/removeDeviceslot.html" %}
|
|
||||||
{% include "inventory/lot_delete_modal.html" %}
|
{% include "inventory/lot_delete_modal.html" %}
|
||||||
{% include "inventory/actions.html" %}
|
{% include "inventory/actions.html" %}
|
||||||
{% include "inventory/allocate.html" %}
|
{% include "inventory/allocate.html" %}
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
<div class="modal fade" id="removeLotModal" tabindex="-1" style="display: none;" aria-hidden="true">
|
|
||||||
<div class="modal-dialog">
|
|
||||||
<div class="modal-content">
|
|
||||||
<div class="modal-header">
|
|
||||||
<h5 class="modal-title">Remove from lot</h5>
|
|
||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<form action="{{ url_for('inventory.lot_devices_del') }}" method="post">
|
|
||||||
{{ form_lot_device.csrf_token }}
|
|
||||||
<div class="modal-body">
|
|
||||||
Please write a name of a lot
|
|
||||||
<select class="form-control selectpicker" id="selectLot" name="lot" data-live-search="true">
|
|
||||||
{% for lot in lots %}
|
|
||||||
<option value="{{ lot.id }}">{{ lot.name }}</option>
|
|
||||||
{% endfor %}
|
|
||||||
</select>
|
|
||||||
<input class="devicesList" type="hidden" name="devices" />
|
|
||||||
<p class="text-danger pol">
|
|
||||||
You need select first some device for remove this from a lot
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="modal-footer">
|
|
||||||
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
|
|
||||||
<input type="submit" class="btn btn-primary" style="display: none;" value="Save changes" />
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
Reference in New Issue