Re-render when completed lots changes
This commit is contained in:
parent
26275552c5
commit
2cce025e58
|
@ -332,6 +332,7 @@ async function processSelectedDevices() {
|
||||||
* Get actions and execute call request to add or remove devices from lots
|
* Get actions and execute call request to add or remove devices from lots
|
||||||
*/
|
*/
|
||||||
doActions() {
|
doActions() {
|
||||||
|
var requestCount = 0; // This is for count all requested api count, to perform reRender of table device list
|
||||||
this.list.forEach(async action => {
|
this.list.forEach(async action => {
|
||||||
if (action.type == "Add") {
|
if (action.type == "Add") {
|
||||||
try {
|
try {
|
||||||
|
@ -348,9 +349,26 @@ async function processSelectedDevices() {
|
||||||
this.notifyUser("Fail to remove devices from selected lot/s", error.responseJSON.message, true);
|
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 = []
|
this.list = []
|
||||||
}
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var eventClickActions;
|
var eventClickActions;
|
||||||
|
|
Reference in New Issue