mirror of
https://github.com/immich-app/immich.git
synced 2025-11-23 16:50:54 +09:00
105 lines
3.5 KiB
Svelte
105 lines
3.5 KiB
Svelte
<script lang="ts">
|
|
import ServerAboutItem from '$lib/components/ServerAboutItem.svelte';
|
|
import { locale } from '$lib/stores/preferences.store';
|
|
import { type ServerAboutResponseDto, type ServerVersionHistoryResponseDto } from '@immich/sdk';
|
|
import { Alert, Label, Modal, ModalBody } from '@immich/ui';
|
|
import { DateTime } from 'luxon';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
interface Props {
|
|
onClose: () => void;
|
|
info: ServerAboutResponseDto;
|
|
versions: ServerVersionHistoryResponseDto[];
|
|
}
|
|
|
|
let { onClose, info, versions }: Props = $props();
|
|
</script>
|
|
|
|
<Modal title={$t('about')} {onClose}>
|
|
<ModalBody>
|
|
<div class="flex flex-col sm:grid sm:grid-cols-2 gap-4">
|
|
{#if info.sourceRef === 'main' && info.repository === 'immich-app/immich'}
|
|
<Alert color="warning" title={$t('main_branch_warning')} class="col-span-full" size="small" />
|
|
{/if}
|
|
|
|
<ServerAboutItem id="immich" title="Immich" version={info.version} versionHref={info.versionUrl} />
|
|
<ServerAboutItem id="exif" title="ExifTool" version={info.exiftool} />
|
|
<ServerAboutItem id="nodejs" title="Node.js" version={info.nodejs} />
|
|
<ServerAboutItem id="libvips" title="Libvips" version={info.libvips} />
|
|
<ServerAboutItem
|
|
id="imagemagick"
|
|
title="ImageMagick"
|
|
version={info.imagemagick}
|
|
class={(info.imagemagick?.length || 0) > 10 ? 'col-span-2' : ''}
|
|
/>
|
|
<ServerAboutItem
|
|
id="ffmpeg"
|
|
title="FFmpeg"
|
|
version={info.ffmpeg}
|
|
class={(info.ffmpeg?.length || 0) > 10 ? 'col-span-2' : ''}
|
|
/>
|
|
|
|
{#if info.repository && info.repositoryUrl}
|
|
<ServerAboutItem
|
|
id="repository"
|
|
title={$t('repository')}
|
|
version={info.repository}
|
|
versionHref={info.repositoryUrl}
|
|
/>
|
|
{/if}
|
|
|
|
{#if info.sourceRef && info.sourceCommit && info.sourceUrl}
|
|
<ServerAboutItem
|
|
id="source"
|
|
title={$t('source')}
|
|
version="{info.sourceRef}@{info.sourceCommit.slice(0, 9)}"
|
|
versionHref={info.sourceUrl}
|
|
/>
|
|
{/if}
|
|
|
|
{#if info.build && info.buildUrl}
|
|
<ServerAboutItem id="build" title={$t('build')} version={info.build} versionHref={info.buildUrl} />
|
|
{/if}
|
|
|
|
{#if info.buildImage && info.buildImage}
|
|
<ServerAboutItem
|
|
id="build-image"
|
|
title={$t('build_image')}
|
|
version={info.buildImage}
|
|
versionHref={info.buildImageUrl}
|
|
/>
|
|
{/if}
|
|
|
|
<div class="col-span-full">
|
|
<Label size="small" color="primary" for="version-history">{$t('version_history')}</Label>
|
|
<ul id="version-history" class="list-none">
|
|
{#each versions.slice(0, 5) as item (item.id)}
|
|
{@const createdAt = DateTime.fromISO(item.createdAt)}
|
|
<li>
|
|
<span
|
|
class="immich-form-label pb-2 text-xs"
|
|
id="version-history"
|
|
title={createdAt.toLocaleString(DateTime.DATETIME_SHORT_WITH_SECONDS, { locale: $locale })}
|
|
>
|
|
{$t('version_history_item', {
|
|
values: {
|
|
version: item.version,
|
|
date: createdAt.toLocaleString(
|
|
{
|
|
month: 'short',
|
|
day: 'numeric',
|
|
year: 'numeric',
|
|
},
|
|
{ locale: $locale },
|
|
),
|
|
},
|
|
})}
|
|
</span>
|
|
</li>
|
|
{/each}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</ModalBody>
|
|
</Modal>
|