74 lines
2.6 KiB
Svelte
74 lines
2.6 KiB
Svelte
<script lang="ts">
|
|
import { flip } from 'svelte/animate';
|
|
import { slide } from 'svelte/transition';
|
|
import { AppRoute } from '$lib/constants';
|
|
import type { AlbumResponseDto } from '@immich/sdk';
|
|
import { albumViewSettings } from '$lib/stores/preferences.store';
|
|
import type { ContextMenuPosition } from '$lib/utils/context-menu';
|
|
import { type AlbumGroup, isAlbumGroupCollapsed, toggleAlbumGroupCollapsing } from '$lib/utils/album-utils';
|
|
import { mdiChevronRight } from '@mdi/js';
|
|
import AlbumCard from '$lib/components/album-page/album-card.svelte';
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
export let albums: AlbumResponseDto[];
|
|
export let group: AlbumGroup | undefined = undefined;
|
|
export let showOwner = false;
|
|
export let showDateRange = false;
|
|
export let showItemCount = false;
|
|
export let onShowContextMenu: ((position: ContextMenuPosition, album: AlbumResponseDto) => unknown) | undefined =
|
|
undefined;
|
|
|
|
$: isCollapsed = !!group && isAlbumGroupCollapsed($albumViewSettings, group.id);
|
|
|
|
const showContextMenu = (position: ContextMenuPosition, album: AlbumResponseDto) => {
|
|
onShowContextMenu?.(position, album);
|
|
};
|
|
|
|
$: iconRotation = isCollapsed ? 'rotate-0' : 'rotate-90';
|
|
</script>
|
|
|
|
{#if group}
|
|
<div class="grid">
|
|
<button
|
|
type="button"
|
|
on:click={() => toggleAlbumGroupCollapsing(group.id)}
|
|
class="w-fit mt-2 pt-2 pr-2 mb-2 dark:text-immich-dark-fg"
|
|
aria-expanded={!isCollapsed}
|
|
>
|
|
<Icon
|
|
path={mdiChevronRight}
|
|
size="24"
|
|
class="inline-block -mt-2.5 transition-all duration-[250ms] {iconRotation}"
|
|
/>
|
|
<span class="font-bold text-3xl text-black dark:text-white">{group.name}</span>
|
|
<span class="ml-1.5">({$t('albums_count', { values: { count: albums.length } })})</span>
|
|
</button>
|
|
<hr class="dark:border-immich-dark-gray" />
|
|
</div>
|
|
{/if}
|
|
|
|
<div class="mt-4">
|
|
{#if !isCollapsed}
|
|
<div class="grid grid-auto-fill-56 gap-y-4" transition:slide={{ duration: 300 }}>
|
|
{#each albums as album, index (album.id)}
|
|
<a
|
|
data-sveltekit-preload-data="hover"
|
|
href="{AppRoute.ALBUMS}/{album.id}"
|
|
animate:flip={{ duration: 400 }}
|
|
on:contextmenu|preventDefault={(e) => showContextMenu({ x: e.x, y: e.y }, album)}
|
|
>
|
|
<AlbumCard
|
|
{album}
|
|
{showOwner}
|
|
{showDateRange}
|
|
{showItemCount}
|
|
preload={index < 20}
|
|
onShowContextMenu={onShowContextMenu ? (position) => showContextMenu(position, album) : undefined}
|
|
/>
|
|
</a>
|
|
{/each}
|
|
</div>
|
|
{/if}
|
|
</div>
|