File size: 7,345 Bytes
71174bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | <template>
<div>
<div v-if="jobStatusInfos[0][1].length > 0" style="margin-top: -6px"
class="text-primary cancel-pending-btn me-2" @click="cancelAll()">
Cancel All
</div>
<!-- <div
class="me-3 badge bg-primary cancel-pending-btn"
>
btn-sm-->
<!-- </div> -->
<span v-for="(tableData, idx) of allTableData" :key="idx">
<span v-if="isTableVisible(idx)">
<div v-if="tableData && tableData.rows.length > 0">
<Table :tableData="tableData" :caption="jobStatusInfos[idx][0]" @cancelJob="cancelJob"
:noFixedTable="true" initialSortColumnName="Start" initialSortOrder="desc"
:downloadFilenameBase="jobStatusInfos[idx][0]"></Table>
</div>
<div v-else>
<div class="table-title">{{ jobStatusInfos[idx][0] }}</div>
<p style="font-size: 14px">(Queue empty)</p>
</div>
</span>
</span>
</div>
</template>
<script lang="ts">
/* eslint-disable @typescript-eslint/ban-types */
import Table from "@/UI/Components/Table/Table.vue";
import {
ICellValue,
ITableData,
CellValue,
IHeader,
} from "@/UI/Components/Table/Types";
import { Options, Vue } from "vue-class-component";
import { cancelInQueueStore, getQueueStore } from "./QueueStore";
import { IJobStatusInfo, JobStatus } from "./QueueTypes";
import { formatTimestamp } from "@/Core/Utils/TimeUtils";
const headers: [IHeader[], IHeader[]] = [
[
{ text: "", width: 25, sortable: false },
{ text: "Job ID", note: "Job ID (type:id)" },
{ text: "Procs", note: "Number of Processors", width: 80 },
{ text: "Progress", note: "Progress" },
{ text: "Start", note: "Job Start Time" },
],
[
{ text: "Job ID", note: "Job ID (type:id)" },
{ text: "Procs", note: "Number of Processors", width: 80 },
{ text: "Status", note: "Job Status" },
{ text: "Start", note: "Job Start Time" },
{ text: "End", note: "Job End Time" },
],
];
/**
* JobManager
*/
@Options({
components: {
Table,
},
})
export default class JobManager extends Vue {
jobStatusInfos: any[] = [
["Running Jobs", [] as IJobStatusInfo[]],
["Completed Jobs", [] as IJobStatusInfo[]],
];
/**
* Get the table data for the two queues.
*
* @returns {ITableData[]}. The table data for the two queues.
*/
get allTableData(): ITableData[] {
return [this.jobStatusesToTableData(0), this.jobStatusesToTableData(1)];
}
/**
* Determine if the table is visible.
*
* @param {number} tableIdx The table index.
* @returns {boolean} True if the table is visible.
*/
isTableVisible(tableIdx: number): boolean {
// const firstTableDataCount = this.jobStatusInfos[0][1].length;
const secondTableDataCount = this.jobStatusInfos[1][1].length;
// Only show second table if it is not empty
return tableIdx === 0 || secondTableDataCount > 0;
}
/**
* Convert job statuses to table data.
*
* @param {number} tableIdx The table index.
* @returns {ITableData} The table data.
*/
jobStatusesToTableData(tableIdx: number): ITableData {
const jobStatuses = this.jobStatusInfos[tableIdx][1];
// if (this.jobStatusInfos.length === 0) {
// // Not ready yet.
// return [];
// }
// Sort jobStatuses by start time, descending (more recent first)
// jobStatuses.sort((a: any, b: any) => {
// return (b.startTime as number) - (a.startTime as number);
// });
let rows = jobStatuses
.map((r: any) => {
return {
"": {
val: "",
iconClasses: ["far", "fa-rectangle-xmark"],
iconClickEmitName: "cancelJob",
iconShowFilterFunc: (row: {
[key: string]: CellValue;
}): boolean => {
if (row.Status === undefined) {
// This is a little complicated. If it's running,
// status is unambiguous, so it is not shown.
// Consequently, undefined. So this is a way of
// determining that it is currently running. Running
// jobs can be canceled, so return true.
return true;
}
const status = (row.Status as ICellValue)
.val as JobStatus;
// Only pending and running jobs can be cancelled.
return status === JobStatus.Running;
},
} as ICellValue,
"Job ID": r.id,
Procs: r.numProcessors?.toString() as string,
Status: r.status.toString(),
Progress: (100 * r.progress).toFixed(1) + "%",
Start: { sortVal: r.startTime, val: formatTimestamp(r.startTime) },
End: { sortVal: r.endTime, val: formatTimestamp(r.endTime) },
};
});
// Reverse rows so that the most recent job is at the top.
// rows = rows.reverse();
// // Replace timestamp with string version
// rows = rows.map((r: any) => {
// r.Start.val = formatTimestamp(r.Start.sortVal as number);
// r.End.val = formatTimestamp(r.End.sortVal as number);
// // r.Time = new Date(r.Time).toLocaleString();
// return r;
// });
return {
headers: headers[tableIdx],
rows: rows,
} as ITableData;
}
/**
* Cancels all jobs when the user clicks the "Cancel All" button.
*/
cancelAll() {
// Iterate through ones in the running queue and cancel them.
for (const jobStatusInfo of this.jobStatusInfos[0][1]) {
cancelInQueueStore(jobStatusInfo.id);
}
}
/**
* Cancels a job when the user clicks the cancel icon on the table row.
*
* @param {any} row A row from the table describing the job to cancel.
*/
cancelJob(row: { [key: string]: CellValue }) {
// Get the job info. Note it must be in the active queue to get here.
const id = (row["Job ID"] as ICellValue).val as string;
cancelInQueueStore(id);
}
/**
* The mounted function.
*/
mounted() {
// Periodically pull the job manager data
setInterval(() => {
const queueStore = getQueueStore();
this.jobStatusInfos[0][1] = queueStore.running;
this.jobStatusInfos[1][1] = queueStore.done;
}, 1000);
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped lang="scss">
.cancel-pending-btn {
position: absolute;
right: 0;
top: 18px;
font-weight: 400;
cursor: pointer !important;
}
</style>
|