8f981b6052
* feat(web): enhance ux/ui of the album list page * fix unit tests * feat(web): enhance ux/ui of the album list page * fix unit tests * small styling * better dot * lint --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
85 lines
2.8 KiB
Svelte
85 lines
2.8 KiB
Svelte
<script lang="ts">
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
|
import { locale } from '$lib/stores/preferences.store';
|
|
import { user } from '$lib/stores/user.store';
|
|
import type { AlbumResponseDto } from '@immich/sdk';
|
|
import { mdiDotsVertical } from '@mdi/js';
|
|
import { getContextMenuPosition, type ContextMenuPosition } from '$lib/utils/context-menu';
|
|
import { getShortDateRange } from '$lib/utils/date-time';
|
|
import IconButton from '$lib/components/elements/buttons/icon-button.svelte';
|
|
import AlbumCover from '$lib/components/album-page/album-cover.svelte';
|
|
|
|
export let album: AlbumResponseDto;
|
|
export let showOwner = false;
|
|
export let showDateRange = false;
|
|
export let showItemCount = false;
|
|
export let preload = false;
|
|
export let onShowContextMenu: ((position: ContextMenuPosition) => unknown) | undefined = undefined;
|
|
|
|
const showAlbumContextMenu = (e: MouseEvent) => {
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
onShowContextMenu?.(getContextMenuPosition(e));
|
|
};
|
|
</script>
|
|
|
|
<div
|
|
class="group relative rounded-2xl border border-transparent p-5 hover:bg-gray-100 hover:border-gray-200 dark:hover:border-gray-800 dark:hover:bg-gray-900"
|
|
data-testid="album-card"
|
|
>
|
|
{#if onShowContextMenu}
|
|
<div
|
|
id="icon-{album.id}"
|
|
class="absolute right-6 top-6 z-10 opacity-0 group-hover:opacity-100 focus-within:opacity-100"
|
|
data-testid="context-button-parent"
|
|
>
|
|
<IconButton color="transparent-primary" title="Show album options" on:click={showAlbumContextMenu}>
|
|
<Icon path={mdiDotsVertical} size="20" class="icon-white-drop-shadow text-white" />
|
|
</IconButton>
|
|
</div>
|
|
{/if}
|
|
|
|
<AlbumCover {album} {preload} css="h-full w-full transition-all duration-300 hover:shadow-lg" />
|
|
|
|
<div class="mt-4">
|
|
<p
|
|
class="w-full leading-6 text-lg line-clamp-2 font-semibold text-black dark:text-white group-hover:text-immich-primary dark:group-hover:text-immich-dark-primary"
|
|
data-testid="album-name"
|
|
title={album.albumName}
|
|
>
|
|
{album.albumName}
|
|
</p>
|
|
|
|
{#if showDateRange && album.startDate && album.endDate}
|
|
<p class="flex text-sm dark:text-immich-dark-fg capitalize">
|
|
{getShortDateRange(album.startDate, album.endDate)}
|
|
</p>
|
|
{/if}
|
|
|
|
<span class="flex gap-2 text-sm" data-testid="album-details">
|
|
{#if showItemCount}
|
|
<p>
|
|
{album.assetCount.toLocaleString($locale)}
|
|
{album.assetCount === 1 ? `item` : `items`}
|
|
</p>
|
|
{/if}
|
|
|
|
{#if (showOwner || album.shared) && showItemCount}
|
|
<p>•</p>
|
|
{/if}
|
|
|
|
{#if showOwner}
|
|
{#if $user.id === album.ownerId}
|
|
<p>Owned</p>
|
|
{:else if album.owner}
|
|
<p>Shared by {album.owner.name}</p>
|
|
{:else}
|
|
<p>Shared</p>
|
|
{/if}
|
|
{:else if album.shared}
|
|
<p>Shared</p>
|
|
{/if}
|
|
</span>
|
|
</div>
|
|
</div>
|