mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
feat: lazy loading on album/sharing/search (#5696)
* feat(frontend): Lazy loading on album * feat(frontend): Lazy loading on search & sharing Issue #5418
This commit is contained in:
parent
9bb6befc92
commit
8e39d389b5
4 changed files with 18 additions and 6 deletions
|
|
@ -14,6 +14,7 @@
|
|||
export let isSharingView = false;
|
||||
export let showItemCount = true;
|
||||
export let showContextMenu = true;
|
||||
export let preload = false;
|
||||
let showVerticalDots = false;
|
||||
|
||||
$: imageData = album.albumThumbnailAssetId
|
||||
|
|
@ -83,6 +84,7 @@
|
|||
|
||||
<div class={`relative aspect-square`}>
|
||||
<img
|
||||
loading={preload ? 'eager' : 'lazy'}
|
||||
src={imageData}
|
||||
alt={album.id}
|
||||
class={`z-0 h-full w-full rounded-3xl object-cover transition-all duration-300 hover:shadow-lg`}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue