mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
47 lines
1.6 KiB
Svelte
47 lines
1.6 KiB
Svelte
<script lang="ts">
|
|
import { Route } from '$lib/route';
|
|
import { userInteraction } from '$lib/stores/user.svelte';
|
|
import { getAssetMediaUrl } from '$lib/utils';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { getAllAlbums } from '@immich/sdk';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
let albums = $state(userInteraction.recentAlbums);
|
|
|
|
const refreshAlbums = async () => {
|
|
try {
|
|
const allAlbums = await getAllAlbums({});
|
|
albums = allAlbums.sort((a, b) => (a.updatedAt > b.updatedAt ? -1 : 1)).slice(0, 3);
|
|
userInteraction.recentAlbums = albums;
|
|
} catch (error) {
|
|
handleError(error, $t('failed_to_load_assets'));
|
|
}
|
|
};
|
|
|
|
$effect(() => {
|
|
if (!userInteraction.recentAlbums) {
|
|
void refreshAlbums();
|
|
}
|
|
});
|
|
</script>
|
|
|
|
{#each albums as album (album.id)}
|
|
<a
|
|
href={Route.viewAlbum(album)}
|
|
title={album.albumName}
|
|
class="flex w-full place-items-center justify-between gap-4 rounded-e-full py-3 transition-[padding] delay-100 duration-100 hover:cursor-pointer hover:bg-subtle hover:text-immich-primary dark:text-immich-dark-fg dark:hover:bg-immich-dark-gray dark:hover:text-immich-dark-primary ps-10 group-hover:sm:px-10 md:px-10"
|
|
>
|
|
<div>
|
|
<div
|
|
class="h-6 w-6 bg-cover rounded bg-gray-200 dark:bg-gray-600"
|
|
style={album.albumThumbnailAssetId
|
|
? `background-image:url('${getAssetMediaUrl({ id: album.albumThumbnailAssetId })}')`
|
|
: ''}
|
|
></div>
|
|
</div>
|
|
<div class="grow text-sm font-medium truncate">
|
|
{album.albumName}
|
|
</div>
|
|
</a>
|
|
{/each}
|