mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
95 lines
2.4 KiB
Svelte
95 lines
2.4 KiB
Svelte
<script lang="ts" context="module">
|
|
type OnShowContextMenu = {
|
|
showalbumcontextmenu: OnShowContextMenuDetail;
|
|
};
|
|
|
|
type OnClick = {
|
|
click: OnClickDetail;
|
|
};
|
|
|
|
export type OnShowContextMenuDetail = { x: number; y: number };
|
|
export type OnClickDetail = AlbumResponseDto;
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import { AlbumResponseDto, api, ThumbnailFormat } from '@api';
|
|
import { createEventDispatcher, onMount } from 'svelte';
|
|
import DotsVertical from 'svelte-material-icons/DotsVertical.svelte';
|
|
import CircleIconButton from '../shared-components/circle-icon-button.svelte';
|
|
|
|
export let album: AlbumResponseDto;
|
|
|
|
let imageData = `/api/asset/thumbnail/${album.albumThumbnailAssetId}?format=${ThumbnailFormat.Webp}`;
|
|
const dispatchClick = createEventDispatcher<OnClick>();
|
|
const dispatchShowContextMenu = createEventDispatcher<OnShowContextMenu>();
|
|
|
|
const loadHighQualityThumbnail = async (thubmnailId: string | null) => {
|
|
if (thubmnailId == null) {
|
|
return;
|
|
}
|
|
|
|
const { data } = await api.assetApi.getAssetThumbnail(thubmnailId, ThumbnailFormat.Jpeg, {
|
|
responseType: 'blob'
|
|
});
|
|
|
|
if (data instanceof Blob) {
|
|
return URL.createObjectURL(data);
|
|
}
|
|
};
|
|
|
|
const showAlbumContextMenu = (e: MouseEvent) => {
|
|
dispatchShowContextMenu('showalbumcontextmenu', {
|
|
x: e.clientX,
|
|
y: e.clientY
|
|
});
|
|
};
|
|
|
|
onMount(async () => {
|
|
imageData = (await loadHighQualityThumbnail(album.albumThumbnailAssetId)) || 'no-thumbnail.png';
|
|
});
|
|
</script>
|
|
|
|
<div
|
|
class="h-[339px] w-[275px] hover:cursor-pointer mt-4 relative"
|
|
on:click={() => dispatchClick('click', album)}
|
|
data-testid="album-card"
|
|
>
|
|
<div
|
|
id={`icon-${album.id}`}
|
|
class="absolute top-2 right-2"
|
|
on:click|stopPropagation|preventDefault={showAlbumContextMenu}
|
|
data-testid="context-button-parent"
|
|
>
|
|
<CircleIconButton
|
|
logo={DotsVertical}
|
|
size={'20'}
|
|
hoverColor={'rgba(95,99,104, 0.5)'}
|
|
logoColor={'#fdf8ec'}
|
|
/>
|
|
</div>
|
|
|
|
<div class={`h-[275px] w-[275px] z-[-1]`}>
|
|
<img
|
|
src={imageData}
|
|
alt={album.id}
|
|
class={`object-cover h-full w-full transition-all z-0 rounded-xl duration-300 hover:shadow-lg`}
|
|
data-testid="album-image"
|
|
/>
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<p class="text-sm font-medium text-gray-800" data-testid="album-name">
|
|
{album.albumName}
|
|
</p>
|
|
|
|
<span class="text-xs flex gap-2" data-testid="album-details">
|
|
<p>{album.assetCount} items</p>
|
|
|
|
{#if album.shared}
|
|
<p>·</p>
|
|
<p>Shared</p>
|
|
{/if}
|
|
</span>
|
|
</div>
|
|
</div>
|