2022-07-15 23:18:17 -05:00
|
|
|
<script lang="ts">
|
2023-07-01 00:50:47 -04:00
|
|
|
import { browser } from '$app/environment';
|
2023-08-11 12:00:51 -04:00
|
|
|
import { assetViewingStore } from '$lib/stores/asset-viewing.store';
|
2023-07-01 00:50:47 -04:00
|
|
|
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';
|
2023-08-11 12:00:51 -04:00
|
|
|
import type { AlbumResponseDto, AssetResponseDto, SharedLinkResponseDto } from '@api';
|
2023-07-30 18:03:08 +02:00
|
|
|
import { onDestroy, onMount } from 'svelte';
|
2023-07-01 00:50:47 -04:00
|
|
|
import FileImagePlusOutline from 'svelte-material-icons/FileImagePlusOutline.svelte';
|
|
|
|
|
import FolderDownloadOutline from 'svelte-material-icons/FolderDownloadOutline.svelte';
|
2023-08-11 12:00:51 -04:00
|
|
|
import SelectAll from 'svelte-material-icons/SelectAll.svelte';
|
|
|
|
|
import { dateFormats } from '../../constants';
|
|
|
|
|
import { downloadArchive } from '../../utils/asset-utils';
|
2023-07-01 00:50:47 -04:00
|
|
|
import CircleIconButton from '../elements/buttons/circle-icon-button.svelte';
|
|
|
|
|
import DownloadAction from '../photos-page/actions/download-action.svelte';
|
|
|
|
|
import AssetSelectControlBar from '../photos-page/asset-select-control-bar.svelte';
|
|
|
|
|
import ControlAppBar from '../shared-components/control-app-bar.svelte';
|
|
|
|
|
import GalleryViewer from '../shared-components/gallery-viewer/gallery-viewer.svelte';
|
|
|
|
|
import ImmichLogo from '../shared-components/immich-logo.svelte';
|
|
|
|
|
import ThemeButton from '../shared-components/theme-button.svelte';
|
|
|
|
|
|
|
|
|
|
export let album: AlbumResponseDto;
|
2023-08-11 12:00:51 -04:00
|
|
|
export let sharedLink: SharedLinkResponseDto;
|
2023-07-01 00:50:47 -04:00
|
|
|
|
2023-08-01 04:27:56 +03:00
|
|
|
let { isViewing: showAssetViewer } = assetViewingStore;
|
|
|
|
|
|
2023-07-01 00:50:47 -04:00
|
|
|
dragAndDropFilesStore.subscribe((value) => {
|
|
|
|
|
if (value.isDragging && value.files.length > 0) {
|
|
|
|
|
fileUploadHandler(value.files, album.id, sharedLink?.key);
|
|
|
|
|
dragAndDropFilesStore.set({ isDragging: false, files: [] });
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
let multiSelectAsset: Set<AssetResponseDto> = new Set();
|
|
|
|
|
$: isMultiSelectionMode = multiSelectAsset.size > 0;
|
|
|
|
|
|
|
|
|
|
const getDateRange = () => {
|
|
|
|
|
const startDate = new Date(album.assets[0].fileCreatedAt);
|
|
|
|
|
const endDate = new Date(album.assets[album.assetCount - 1].fileCreatedAt);
|
|
|
|
|
|
2023-08-11 12:00:51 -04:00
|
|
|
const startDateString = startDate.toLocaleDateString($locale, dateFormats.album);
|
|
|
|
|
const endDateString = endDate.toLocaleDateString($locale, dateFormats.album);
|
2023-07-01 00:50:47 -04:00
|
|
|
|
|
|
|
|
// If the start and end date are the same, only show one date
|
|
|
|
|
return startDateString === endDateString ? startDateString : `${startDateString} - ${endDateString}`;
|
|
|
|
|
};
|
|
|
|
|
|
2023-07-30 18:03:08 +02:00
|
|
|
const onKeyboardPress = (event: KeyboardEvent) => handleKeyboardPress(event);
|
|
|
|
|
|
2023-07-01 00:50:47 -04:00
|
|
|
onMount(async () => {
|
2023-07-30 18:03:08 +02:00
|
|
|
document.addEventListener('keydown', onKeyboardPress);
|
2023-07-01 00:50:47 -04:00
|
|
|
});
|
|
|
|
|
|
2023-07-30 18:03:08 +02:00
|
|
|
onDestroy(() => {
|
|
|
|
|
if (browser) {
|
|
|
|
|
document.removeEventListener('keydown', onKeyboardPress);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const handleKeyboardPress = (event: KeyboardEvent) => {
|
2023-08-01 04:27:56 +03:00
|
|
|
if (!$showAssetViewer) {
|
2023-07-30 18:03:08 +02:00
|
|
|
switch (event.key) {
|
|
|
|
|
case 'Escape':
|
|
|
|
|
if (isMultiSelectionMode) {
|
|
|
|
|
multiSelectAsset = new Set();
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2023-07-01 00:50:47 -04:00
|
|
|
const downloadAlbum = async () => {
|
2023-07-14 21:25:13 -04:00
|
|
|
await downloadArchive(`${album.albumName}.zip`, { albumId: album.id }, sharedLink?.key);
|
2023-07-01 00:50:47 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleSelectAll = () => {
|
|
|
|
|
multiSelectAsset = new Set(album.assets);
|
|
|
|
|
};
|
2022-07-15 23:18:17 -05:00
|
|
|
</script>
|
|
|
|
|
|
2023-08-11 12:00:51 -04:00
|
|
|
<section class="bg-immich-bg dark:bg-immich-dark-bg">
|
2023-07-01 00:50:47 -04:00
|
|
|
{#if isMultiSelectionMode}
|
|
|
|
|
<AssetSelectControlBar assets={multiSelectAsset} clearSelect={() => (multiSelectAsset = new Set())}>
|
|
|
|
|
<CircleIconButton title="Select all" logo={SelectAll} on:click={handleSelectAll} />
|
2023-08-11 12:00:51 -04:00
|
|
|
{#if sharedLink.allowDownload}
|
|
|
|
|
<DownloadAction filename="{album.albumName}.zip" sharedLinkKey={sharedLink.key} />
|
2023-07-01 00:50:47 -04:00
|
|
|
{/if}
|
|
|
|
|
</AssetSelectControlBar>
|
2023-08-11 12:00:51 -04:00
|
|
|
{:else}
|
|
|
|
|
<ControlAppBar showBackButton={false}>
|
2023-07-01 00:50:47 -04:00
|
|
|
<svelte:fragment slot="leading">
|
2023-08-11 12:00:51 -04:00
|
|
|
<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>
|
2023-07-01 00:50:47 -04:00
|
|
|
</svelte:fragment>
|
|
|
|
|
|
|
|
|
|
<svelte:fragment slot="trailing">
|
2023-08-11 12:00:51 -04:00
|
|
|
{#if sharedLink.allowUpload}
|
|
|
|
|
<CircleIconButton
|
|
|
|
|
title="Add Photos"
|
|
|
|
|
on:click={() => openFileUploadDialog(album.id, sharedLink.key)}
|
|
|
|
|
logo={FileImagePlusOutline}
|
|
|
|
|
/>
|
2023-07-01 00:50:47 -04:00
|
|
|
{/if}
|
|
|
|
|
|
2023-08-11 12:00:51 -04:00
|
|
|
{#if album.assetCount > 0 && sharedLink.allowDownload}
|
|
|
|
|
<CircleIconButton title="Download" on:click={() => downloadAlbum()} logo={FolderDownloadOutline} />
|
2023-07-01 00:50:47 -04:00
|
|
|
{/if}
|
|
|
|
|
|
2023-08-11 12:00:51 -04:00
|
|
|
<ThemeButton />
|
2023-07-01 00:50:47 -04:00
|
|
|
</svelte:fragment>
|
|
|
|
|
</ControlAppBar>
|
|
|
|
|
{/if}
|
|
|
|
|
|
2023-07-18 13:19:39 -05:00
|
|
|
<section class="my-[160px] flex flex-col px-6 sm:px-12 md:px-24 lg:px-40">
|
2023-08-05 22:43:26 -04:00
|
|
|
<!-- ALBUM TITLE -->
|
2023-08-11 12:00:51 -04:00
|
|
|
<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>
|
2023-07-01 00:50:47 -04:00
|
|
|
|
2023-08-05 22:43:26 -04:00
|
|
|
<!-- ALBUM SUMMARY -->
|
2023-07-01 00:50:47 -04:00
|
|
|
{#if album.assetCount > 0}
|
2023-07-18 13:19:39 -05:00
|
|
|
<span class="my-4 flex gap-2 text-sm font-medium text-gray-500" data-testid="album-details">
|
2023-07-01 00:50:47 -04:00
|
|
|
<p class="">{getDateRange()}</p>
|
|
|
|
|
<p>·</p>
|
|
|
|
|
<p>{album.assetCount} items</p>
|
|
|
|
|
</span>
|
|
|
|
|
{/if}
|
|
|
|
|
|
2023-08-05 22:43:26 -04:00
|
|
|
<!-- ALBUM DESCRIPTION -->
|
2023-08-11 12:00:51 -04:00
|
|
|
<p class="mb-12 mt-6 w-full pb-2 text-left text-lg font-medium dark:text-gray-300">
|
|
|
|
|
{album.description}
|
|
|
|
|
</p>
|
2023-08-05 22:43:26 -04:00
|
|
|
|
2023-08-11 12:00:51 -04:00
|
|
|
<GalleryViewer assets={album.assets} {sharedLink} bind:selectedAssets={multiSelectAsset} />
|
2023-07-01 00:50:47 -04:00
|
|
|
</section>
|
2022-07-15 23:18:17 -05:00
|
|
|
</section>
|