mirror of
https://github.com/immich-app/immich.git
synced 2025-12-21 01:11:16 +03:00
191 lines
5.9 KiB
Svelte
191 lines
5.9 KiB
Svelte
<script lang="ts">
|
|
import { featureFlags } from '$lib/stores/server-config.store';
|
|
import { getJobName } from '$lib/utils';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { JobCommand, JobName, sendJobCommand, type AllJobStatusResponseDto, type JobCommandDto } from '@immich/sdk';
|
|
import { modalManager, toastManager } from '@immich/ui';
|
|
import {
|
|
mdiContentDuplicate,
|
|
mdiFaceRecognition,
|
|
mdiFileJpgBox,
|
|
mdiFileXmlBox,
|
|
mdiFolderMove,
|
|
mdiImageSearch,
|
|
mdiLibraryShelves,
|
|
mdiTable,
|
|
mdiTagFaces,
|
|
mdiVideo,
|
|
mdiOcr,
|
|
} from '@mdi/js';
|
|
import type { Component } from 'svelte';
|
|
import { t } from 'svelte-i18n';
|
|
import JobTile from './JobTile.svelte';
|
|
import StorageMigrationDescription from './StorageMigrationDescription.svelte';
|
|
|
|
interface Props {
|
|
jobs: AllJobStatusResponseDto;
|
|
}
|
|
|
|
let { jobs = $bindable() }: Props = $props();
|
|
|
|
interface JobDetails {
|
|
title: string;
|
|
subtitle?: string;
|
|
description?: Component;
|
|
allText?: string;
|
|
refreshText?: string;
|
|
missingText: string;
|
|
disabled?: boolean;
|
|
icon: string;
|
|
handleCommand?: (jobId: JobName, jobCommand: JobCommandDto) => Promise<void>;
|
|
}
|
|
|
|
const handleConfirmCommand = async (jobId: JobName, dto: JobCommandDto) => {
|
|
if (dto.force) {
|
|
const isConfirmed = await modalManager.showDialog({
|
|
prompt: $t('admin.confirm_reprocess_all_faces'),
|
|
});
|
|
|
|
if (isConfirmed) {
|
|
await handleCommand(jobId, { command: JobCommand.Start, force: true });
|
|
return;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
await handleCommand(jobId, dto);
|
|
};
|
|
|
|
let jobDetails: Partial<Record<JobName, JobDetails>> = {
|
|
[JobName.ThumbnailGeneration]: {
|
|
icon: mdiFileJpgBox,
|
|
title: $getJobName(JobName.ThumbnailGeneration),
|
|
subtitle: $t('admin.thumbnail_generation_job_description'),
|
|
allText: $t('all'),
|
|
missingText: $t('missing'),
|
|
},
|
|
[JobName.MetadataExtraction]: {
|
|
icon: mdiTable,
|
|
title: $getJobName(JobName.MetadataExtraction),
|
|
subtitle: $t('admin.metadata_extraction_job_description'),
|
|
allText: $t('all'),
|
|
missingText: $t('missing'),
|
|
},
|
|
[JobName.Library]: {
|
|
icon: mdiLibraryShelves,
|
|
title: $getJobName(JobName.Library),
|
|
subtitle: $t('admin.library_tasks_description'),
|
|
missingText: $t('rescan'),
|
|
},
|
|
[JobName.Sidecar]: {
|
|
title: $getJobName(JobName.Sidecar),
|
|
icon: mdiFileXmlBox,
|
|
subtitle: $t('admin.sidecar_job_description'),
|
|
allText: $t('sync'),
|
|
missingText: $t('discover'),
|
|
disabled: !$featureFlags.sidecar,
|
|
},
|
|
[JobName.SmartSearch]: {
|
|
icon: mdiImageSearch,
|
|
title: $getJobName(JobName.SmartSearch),
|
|
subtitle: $t('admin.smart_search_job_description'),
|
|
allText: $t('all'),
|
|
missingText: $t('missing'),
|
|
disabled: !$featureFlags.smartSearch,
|
|
},
|
|
[JobName.DuplicateDetection]: {
|
|
icon: mdiContentDuplicate,
|
|
title: $getJobName(JobName.DuplicateDetection),
|
|
subtitle: $t('admin.duplicate_detection_job_description'),
|
|
allText: $t('all'),
|
|
missingText: $t('missing'),
|
|
disabled: !$featureFlags.duplicateDetection,
|
|
},
|
|
[JobName.FaceDetection]: {
|
|
icon: mdiFaceRecognition,
|
|
title: $getJobName(JobName.FaceDetection),
|
|
subtitle: $t('admin.face_detection_description'),
|
|
allText: $t('reset'),
|
|
refreshText: $t('refresh'),
|
|
missingText: $t('missing'),
|
|
handleCommand: handleConfirmCommand,
|
|
disabled: !$featureFlags.facialRecognition,
|
|
},
|
|
[JobName.FacialRecognition]: {
|
|
icon: mdiTagFaces,
|
|
title: $getJobName(JobName.FacialRecognition),
|
|
subtitle: $t('admin.facial_recognition_job_description'),
|
|
allText: $t('reset'),
|
|
missingText: $t('missing'),
|
|
handleCommand: handleConfirmCommand,
|
|
disabled: !$featureFlags.facialRecognition,
|
|
},
|
|
[JobName.Ocr]: {
|
|
icon: mdiOcr,
|
|
title: $getJobName(JobName.Ocr),
|
|
subtitle: $t('admin.ocr_job_description'),
|
|
allText: $t('all'),
|
|
missingText: $t('missing'),
|
|
disabled: !$featureFlags.ocr,
|
|
},
|
|
[JobName.VideoConversion]: {
|
|
icon: mdiVideo,
|
|
title: $getJobName(JobName.VideoConversion),
|
|
subtitle: $t('admin.video_conversion_job_description'),
|
|
allText: $t('all'),
|
|
missingText: $t('missing'),
|
|
},
|
|
[JobName.StorageTemplateMigration]: {
|
|
icon: mdiFolderMove,
|
|
title: $getJobName(JobName.StorageTemplateMigration),
|
|
missingText: $t('start'),
|
|
description: StorageMigrationDescription,
|
|
},
|
|
[JobName.Migration]: {
|
|
icon: mdiFolderMove,
|
|
title: $getJobName(JobName.Migration),
|
|
subtitle: $t('admin.migration_job_description'),
|
|
missingText: $t('start'),
|
|
},
|
|
};
|
|
|
|
let jobList = Object.entries(jobDetails) as [JobName, JobDetails][];
|
|
|
|
async function handleCommand(jobId: JobName, jobCommand: JobCommandDto) {
|
|
const title = jobDetails[jobId]?.title;
|
|
|
|
try {
|
|
jobs[jobId] = await sendJobCommand({ id: jobId, jobCommandDto: jobCommand });
|
|
|
|
switch (jobCommand.command) {
|
|
case JobCommand.Empty: {
|
|
toastManager.success($t('admin.cleared_jobs', { values: { job: title } }));
|
|
break;
|
|
}
|
|
}
|
|
} catch (error) {
|
|
handleError(error, $t('admin.failed_job_command', { values: { command: jobCommand.command, job: title } }));
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<div class="flex flex-col gap-7">
|
|
{#each jobList as [jobName, { title, subtitle, description, disabled, allText, refreshText, missingText, icon, handleCommand: handleCommandOverride }] (jobName)}
|
|
{@const { jobCounts, queueStatus } = jobs[jobName]}
|
|
<JobTile
|
|
{icon}
|
|
{title}
|
|
{disabled}
|
|
{subtitle}
|
|
{description}
|
|
{allText}
|
|
{refreshText}
|
|
{missingText}
|
|
{jobCounts}
|
|
{queueStatus}
|
|
onCommand={(command) => (handleCommandOverride || handleCommand)(jobName, command)}
|
|
/>
|
|
{/each}
|
|
</div>
|