mirror of
https://github.com/immich-app/immich.git
synced 2025-04-16 12:18:51 +02:00
* Revert "fix: album performances (#5224)" This reverts commit c438e179543fe4f079dfa4ec15a227ad89b359ae. * Revert "fix: album sorting options (#5127)" This reverts commit 725f30c49448689f781d6d25374e6d08d1874c4b.
163 lines
5.7 KiB
Svelte
163 lines
5.7 KiB
Svelte
<script lang="ts">
|
|
import { api, AssetResponseDto, SharedLinkResponseDto, SharedLinkType, ThumbnailFormat } from '@api';
|
|
import LoadingSpinner from '../shared-components/loading-spinner.svelte';
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
|
import * as luxon from 'luxon';
|
|
import CircleIconButton from '../elements/buttons/circle-icon-button.svelte';
|
|
import { createEventDispatcher } from 'svelte';
|
|
import { goto } from '$app/navigation';
|
|
import { mdiCircleEditOutline, mdiContentCopy, mdiDelete, mdiOpenInNew } from '@mdi/js';
|
|
|
|
export let link: SharedLinkResponseDto;
|
|
|
|
let expirationCountdown: luxon.DurationObjectUnits;
|
|
const dispatch = createEventDispatcher();
|
|
|
|
const getAssetInfo = async (): Promise<AssetResponseDto> => {
|
|
let assetId = '';
|
|
|
|
if (link.album?.albumThumbnailAssetId) {
|
|
assetId = link.album.albumThumbnailAssetId;
|
|
} else if (link.assets.length > 0) {
|
|
assetId = link.assets[0].id;
|
|
}
|
|
|
|
const { data } = await api.assetApi.getAssetById({ id: assetId });
|
|
|
|
return data;
|
|
};
|
|
|
|
const getCountDownExpirationDate = () => {
|
|
if (!link.expiresAt) {
|
|
return;
|
|
}
|
|
|
|
const expiresAtDate = luxon.DateTime.fromISO(new Date(link.expiresAt).toISOString());
|
|
const now = luxon.DateTime.now();
|
|
|
|
expirationCountdown = expiresAtDate.diff(now, ['days', 'hours', 'minutes', 'seconds']).toObject();
|
|
|
|
if (expirationCountdown.days && expirationCountdown.days > 0) {
|
|
return expiresAtDate.toRelativeCalendar({ base: now, locale: 'en-US', unit: 'days' });
|
|
} else if (expirationCountdown.hours && expirationCountdown.hours > 0) {
|
|
return expiresAtDate.toRelativeCalendar({ base: now, locale: 'en-US', unit: 'hours' });
|
|
} else if (expirationCountdown.minutes && expirationCountdown.minutes > 0) {
|
|
return expiresAtDate.toRelativeCalendar({ base: now, locale: 'en-US', unit: 'minutes' });
|
|
} else if (expirationCountdown.seconds && expirationCountdown.seconds > 0) {
|
|
return expiresAtDate.toRelativeCalendar({ base: now, locale: 'en-US', unit: 'seconds' });
|
|
}
|
|
};
|
|
|
|
const isExpired = (expiresAt: string) => {
|
|
const now = new Date().getTime();
|
|
const expiration = new Date(expiresAt).getTime();
|
|
|
|
return now > expiration;
|
|
};
|
|
</script>
|
|
|
|
<div
|
|
class="flex w-full gap-4 border-b border-gray-200 py-4 transition-all hover:border-immich-primary dark:border-gray-600 dark:text-immich-gray dark:hover:border-immich-dark-primary"
|
|
>
|
|
<div>
|
|
{#await getAssetInfo()}
|
|
<LoadingSpinner />
|
|
{:then asset}
|
|
<img
|
|
id={asset.id}
|
|
src={api.getAssetThumbnailUrl(asset.id, ThumbnailFormat.Webp)}
|
|
alt={asset.id}
|
|
class="h-[100px] w-[100px] rounded-lg object-cover"
|
|
loading="lazy"
|
|
draggable="false"
|
|
/>
|
|
{/await}
|
|
</div>
|
|
|
|
<div class="flex flex-col justify-between">
|
|
<div class="info-top">
|
|
<div class="font-mono text-xs font-semibold text-gray-500 dark:text-gray-400">
|
|
{#if link.expiresAt}
|
|
{#if isExpired(link.expiresAt)}
|
|
<p class="font-bold text-red-600 dark:text-red-400">Expired</p>
|
|
{:else}
|
|
<p>
|
|
Expires {getCountDownExpirationDate()}
|
|
</p>
|
|
{/if}
|
|
{:else}
|
|
<p>Expires ∞</p>
|
|
{/if}
|
|
</div>
|
|
|
|
<div class="text-sm">
|
|
<div class="flex place-items-center gap-2 text-immich-primary dark:text-immich-dark-primary">
|
|
{#if link.type === SharedLinkType.Album}
|
|
<p>
|
|
{link.album?.albumName.toUpperCase()}
|
|
</p>
|
|
{:else if link.type === SharedLinkType.Individual}
|
|
<p>INDIVIDUAL SHARE</p>
|
|
{/if}
|
|
|
|
{#if !link.expiresAt || !isExpired(link.expiresAt)}
|
|
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
|
<div
|
|
class="hover:cursor-pointer"
|
|
title="Go to share page"
|
|
on:click={() => goto(`/share/${link.key}`)}
|
|
on:keydown={() => goto(`/share/${link.key}`)}
|
|
>
|
|
<Icon path={mdiOpenInNew} />
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
|
|
<p class="text-sm">{link.description ?? ''}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="info-bottom flex gap-4">
|
|
{#if link.allowUpload}
|
|
<div
|
|
class="flex w-[80px] place-content-center place-items-center rounded-full bg-immich-primary px-2 py-1 text-xs text-white dark:bg-immich-dark-primary dark:text-immich-dark-gray"
|
|
>
|
|
Upload
|
|
</div>
|
|
{/if}
|
|
|
|
{#if link.allowDownload}
|
|
<div
|
|
class="flex w-[100px] place-content-center place-items-center rounded-full bg-immich-primary px-2 py-1 text-xs text-white dark:bg-immich-dark-primary dark:text-immich-dark-gray"
|
|
>
|
|
Download
|
|
</div>
|
|
{/if}
|
|
|
|
{#if link.showMetadata}
|
|
<div
|
|
class="flex w-[60px] place-content-center place-items-center rounded-full bg-immich-primary px-2 py-1 text-xs text-white dark:bg-immich-dark-primary dark:text-immich-dark-gray"
|
|
>
|
|
EXIF
|
|
</div>
|
|
{/if}
|
|
|
|
{#if link.password}
|
|
<div
|
|
class="flex w-[100px] place-content-center place-items-center rounded-full bg-immich-primary px-2 py-1 text-xs text-white dark:bg-immich-dark-primary dark:text-immich-dark-gray"
|
|
>
|
|
Password
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex flex-auto flex-col place-content-center place-items-end text-right">
|
|
<div class="flex">
|
|
<CircleIconButton icon={mdiDelete} on:click={() => dispatch('delete')} />
|
|
<CircleIconButton icon={mdiCircleEditOutline} on:click={() => dispatch('edit')} />
|
|
<CircleIconButton icon={mdiContentCopy} on:click={() => dispatch('copy')} />
|
|
</div>
|
|
</div>
|
|
</div>
|