mirror of
https://github.com/immich-app/immich.git
synced 2025-03-11 02:23:09 -05:00
162 lines
5.6 KiB
Svelte
162 lines
5.6 KiB
Svelte
<script lang="ts">
|
|
import { browser } from '$app/environment';
|
|
import SelectAllAssets from '$lib/components/photos-page/actions/select-all-assets.svelte';
|
|
import { assetViewingStore } from '$lib/stores/asset-viewing.store';
|
|
import { dragAndDropFilesStore } from '$lib/stores/drag-and-drop-files.store';
|
|
import { locale } from '$lib/stores/preferences.store';
|
|
import { fileUploadHandler, openFileUploadDialog } from '$lib/utils/file-uploader';
|
|
import { TimeBucketSize, type AlbumResponseDto, type SharedLinkResponseDto } from '@api';
|
|
import { onDestroy, onMount } from 'svelte';
|
|
import FileImagePlusOutline from 'svelte-material-icons/FileImagePlusOutline.svelte';
|
|
import FolderDownloadOutline from 'svelte-material-icons/FolderDownloadOutline.svelte';
|
|
import { dateFormats } from '../../constants';
|
|
import { createAssetInteractionStore } from '../../stores/asset-interaction.store';
|
|
import { AssetStore } from '../../stores/assets.store';
|
|
import { downloadArchive } from '../../utils/asset-utils';
|
|
import CircleIconButton from '../elements/buttons/circle-icon-button.svelte';
|
|
import DownloadAction from '../photos-page/actions/download-action.svelte';
|
|
import AssetGrid from '../photos-page/asset-grid.svelte';
|
|
import AssetSelectControlBar from '../photos-page/asset-select-control-bar.svelte';
|
|
import ControlAppBar from '../shared-components/control-app-bar.svelte';
|
|
import ImmichLogo from '../shared-components/immich-logo.svelte';
|
|
import ThemeButton from '../shared-components/theme-button.svelte';
|
|
|
|
export let sharedLink: SharedLinkResponseDto;
|
|
|
|
const album = sharedLink.album as AlbumResponseDto;
|
|
|
|
let { isViewing: showAssetViewer } = assetViewingStore;
|
|
|
|
const assetStore = new AssetStore({ size: TimeBucketSize.Month, albumId: album.id, key: sharedLink.key });
|
|
const assetInteractionStore = createAssetInteractionStore();
|
|
const { isMultiSelectState, selectedAssets } = assetInteractionStore;
|
|
|
|
dragAndDropFilesStore.subscribe((value) => {
|
|
if (value.isDragging && value.files.length > 0) {
|
|
fileUploadHandler(value.files, album.id, sharedLink.key);
|
|
dragAndDropFilesStore.set({ isDragging: false, files: [] });
|
|
}
|
|
});
|
|
|
|
const getDateRange = () => {
|
|
const { startDate, endDate } = album;
|
|
|
|
let start = '';
|
|
let end = '';
|
|
|
|
if (startDate) {
|
|
start = new Date(startDate).toLocaleDateString($locale, dateFormats.album);
|
|
}
|
|
|
|
if (endDate) {
|
|
end = new Date(endDate).toLocaleDateString($locale, dateFormats.album);
|
|
}
|
|
|
|
if (startDate && endDate && start !== end) {
|
|
return `${start} - ${end}`;
|
|
}
|
|
|
|
if (start) {
|
|
return start;
|
|
}
|
|
|
|
return '';
|
|
};
|
|
|
|
const onKeyboardPress = (event: KeyboardEvent) => handleKeyboardPress(event);
|
|
|
|
onMount(async () => {
|
|
document.addEventListener('keydown', onKeyboardPress);
|
|
});
|
|
|
|
onDestroy(() => {
|
|
if (browser) {
|
|
document.removeEventListener('keydown', onKeyboardPress);
|
|
}
|
|
});
|
|
|
|
const handleKeyboardPress = (event: KeyboardEvent) => {
|
|
if (!$showAssetViewer) {
|
|
switch (event.key) {
|
|
case 'Escape':
|
|
if ($isMultiSelectState) {
|
|
assetInteractionStore.clearMultiselect();
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
};
|
|
|
|
const downloadAlbum = async () => {
|
|
await downloadArchive(`${album.albumName}.zip`, { albumId: album.id }, sharedLink.key);
|
|
};
|
|
</script>
|
|
|
|
<header>
|
|
{#if $isMultiSelectState}
|
|
<AssetSelectControlBar assets={$selectedAssets} clearSelect={() => assetInteractionStore.clearMultiselect()}>
|
|
<SelectAllAssets {assetStore} {assetInteractionStore} />
|
|
{#if sharedLink.allowDownload}
|
|
<DownloadAction filename="{album.albumName}.zip" sharedLinkKey={sharedLink.key} />
|
|
{/if}
|
|
</AssetSelectControlBar>
|
|
{:else}
|
|
<ControlAppBar showBackButton={false}>
|
|
<svelte:fragment slot="leading">
|
|
<a
|
|
data-sveltekit-preload-data="hover"
|
|
class="ml-6 flex place-items-center gap-2 hover:cursor-pointer"
|
|
href="https://immich.app"
|
|
>
|
|
<ImmichLogo height={30} width={30} />
|
|
<h1 class="font-immich-title text-lg text-immich-primary dark:text-immich-dark-primary">IMMICH</h1>
|
|
</a>
|
|
</svelte:fragment>
|
|
|
|
<svelte:fragment slot="trailing">
|
|
{#if sharedLink.allowUpload}
|
|
<CircleIconButton
|
|
title="Add Photos"
|
|
on:click={() => openFileUploadDialog(album.id, sharedLink.key)}
|
|
logo={FileImagePlusOutline}
|
|
/>
|
|
{/if}
|
|
|
|
{#if album.assetCount > 0 && sharedLink.allowDownload}
|
|
<CircleIconButton title="Download" on:click={() => downloadAlbum()} logo={FolderDownloadOutline} />
|
|
{/if}
|
|
|
|
<ThemeButton />
|
|
</svelte:fragment>
|
|
</ControlAppBar>
|
|
{/if}
|
|
</header>
|
|
|
|
<main
|
|
class="relative h-screen overflow-hidden bg-immich-bg px-6 pt-[var(--navbar-height)] dark:bg-immich-dark-bg sm:px-12 md:px-24 lg:px-40"
|
|
>
|
|
<AssetGrid {assetStore} {assetInteractionStore} publicSharedKey={sharedLink.key}>
|
|
<section class="pt-24">
|
|
<!-- ALBUM TITLE -->
|
|
<p
|
|
class="bg-immich-bg text-6xl text-immich-primary outline-none transition-all dark:bg-immich-dark-bg dark:text-immich-dark-primary"
|
|
>
|
|
{album.albumName}
|
|
</p>
|
|
|
|
<!-- ALBUM SUMMARY -->
|
|
{#if album.assetCount > 0}
|
|
<span class="my-4 flex gap-2 text-sm font-medium text-gray-500" data-testid="album-details">
|
|
<p class="">{getDateRange()}</p>
|
|
<p>·</p>
|
|
<p>{album.assetCount} items</p>
|
|
</span>
|
|
{/if}
|
|
|
|
<!-- ALBUM DESCRIPTION -->
|
|
<p class="mb-12 mt-6 w-full pb-2 text-left text-lg font-medium dark:text-gray-300">
|
|
{album.description}
|
|
</p>
|
|
</section>
|
|
</AssetGrid>
|
|
</main>
|