2019-08-20 09:24:52 +00:00
|
|
|
class JobList extends List {
|
2019-09-18 09:32:35 +00:00
|
|
|
constructor(idOrElement, subscriberList, options) {
|
2019-08-20 09:24:52 +00:00
|
|
|
super(idOrElement, options);
|
2019-09-18 09:32:35 +00:00
|
|
|
subscriberList.push(this);
|
2019-08-23 13:05:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-18 09:32:35 +00:00
|
|
|
_init(jobs) {
|
2019-08-30 11:31:00 +00:00
|
|
|
for (let [id, job] of Object.entries(jobs)) {
|
|
|
|
this.addJob(job);
|
2019-08-28 15:31:09 +00:00
|
|
|
}
|
|
|
|
|
2019-08-30 12:00:08 +00:00
|
|
|
this.update()
|
2019-08-28 15:31:09 +00:00
|
|
|
List.updatePagination(this);
|
2019-08-20 09:24:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-08-30 11:31:00 +00:00
|
|
|
_update(patch) {
|
|
|
|
var item, jobStatusElement, newStatusColor, operation, pathArray, status,
|
2019-09-02 13:24:09 +00:00
|
|
|
statusColor;
|
2019-08-30 11:31:00 +00:00
|
|
|
|
|
|
|
for (operation of patch) {
|
2019-09-02 07:17:13 +00:00
|
|
|
/* "/jobId/valueName" -> ["jobId", "valueName"] */
|
2019-08-30 11:31:00 +00:00
|
|
|
pathArray = operation.path.split("/").slice(1);
|
|
|
|
switch(operation.op) {
|
|
|
|
case "add":
|
|
|
|
this.addJob(operation.value);
|
2019-08-30 12:00:08 +00:00
|
|
|
this.update();
|
|
|
|
List.updatePagination(this);
|
2019-08-30 11:31:00 +00:00
|
|
|
break;
|
|
|
|
case "remove":
|
|
|
|
this.remove("id", pathArray[0]);
|
2019-08-30 12:00:08 +00:00
|
|
|
List.updatePagination(this);
|
2019-08-30 11:31:00 +00:00
|
|
|
break;
|
|
|
|
case "replace":
|
|
|
|
item = this.get("id", pathArray[0])[0];
|
2019-09-02 13:24:09 +00:00
|
|
|
switch(pathArray[1]) {
|
2019-08-30 11:31:00 +00:00
|
|
|
case "description":
|
|
|
|
item.values({"description": operation.value});
|
|
|
|
break;
|
|
|
|
case "status":
|
|
|
|
jobStatusElement = item.elm.querySelector(".status");
|
|
|
|
status = jobStatusElement.innerHTML;
|
2019-09-03 07:07:09 +00:00
|
|
|
statusColor = JobList.STATUS_COLORS[status]
|
|
|
|
|| JobList.STATUS_COLORS['default'];
|
|
|
|
newStatusColor = JobList.STATUS_COLORS[operation.value]
|
|
|
|
|| JobList.STATUS_COLORS['default'];
|
2019-08-30 11:31:00 +00:00
|
|
|
jobStatusElement.classList.remove(statusColor);
|
|
|
|
jobStatusElement.classList.add(newStatusColor);
|
|
|
|
jobStatusElement.innerHTML = operation.value;
|
2019-08-30 12:00:08 +00:00
|
|
|
break;
|
2019-08-30 11:31:00 +00:00
|
|
|
case "title":
|
|
|
|
item.values({"title": operation.value});
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
addJob(job) {
|
2019-08-20 09:24:52 +00:00
|
|
|
var jobDescriptionElement, jobElement, jobServiceElement, jobStatusElement,
|
2019-08-30 11:31:00 +00:00
|
|
|
jobTitleElement, serviceColor, serviceIcon, statusColor;
|
2019-08-20 09:24:52 +00:00
|
|
|
|
|
|
|
jobDescriptionElement = document.createElement("p");
|
|
|
|
jobDescriptionElement.classList.add("description");
|
|
|
|
jobDescriptionElement.innerText = job.description;
|
|
|
|
jobElement = document.createElement("a");
|
|
|
|
jobElement.classList.add("avatar", "collection-item");
|
|
|
|
jobElement.dataset.id = job.id;
|
|
|
|
jobElement.href = `/jobs/${job.id}`;
|
2019-09-03 07:07:09 +00:00
|
|
|
serviceColor = JobList.SERVICE_COLORS[job.service]
|
|
|
|
|| JobList.SERVICE_COLORS['default'];
|
|
|
|
serviceIcon = JobList.SERVICE_ICONS[job.service]
|
|
|
|
|| JobList.SERVICE_ICONS['default'];
|
2019-08-20 09:24:52 +00:00
|
|
|
jobServiceElement = document.createElement("i");
|
2019-09-03 07:07:09 +00:00
|
|
|
jobServiceElement.classList.add(
|
|
|
|
"circle",
|
|
|
|
"material-icons",
|
|
|
|
"service-icon",
|
|
|
|
serviceColor
|
|
|
|
);
|
2019-08-30 11:31:00 +00:00
|
|
|
jobServiceElement.innerText = serviceIcon;
|
2019-09-03 07:07:09 +00:00
|
|
|
statusColor = JobList.STATUS_COLORS[job.status]
|
|
|
|
|| JobList.STATUS_COLORS['default'];
|
2019-08-20 09:24:52 +00:00
|
|
|
jobStatusElement = document.createElement("span");
|
2019-08-30 11:31:00 +00:00
|
|
|
jobStatusElement.classList.add("badge", "new", "status", statusColor);
|
2019-08-20 09:24:52 +00:00
|
|
|
jobStatusElement.dataset.badgeCaption = "";
|
|
|
|
jobStatusElement.innerText = job.status;
|
|
|
|
jobTitleElement = document.createElement("span");
|
|
|
|
jobTitleElement.classList.add("title");
|
|
|
|
jobTitleElement.innerText = job.title;
|
|
|
|
|
|
|
|
jobElement.appendChild(jobServiceElement);
|
|
|
|
jobElement.appendChild(jobStatusElement);
|
|
|
|
jobElement.appendChild(jobTitleElement);
|
|
|
|
jobElement.appendChild(jobDescriptionElement);
|
|
|
|
|
2019-08-30 11:31:00 +00:00
|
|
|
this.add(
|
|
|
|
[{description: job.description, id: job.id, title: job.title}],
|
2019-09-02 07:17:13 +00:00
|
|
|
function(items) {items[0].elm = jobElement;}
|
2019-08-30 11:31:00 +00:00
|
|
|
);
|
2019-08-20 09:24:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
JobList.SERVICE_COLORS = {"nlp": "blue",
|
|
|
|
"ocr": "green",
|
|
|
|
"default": "red"};
|
|
|
|
JobList.SERVICE_ICONS = {"nlp": "format_textdirection_l_to_r",
|
|
|
|
"ocr": "find_in_page",
|
|
|
|
"default": "help"};
|
|
|
|
JobList.STATUS_COLORS = {"pending": "amber",
|
|
|
|
"running": "indigo",
|
|
|
|
"complete": "teal",
|
|
|
|
"default": "red"};
|