flamenco/web/app/src/components/jobs/TasksTable.vue
Vivian Leung c5785a7c97 Update Tabulator (#104390)
Updates Tabulator package from 5.4 to 6.3

The relevant breaking change is the change of the `selectable` variable to `selectableRows`

Reviewed-on: https://projects.blender.org/studio/flamenco/pulls/104390
Reviewed-by: Sybren A. Stüvel <sybren@blender.org>
2025-05-27 18:07:42 +02:00

248 lines
8.4 KiB
Vue

<template>
<h3 class="sub-title">Tasks</h3>
<div class="btn-bar-group">
<task-actions-bar />
<div class="align-right">
<status-filter-bar
:availableStatuses="availableStatuses"
:activeStatuses="shownStatuses"
@click="toggleStatusFilter" />
</div>
</div>
<div>
<div class="task-list with-clickable-row" id="flamenco_task_list"></div>
</div>
</template>
<script>
import { TabulatorFull as Tabulator } from 'tabulator-tables';
import * as datetime from '@/datetime';
import * as API from '@/manager-api';
import { indicator } from '@/statusindicator';
import { getAPIClient } from '@/api-client';
import { useTasks } from '@/stores/tasks';
import TaskActionsBar from '@/components/jobs/TaskActionsBar.vue';
import StatusFilterBar from '@/components/StatusFilterBar.vue';
export default {
emits: ['tableRowClicked'],
props: [
'jobID', // ID of the job of which the tasks are shown here.
'taskID', // The active task.
],
components: {
TaskActionsBar,
StatusFilterBar,
},
data: () => {
return {
tasks: useTasks(),
shownStatuses: [],
availableStatuses: [], // Will be filled after data is loaded from the backend.
};
},
mounted() {
// Allow testing from the JS console:
// tasksTableVue.processTaskUpdate({id: "ad0a5a00-5cb8-4e31-860a-8a405e75910e", status: "heyy", updated: DateTime.local().toISO(), previous_status: "uuuuh", name: "Updated manually"});
// tasksTableVue.processTaskUpdate({id: "ad0a5a00-5cb8-4e31-860a-8a405e75910e", status: "heyy", updated: DateTime.local().toISO()});
window.tasksTableVue = this;
const vueComponent = this;
const options = {
// See pkg/api/flamenco-openapi.yaml, schemas Task and TaskUpdate.
columns: [
{ title: 'Num', field: 'index_in_job' },
{
title: 'Status',
field: 'status',
sorter: 'string',
formatter: (cell) => {
const status = cell.getData().status;
const dot = indicator(status);
return `${dot} ${status}`;
},
},
{ title: 'Name', field: 'name', sorter: 'string', minWidth: 104 },
{
title: 'Updated',
field: 'updated',
sorter: 'alphanum',
sorterParams: { alignEmptyValues: 'top' },
formatter(cell) {
const cellValue = cell.getData().updated;
// TODO: if any "{amount} {units} ago" shown, the table should be
// refreshed every few {units}, so that it doesn't show any stale "4
// seconds ago" for days.
return datetime.relativeTime(cellValue);
},
},
],
rowFormatter(row) {
const data = row.getData();
const isActive = data.id === vueComponent.taskID;
row.getElement().classList.toggle('active-row', isActive);
},
initialSort: [{ column: 'updated', dir: 'desc' }],
layout: 'fitDataFill',
layoutColumnsOnNewData: true,
height: '100%', // Must be set in order for the virtual DOM to function correctly.
maxHeight: '100%',
data: [], // Will be filled via a Flamenco API request.
selectableRows: false, // The active and selected tasks are tracked by custom click events.
};
this.tabulator = new Tabulator('#flamenco_task_list', options);
this.tabulator.on('rowClick', this.onRowClick);
this.tabulator.on('tableBuilt', this._onTableBuilt);
window.addEventListener('resize', this.recalcTableHeight);
},
unmounted() {
window.removeEventListener('resize', this.recalcTableHeight);
},
watch: {
jobID() {
this.fetchTasks();
},
taskID(oldID, newID) {
this._reformatRow(oldID);
this._reformatRow(newID);
},
availableStatuses() {
// Statuses changed, so the filter bar could have gone from "no statuses"
// to "any statuses" (or one row of filtering stuff to two, I don't know)
// and changed height.
this.$nextTick(this.recalcTableHeight);
},
},
methods: {
onReconnected() {
// If the connection to the backend was lost, we have likely missed some
// updates. Just fetch the data and start from scratch.
this.fetchTasks();
},
sortData() {
const tab = this.tabulator;
tab.setSort(tab.getSorters()); // This triggers re-sorting.
},
_onTableBuilt() {
this.tabulator.setFilter(this._filterByStatus);
this.fetchTasks();
},
fetchTasks() {
if (!this.jobID) {
this.tabulator.setData([]);
return;
}
const jobsApi = new API.JobsApi(getAPIClient());
jobsApi.fetchJobTasks(this.jobID).then(this.onTasksFetched, function (error) {
// TODO: error handling.
console.error(error);
});
},
onTasksFetched(data) {
// "Down-cast" to TaskUpdate to only get those fields, just for debugging things:
// let tasks = data.tasks.map((j) => API.TaskUpdate.constructFromObject(j));
this.tabulator.setData(data.tasks);
this._refreshAvailableStatuses();
this.recalcTableHeight();
},
processTaskUpdate(taskUpdate) {
// updateData() will only overwrite properties that are actually set on
// taskUpdate, and leave the rest as-is.
if (this.tabulator.initialized) {
this.tabulator
.updateData([taskUpdate])
.then(this.sortData)
.then(() => {
this.tabulator.redraw();
}); // Resize columns based on new data.
}
this._refreshAvailableStatuses();
},
onRowClick(event, row) {
// Take a copy of the data, so that it's decoupled from the tabulator data
// store. There were some issues where navigating to another job would
// overwrite the old job's ID, and this prevents that.
const rowData = plain(row.getData());
this.$emit('tableRowClicked', rowData);
},
toggleStatusFilter(status) {
const asSet = new Set(this.shownStatuses);
if (!asSet.delete(status)) {
asSet.add(status);
}
this.shownStatuses = Array.from(asSet).sort();
this.tabulator.refreshFilter();
},
_filterByStatus(tableItem) {
if (this.shownStatuses.length == 0) {
return true;
}
return this.shownStatuses.indexOf(tableItem.status) >= 0;
},
_refreshAvailableStatuses() {
const statuses = new Set();
for (let row of this.tabulator.getData()) {
statuses.add(row.status);
}
this.availableStatuses = Array.from(statuses).sort();
},
_reformatRow(jobID) {
// Use tab.rowManager.findRow() instead of `tab.getRow()` as the latter
// logs a warning when the row cannot be found.
const row = this.tabulator.rowManager.findRow(jobID);
if (!row) return;
if (row.reformat) row.reformat();
else if (row.reinitialize) row.reinitialize(true);
},
/**
* Recalculate the appropriate table height to fit in the column without making that scroll.
*/
recalcTableHeight() {
if (!this.tabulator.initialized) {
// Sometimes this function is called too early, before the table was initialised.
// After the table is initialised it gets resized anyway, so this call can be ignored.
return;
}
const table = this.tabulator.element;
const tableContainer = table.parentElement;
const outerContainer = tableContainer.parentElement;
if (!outerContainer) {
// This can happen when the component was removed before the function is
// called. This is possible due to the use of Vue's `nextTick()`
// function.
return;
}
const availableHeight = outerContainer.clientHeight - 12; // TODO: figure out where the -12 comes from.
if (tableContainer.offsetParent != tableContainer.parentElement) {
// `offsetParent` is assumed to be the actual column in the 3-column
// view. To ensure this, it's given `position: relative` in the CSS
// styling.
console.warn(
'TaskTable.recalcTableHeight() only works when the offset parent is the real parent of the element.'
);
return;
}
const tableHeight = availableHeight - tableContainer.offsetTop;
if (this.tabulator.element.clientHeight == tableHeight) {
// Setting the height on a tabulator triggers all kinds of things, so
// don't do if it not necessary.
return;
}
this.tabulator.setHeight(tableHeight);
},
},
};
</script>