mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 02:13:51 -04:00
* Squashed * Change strategy - now pre-measure buckets offscreen, so don't need to worry about sub-bucket scroll preservation * Reduce jank on scroll, delay DOM updates until after scroll * css opt, log measure time * Trickle out queue while scrolling, flush when stopped * yay * Cleanup cleanup... * everybody... * everywhere... * Clean up cleanup! * Everybody do their share * CLEANUP! * package-lock ? * dynamic measure, todo * Fix web test * type lint * fix e2e * e2e test * Better scrollbar * Tuning, and more tunables * Tunable tweaks, more tunables * Scrollbar dots and viewport events * lint * Tweaked tunnables, use requestIdleCallback for garbage tasks, bug fixes * New tunables, and don't update url by default * Bug fixes * Bug fix, with debug * Fix flickr, fix graybox bug, reduced debug * Refactor/cleanup * Fix * naming * Final cleanup * review comment * Forgot to update this after naming change * scrubber works, with debug * cleanup * Rename scrollbar to scrubber * rename to * left over rename and change to previous album bar * bugfix addassets, comments * missing destroy(), cleanup --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
125 lines
4.4 KiB
Svelte
125 lines
4.4 KiB
Svelte
<script lang="ts">
|
|
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 { fileUploadHandler, openFileUploadDialog } from '$lib/utils/file-uploader';
|
|
import type { AlbumResponseDto, SharedLinkResponseDto, UserResponseDto } from '@immich/sdk';
|
|
import { createAssetInteractionStore } from '$lib/stores/asset-interaction.store';
|
|
import { AssetStore } from '$lib/stores/assets.store';
|
|
import { downloadAlbum } from '$lib/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 ImmichLogoSmallLink from '../shared-components/immich-logo-small-link.svelte';
|
|
import ThemeButton from '../shared-components/theme-button.svelte';
|
|
import { shortcut } from '$lib/actions/shortcut';
|
|
import { mdiFileImagePlusOutline, mdiFolderDownloadOutline } from '@mdi/js';
|
|
import { handlePromiseError } from '$lib/utils';
|
|
import AlbumSummary from './album-summary.svelte';
|
|
import { t } from 'svelte-i18n';
|
|
import { onDestroy } from 'svelte';
|
|
|
|
export let sharedLink: SharedLinkResponseDto;
|
|
export let user: UserResponseDto | undefined = undefined;
|
|
|
|
const album = sharedLink.album as AlbumResponseDto;
|
|
let innerWidth: number;
|
|
|
|
let { isViewing: showAssetViewer } = assetViewingStore;
|
|
|
|
const assetStore = new AssetStore({ albumId: album.id, order: album.order });
|
|
const assetInteractionStore = createAssetInteractionStore();
|
|
const { isMultiSelectState, selectedAssets } = assetInteractionStore;
|
|
|
|
dragAndDropFilesStore.subscribe((value) => {
|
|
if (value.isDragging && value.files.length > 0) {
|
|
handlePromiseError(fileUploadHandler(value.files, album.id));
|
|
dragAndDropFilesStore.set({ isDragging: false, files: [] });
|
|
}
|
|
});
|
|
onDestroy(() => {
|
|
assetStore.destroy();
|
|
});
|
|
</script>
|
|
|
|
<svelte:window
|
|
use:shortcut={{
|
|
shortcut: { key: 'Escape' },
|
|
onShortcut: () => {
|
|
if (!$showAssetViewer && $isMultiSelectState) {
|
|
assetInteractionStore.clearMultiselect();
|
|
}
|
|
},
|
|
}}
|
|
bind:innerWidth
|
|
/>
|
|
|
|
<header>
|
|
{#if $isMultiSelectState}
|
|
<AssetSelectControlBar
|
|
ownerId={user?.id}
|
|
assets={$selectedAssets}
|
|
clearSelect={() => assetInteractionStore.clearMultiselect()}
|
|
>
|
|
<SelectAllAssets {assetStore} {assetInteractionStore} />
|
|
{#if sharedLink.allowDownload}
|
|
<DownloadAction filename="{album.albumName}.zip" />
|
|
{/if}
|
|
</AssetSelectControlBar>
|
|
{:else}
|
|
<ControlAppBar showBackButton={false}>
|
|
<svelte:fragment slot="leading">
|
|
<ImmichLogoSmallLink width={innerWidth} />
|
|
</svelte:fragment>
|
|
|
|
<svelte:fragment slot="trailing">
|
|
{#if sharedLink.allowUpload}
|
|
<CircleIconButton
|
|
title={$t('add_photos')}
|
|
on:click={() => openFileUploadDialog({ albumId: album.id })}
|
|
icon={mdiFileImagePlusOutline}
|
|
/>
|
|
{/if}
|
|
|
|
{#if album.assetCount > 0 && sharedLink.allowDownload}
|
|
<CircleIconButton
|
|
title={$t('download')}
|
|
on:click={() => downloadAlbum(album)}
|
|
icon={mdiFolderDownloadOutline}
|
|
/>
|
|
{/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">
|
|
<AssetGrid enableRouting={true} {album} {assetStore} {assetInteractionStore}>
|
|
<section class="pt-8 md:pt-24">
|
|
<!-- ALBUM TITLE -->
|
|
<h1
|
|
class="bg-immich-bg text-2xl md:text-4xl lg:text-6xl text-immich-primary outline-none transition-all dark:bg-immich-dark-bg dark:text-immich-dark-primary"
|
|
>
|
|
{album.albumName}
|
|
</h1>
|
|
|
|
{#if album.assetCount > 0}
|
|
<AlbumSummary {album} />
|
|
{/if}
|
|
|
|
<!-- ALBUM DESCRIPTION -->
|
|
{#if album.description}
|
|
<p
|
|
class="whitespace-pre-line mb-12 mt-6 w-full pb-2 text-left font-medium text-base text-black dark:text-gray-300"
|
|
>
|
|
{album.description}
|
|
</p>
|
|
{/if}
|
|
</section>
|
|
</AssetGrid>
|
|
</main>
|