flamenco/web/app/src/views/JobsView.vue
Sybren A. Stüvel e7c4285ac6 Manager: Adjust code for renaming SocketIO... types to Event...
No functional changes, just adjusting to the OpenAPI renames.
2024-02-05 09:25:43 +01:00

315 lines
9.1 KiB
Vue

<template>
<div class="col col-1">
<jobs-table
ref="jobsTable"
:activeJobID="jobID"
@tableRowClicked="onTableJobClicked"
@activeJobDeleted="onActiveJobDeleted" />
</div>
<div class="col col-2 job-details-column" id="col-job-details">
<get-the-addon v-if="jobs.isJobless" />
<template v-else>
<job-details
ref="jobDetails"
:jobData="jobs.activeJob"
@reshuffled="_recalcTasksTableHeight" />
<tasks-table
v-if="hasJobData"
ref="tasksTable"
:jobID="jobID"
:taskID="taskID"
@tableRowClicked="onTableTaskClicked" />
</template>
</div>
<div class="col col-3">
<task-details
v-if="hasJobData"
:taskData="tasks.activeTask"
@showTaskLogTail="showTaskLogTail" />
</div>
<footer class="app-footer" v-if="!showFooterPopup" @click="showFooterPopup = true">
<notification-bar />
<div class="app-footer-expand">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round">
<line x1="12" y1="19" x2="12" y2="5"></line>
<polyline points="5 12 12 5 19 12"></polyline>
</svg>
</div>
</footer>
<footer-popup v-if="showFooterPopup" ref="footerPopup" @clickClose="showFooterPopup = false" />
<update-listener
ref="updateListener"
mainSubscription="allJobs"
:subscribedJobID="jobID"
:subscribedTaskID="taskID"
@jobUpdate="onSioJobUpdate"
@taskUpdate="onSioTaskUpdate"
@taskLogUpdate="onSioTaskLogUpdate"
@lastRenderedUpdate="onSioLastRenderedUpdate"
@message="onChatMessage"
@sioReconnected="onSIOReconnected"
@sioDisconnected="onSIODisconnected" />
</template>
<script>
import * as API from '@/manager-api';
import { useJobs } from '@/stores/jobs';
import { useTasks } from '@/stores/tasks';
import { useNotifs } from '@/stores/notifications';
import { useTaskLog } from '@/stores/tasklog';
import { getAPIClient } from '@/api-client';
import FooterPopup from '@/components/footer/FooterPopup.vue';
import GetTheAddon from '@/components/GetTheAddon.vue';
import JobDetails from '@/components/jobs/JobDetails.vue';
import JobsTable from '@/components/jobs/JobsTable.vue';
import NotificationBar from '@/components/footer/NotificationBar.vue';
import TaskDetails from '@/components/jobs/TaskDetails.vue';
import TasksTable from '@/components/jobs/TasksTable.vue';
import UpdateListener from '@/components/UpdateListener.vue';
export default {
name: 'JobsView',
props: ['jobID', 'taskID'], // provided by Vue Router.
components: {
FooterPopup,
GetTheAddon,
JobDetails,
JobsTable,
NotificationBar,
TaskDetails,
TasksTable,
UpdateListener,
},
data: () => ({
messages: [],
jobs: useJobs(),
tasks: useTasks(),
notifs: useNotifs(),
taskLog: useTaskLog(),
showFooterPopup: !!localStorage.getItem('footer-popover-visible'),
}),
computed: {
hasJobData() {
return !objectEmpty(this.jobs.activeJob);
},
},
mounted() {
window.jobsView = this;
window.footerPopup = this.$refs.footerPopup;
// Useful for debugging:
// this.jobs.$subscribe((mutation, state) => {
// console.log("Pinia mutation:", mutation)
// console.log("Pinia state :", state)
// })
this._fetchJob(this.jobID);
this._fetchTask(this.taskID);
window.addEventListener('resize', this._recalcTasksTableHeight);
},
unmounted() {
window.removeEventListener('resize', this._recalcTasksTableHeight);
},
watch: {
jobID(newJobID, oldJobID) {
this._fetchJob(newJobID);
},
taskID(newTaskID, oldTaskID) {
this._fetchTask(newTaskID);
},
showFooterPopup(shown) {
if (shown) localStorage.setItem('footer-popover-visible', 'true');
else localStorage.removeItem('footer-popover-visible');
this._recalcTasksTableHeight();
},
},
methods: {
onTableJobClicked(rowData) {
// Don't route to the current job, as that'll deactivate the current task.
if (rowData.id == this.jobID) return;
this._routeToJob(rowData.id);
},
onTableTaskClicked(rowData) {
this._routeToTask(rowData.id);
},
onActiveJobDeleted(deletedJobUUID) {
this._routeToJobOverview();
},
onSelectedTaskChanged(taskSummary) {
if (!taskSummary) {
// There is no active task.
this.tasks.deselectAllTasks();
return;
}
const jobsAPI = new API.JobsApi(getAPIClient());
jobsAPI.fetchTask(taskSummary.id).then((task) => {
this.tasks.setActiveTask(task);
// Forward the full task to Tabulator, so that that gets updated too.
if (this.$refs.tasksTable) this.$refs.tasksTable.processTaskUpdate(task);
});
},
showTaskLogTail() {
this.showFooterPopup = true;
this.$nextTick(() => {
this.$refs.footerPopup.showTaskLogTail();
});
},
// SocketIO data event handlers:
onSioJobUpdate(jobUpdate) {
this.notifs.addJobUpdate(jobUpdate);
this.jobs.setIsJobless(false);
if (this.$refs.jobsTable) {
this.$refs.jobsTable.processJobUpdate(jobUpdate);
}
if (this.jobID != jobUpdate.id || jobUpdate.was_deleted) {
return;
}
this._fetchJob(this.jobID);
if (jobUpdate.refresh_tasks) {
if (this.$refs.tasksTable) this.$refs.tasksTable.fetchTasks();
this._fetchTask(this.taskID);
}
},
/**
* Event handler for SocketIO task updates.
* @param {API.EventTaskUpdate} taskUpdate
*/
onSioTaskUpdate(taskUpdate) {
if (this.$refs.tasksTable) this.$refs.tasksTable.processTaskUpdate(taskUpdate);
if (this.taskID == taskUpdate.id) this._fetchTask(this.taskID);
this.notifs.addTaskUpdate(taskUpdate);
},
/**
* Event handler for SocketIO task log updates.
* @param {API.EventTaskLogUpdate} taskLogUpdate
*/
onSioTaskLogUpdate(taskLogUpdate) {
this.taskLog.addTaskLogUpdate(taskLogUpdate);
},
/**
* Event handler for SocketIO "last-rendered" updates.
* @param {API.EventLastRenderedUpdate} lastRenderedUpdate
*/
onSioLastRenderedUpdate(lastRenderedUpdate) {
this.$refs.jobDetails.refreshLastRenderedImage(lastRenderedUpdate);
},
/**
* Send to the job overview page, i.e. job view without active job.
*/
_routeToJobOverview() {
const route = { name: 'jobs' };
this.$router.push(route);
},
/**
* @param {string} jobID job ID to navigate to, can be empty string for "no active job".
*/
_routeToJob(jobID) {
const route = { name: 'jobs', params: { jobID: jobID } };
this.$router.push(route);
},
/**
* @param {string} taskID task ID to navigate to within this job, can be
* empty string for "no active task".
*/
_routeToTask(taskID) {
const route = { name: 'jobs', params: { jobID: this.jobID, taskID: taskID } };
this.$router.push(route);
},
/**
* Fetch job info and set the active job once it's received.
* @param {string} jobID job ID, can be empty string for "no job".
*/
_fetchJob(jobID) {
if (!jobID) {
this.jobs.deselectAllJobs();
return;
}
const jobsAPI = new API.JobsApi(getAPIClient());
return jobsAPI
.fetchJob(jobID)
.then((job) => {
this.jobs.setActiveJob(job);
// Forward the full job to Tabulator, so that that gets updated too.
this.$refs.jobsTable.processJobUpdate(job);
this._recalcTasksTableHeight();
})
.catch((err) => {
if (err.status == 404) {
// It can happen that a job cannot be found, for example when it was asynchronously deleted.
this.jobs.deselectAllJobs();
return;
}
console.log(`Unable to fetch job ${jobID}:`, err);
});
},
/**
* Fetch task info and set the active task once it's received.
* @param {string} taskID task ID, can be empty string for "no task".
*/
_fetchTask(taskID) {
if (!taskID) {
this.tasks.deselectAllTasks();
return;
}
const jobsAPI = new API.JobsApi(getAPIClient());
return jobsAPI.fetchTask(taskID).then((task) => {
this.tasks.setActiveTask(task);
// Forward the full task to Tabulator, so that that gets updated too.\
if (this.$refs.tasksTable) this.$refs.tasksTable.processTaskUpdate(task);
});
},
onChatMessage(message) {
console.log('chat message received:', message);
this.messages.push(`${message.text}`);
},
// SocketIO connection event handlers:
onSIOReconnected() {
this.$refs.jobsTable.onReconnected();
if (this.$refs.tasksTable) this.$refs.tasksTable.onReconnected();
},
onSIODisconnected(reason) {},
_recalcTasksTableHeight() {
if (!this.$refs.tasksTable) return;
// Any recalculation should be done after the DOM has updated.
this.$nextTick(this.$refs.tasksTable.recalcTableHeight);
},
},
};
</script>
<style scoped>
.isFetching {
opacity: 50%;
}
</style>