2493dfaba3
* feat(server): dynamic job concurrency * styling and add setting info to top of the job list * regenerate api * remove DETECT_OBJECT job --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
161 lines
5.1 KiB
Svelte
161 lines
5.1 KiB
Svelte
<script lang="ts">
|
|
import {
|
|
notificationController,
|
|
NotificationType
|
|
} from '$lib/components/shared-components/notification/notification';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { AllJobStatusResponseDto, api, JobCommand, JobCommandDto, JobName } from '@api';
|
|
import type { ComponentType } from 'svelte';
|
|
import Icon from 'svelte-material-icons/DotsVertical.svelte';
|
|
import FaceRecognition from 'svelte-material-icons/FaceRecognition.svelte';
|
|
import FileJpgBox from 'svelte-material-icons/FileJpgBox.svelte';
|
|
import FileXmlBox from 'svelte-material-icons/FileXmlBox.svelte';
|
|
import FolderMove from 'svelte-material-icons/FolderMove.svelte';
|
|
import Information from 'svelte-material-icons/Information.svelte';
|
|
import Table from 'svelte-material-icons/Table.svelte';
|
|
import TagMultiple from 'svelte-material-icons/TagMultiple.svelte';
|
|
import VectorCircle from 'svelte-material-icons/VectorCircle.svelte';
|
|
import Video from 'svelte-material-icons/Video.svelte';
|
|
import ConfirmDialogue from '../../shared-components/confirm-dialogue.svelte';
|
|
import JobTile from './job-tile.svelte';
|
|
import StorageMigrationDescription from './storage-migration-description.svelte';
|
|
import { AppRoute } from '$lib/constants';
|
|
|
|
export let jobs: AllJobStatusResponseDto;
|
|
|
|
interface JobDetails {
|
|
title: string;
|
|
subtitle?: string;
|
|
allText?: string;
|
|
missingText?: string;
|
|
icon: typeof Icon;
|
|
allowForceCommand?: boolean;
|
|
component?: ComponentType;
|
|
handleCommand?: (jobId: JobName, jobCommand: JobCommandDto) => Promise<void>;
|
|
}
|
|
|
|
let faceConfirm = false;
|
|
|
|
const handleFaceCommand = async (jobId: JobName, dto: JobCommandDto) => {
|
|
if (dto.force) {
|
|
faceConfirm = true;
|
|
return;
|
|
}
|
|
|
|
await handleCommand(jobId, dto);
|
|
};
|
|
|
|
const onFaceConfirm = () => {
|
|
faceConfirm = false;
|
|
handleCommand(JobName.RecognizeFaces, { command: JobCommand.Start, force: true });
|
|
};
|
|
|
|
const jobDetails: Partial<Record<JobName, JobDetails>> = {
|
|
[JobName.ThumbnailGeneration]: {
|
|
icon: FileJpgBox,
|
|
title: api.getJobName(JobName.ThumbnailGeneration),
|
|
subtitle: 'Regenerate JPEG and WebP thumbnails'
|
|
},
|
|
[JobName.MetadataExtraction]: {
|
|
icon: Table,
|
|
title: api.getJobName(JobName.MetadataExtraction),
|
|
subtitle: 'Extract metadata information i.e. GPS, resolution...etc'
|
|
},
|
|
[JobName.Sidecar]: {
|
|
title: api.getJobName(JobName.Sidecar),
|
|
icon: FileXmlBox,
|
|
subtitle: 'Discover or synchronize sidecar metadata from the filesystem',
|
|
allText: 'SYNC',
|
|
missingText: 'DISCOVER'
|
|
},
|
|
[JobName.ObjectTagging]: {
|
|
icon: TagMultiple,
|
|
title: api.getJobName(JobName.ObjectTagging),
|
|
subtitle:
|
|
'Run machine learning to tag objects\nNote that some assets may not have any objects detected'
|
|
},
|
|
[JobName.ClipEncoding]: {
|
|
icon: VectorCircle,
|
|
title: api.getJobName(JobName.ClipEncoding),
|
|
subtitle: 'Run machine learning to generate clip embeddings'
|
|
},
|
|
[JobName.RecognizeFaces]: {
|
|
icon: FaceRecognition,
|
|
title: api.getJobName(JobName.RecognizeFaces),
|
|
subtitle: 'Run machine learning to recognize faces',
|
|
handleCommand: handleFaceCommand
|
|
},
|
|
[JobName.VideoConversion]: {
|
|
icon: Video,
|
|
title: api.getJobName(JobName.VideoConversion),
|
|
subtitle: 'Transcode videos not in the desired format'
|
|
},
|
|
[JobName.StorageTemplateMigration]: {
|
|
icon: FolderMove,
|
|
title: api.getJobName(JobName.StorageTemplateMigration),
|
|
allowForceCommand: false,
|
|
component: StorageMigrationDescription
|
|
}
|
|
};
|
|
|
|
const jobDetailsArray = Object.entries(jobDetails) as [JobName, JobDetails][];
|
|
|
|
async function handleCommand(jobId: JobName, jobCommand: JobCommandDto) {
|
|
const title = jobDetails[jobId]?.title;
|
|
|
|
try {
|
|
const { data } = await api.jobApi.sendJobCommand({ jobId, jobCommandDto: jobCommand });
|
|
jobs[jobId] = data;
|
|
|
|
switch (jobCommand.command) {
|
|
case JobCommand.Empty:
|
|
notificationController.show({
|
|
message: `Cleared jobs for: ${title}`,
|
|
type: NotificationType.Info
|
|
});
|
|
break;
|
|
}
|
|
} catch (error) {
|
|
handleError(error, `Command '${jobCommand.command}' failed for job: ${title}`);
|
|
}
|
|
}
|
|
</script>
|
|
|
|
{#if faceConfirm}
|
|
<ConfirmDialogue
|
|
prompt="Are you sure you want to reprocess all faces? This will also clear named people."
|
|
on:confirm={onFaceConfirm}
|
|
on:cancel={() => (faceConfirm = false)}
|
|
/>
|
|
{/if}
|
|
|
|
<div class="flex flex-col gap-7">
|
|
<div class="flex dark:text-white text-black gap-2 bg-gray-200 dark:bg-gray-700 p-6 rounded-full">
|
|
<Information />
|
|
<p class="text-xs">
|
|
MANAGE JOB CURRENCENCY LEVEL IN
|
|
<a
|
|
href={`${AppRoute.ADMIN_SETTINGS}?open=job-settings`}
|
|
class="text-immich-primary dark:text-immich-dark-primary font-medium">JOB SETTINGS</a
|
|
>
|
|
</p>
|
|
</div>
|
|
|
|
{#each jobDetailsArray as [jobName, { title, subtitle, allText, missingText, allowForceCommand, icon, component, handleCommand: handleCommandOverride }]}
|
|
{@const { jobCounts, queueStatus } = jobs[jobName]}
|
|
<JobTile
|
|
{icon}
|
|
{title}
|
|
{subtitle}
|
|
allText={allText || 'ALL'}
|
|
missingText={missingText || 'MISSING'}
|
|
{allowForceCommand}
|
|
{jobCounts}
|
|
{queueStatus}
|
|
on:command={({ detail }) => (handleCommandOverride || handleCommand)(jobName, detail)}
|
|
>
|
|
<svelte:component this={component} />
|
|
</JobTile>
|
|
{/each}
|
|
</div>
|