forked from Cutlery/immich
		
	
		
			
				
	
	
		
			226 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			Svelte
		
	
	
	
	
	
			
		
		
	
	
			226 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			Svelte
		
	
	
	
	
	
<script lang="ts">
 | 
						|
  import IntersectionObserver from '$lib/components/asset-viewer/intersection-observer.svelte';
 | 
						|
  import Icon from '$lib/components/elements/icon.svelte';
 | 
						|
  import { ProjectionType } from '$lib/constants';
 | 
						|
  import { getAssetFileUrl, getAssetThumbnailUrl, isSharedLink } from '$lib/utils';
 | 
						|
  import { timeToSeconds } from '$lib/utils/date-time';
 | 
						|
  import { AssetTypeEnum, ThumbnailFormat, type AssetResponseDto } from '@immich/sdk';
 | 
						|
  import {
 | 
						|
    mdiArchiveArrowDownOutline,
 | 
						|
    mdiCameraBurst,
 | 
						|
    mdiCheckCircle,
 | 
						|
    mdiHeart,
 | 
						|
    mdiImageBrokenVariant,
 | 
						|
    mdiMotionPauseOutline,
 | 
						|
    mdiMotionPlayOutline,
 | 
						|
    mdiRotate360,
 | 
						|
  } from '@mdi/js';
 | 
						|
  import { createEventDispatcher } from 'svelte';
 | 
						|
  import { fade } from 'svelte/transition';
 | 
						|
  import ImageThumbnail from './image-thumbnail.svelte';
 | 
						|
  import VideoThumbnail from './video-thumbnail.svelte';
 | 
						|
 | 
						|
  const dispatch = createEventDispatcher<{
 | 
						|
    click: { asset: AssetResponseDto };
 | 
						|
    select: { asset: AssetResponseDto };
 | 
						|
    'mouse-event': { isMouseOver: boolean; selectedGroupIndex: number };
 | 
						|
  }>();
 | 
						|
 | 
						|
  export let asset: AssetResponseDto;
 | 
						|
  export let groupIndex = 0;
 | 
						|
  export let thumbnailSize: number | undefined = undefined;
 | 
						|
  export let thumbnailWidth: number | undefined = undefined;
 | 
						|
  export let thumbnailHeight: number | undefined = undefined;
 | 
						|
  export let format: ThumbnailFormat = ThumbnailFormat.Webp;
 | 
						|
  export let selected = false;
 | 
						|
  export let selectionCandidate = false;
 | 
						|
  export let disabled = false;
 | 
						|
  export let readonly = false;
 | 
						|
  export let showArchiveIcon = false;
 | 
						|
  export let showStackedIcon = true;
 | 
						|
  export let intersecting = false;
 | 
						|
 | 
						|
  let className = '';
 | 
						|
  export { className as class };
 | 
						|
 | 
						|
  let mouseOver = false;
 | 
						|
 | 
						|
  $: dispatch('mouse-event', { isMouseOver: mouseOver, selectedGroupIndex: groupIndex });
 | 
						|
 | 
						|
  $: [width, height] = ((): [number, number] => {
 | 
						|
    if (thumbnailSize) {
 | 
						|
      return [thumbnailSize, thumbnailSize];
 | 
						|
    }
 | 
						|
 | 
						|
    if (thumbnailWidth && thumbnailHeight) {
 | 
						|
      return [thumbnailWidth, thumbnailHeight];
 | 
						|
    }
 | 
						|
 | 
						|
    return [235, 235];
 | 
						|
  })();
 | 
						|
 | 
						|
  const thumbnailClickedHandler = () => {
 | 
						|
    if (!disabled) {
 | 
						|
      dispatch('click', { asset });
 | 
						|
    }
 | 
						|
  };
 | 
						|
 | 
						|
  const thumbnailKeyDownHandler = (e: KeyboardEvent) => {
 | 
						|
    if (e.key === 'Enter') {
 | 
						|
      thumbnailClickedHandler();
 | 
						|
    }
 | 
						|
  };
 | 
						|
 | 
						|
  const onIconClickedHandler = (e: MouseEvent) => {
 | 
						|
    e.stopPropagation();
 | 
						|
    if (!disabled) {
 | 
						|
      dispatch('select', { asset });
 | 
						|
    }
 | 
						|
  };
 | 
						|
 | 
						|
  const onMouseEnter = () => {
 | 
						|
    mouseOver = true;
 | 
						|
  };
 | 
						|
 | 
						|
  const onMouseLeave = () => {
 | 
						|
    mouseOver = false;
 | 
						|
  };
 | 
						|
</script>
 | 
						|
 | 
						|
<IntersectionObserver once={false} on:intersected bind:intersecting>
 | 
						|
  <!-- svelte-ignore a11y-no-static-element-interactions -->
 | 
						|
  <div
 | 
						|
    style:width="{width}px"
 | 
						|
    style:height="{height}px"
 | 
						|
    class="group relative overflow-hidden {disabled
 | 
						|
      ? 'bg-gray-300'
 | 
						|
      : 'bg-immich-primary/20 dark:bg-immich-dark-primary/20'}"
 | 
						|
    class:cursor-not-allowed={disabled}
 | 
						|
    class:hover:cursor-pointer={!disabled}
 | 
						|
    on:mouseenter={onMouseEnter}
 | 
						|
    on:mouseleave={onMouseLeave}
 | 
						|
    on:click={thumbnailClickedHandler}
 | 
						|
    on:keydown={thumbnailKeyDownHandler}
 | 
						|
  >
 | 
						|
    {#if intersecting}
 | 
						|
      <div class="absolute z-20 h-full w-full {className}">
 | 
						|
        <!-- Select asset button  -->
 | 
						|
        {#if !readonly && (mouseOver || selected || selectionCandidate)}
 | 
						|
          <button
 | 
						|
            on:click={onIconClickedHandler}
 | 
						|
            class="absolute p-2 focus:outline-none"
 | 
						|
            class:cursor-not-allowed={disabled}
 | 
						|
            role="checkbox"
 | 
						|
            aria-checked={selected}
 | 
						|
            {disabled}
 | 
						|
          >
 | 
						|
            {#if disabled}
 | 
						|
              <Icon path={mdiCheckCircle} size="24" class="text-zinc-800" />
 | 
						|
            {:else if selected}
 | 
						|
              <div class="rounded-full bg-[#D9DCEF] dark:bg-[#232932]">
 | 
						|
                <Icon path={mdiCheckCircle} size="24" class="text-immich-primary" />
 | 
						|
              </div>
 | 
						|
            {:else}
 | 
						|
              <Icon path={mdiCheckCircle} size="24" class="text-white/80 hover:text-white" />
 | 
						|
            {/if}
 | 
						|
          </button>
 | 
						|
        {/if}
 | 
						|
      </div>
 | 
						|
 | 
						|
      <div
 | 
						|
        class="absolute h-full w-full select-none bg-gray-100 transition-transform dark:bg-immich-dark-gray"
 | 
						|
        class:scale-[0.85]={selected}
 | 
						|
        class:rounded-xl={selected}
 | 
						|
      >
 | 
						|
        <!-- Gradient overlay on hover -->
 | 
						|
        <div
 | 
						|
          class="absolute z-10 h-full w-full bg-gradient-to-b from-black/25 via-[transparent_25%] opacity-0 transition-opacity group-hover:opacity-100"
 | 
						|
          class:rounded-xl={selected}
 | 
						|
        />
 | 
						|
 | 
						|
        <!-- Favorite asset star -->
 | 
						|
        {#if !isSharedLink() && asset.isFavorite}
 | 
						|
          <div class="absolute bottom-2 left-2 z-10">
 | 
						|
            <Icon path={mdiHeart} size="24" class="text-white" />
 | 
						|
          </div>
 | 
						|
        {/if}
 | 
						|
 | 
						|
        {#if !isSharedLink() && showArchiveIcon && asset.isArchived}
 | 
						|
          <div class="absolute {asset.isFavorite ? 'bottom-10' : 'bottom-2'} left-2 z-10">
 | 
						|
            <Icon path={mdiArchiveArrowDownOutline} size="24" class="text-white" />
 | 
						|
          </div>
 | 
						|
        {/if}
 | 
						|
 | 
						|
        {#if asset.type === AssetTypeEnum.Image && asset.exifInfo?.projectionType === ProjectionType.EQUIRECTANGULAR}
 | 
						|
          <div class="absolute right-0 top-0 z-20 flex place-items-center gap-1 text-xs font-medium text-white">
 | 
						|
            <span class="pr-2 pt-2">
 | 
						|
              <Icon path={mdiRotate360} size="24" />
 | 
						|
            </span>
 | 
						|
          </div>
 | 
						|
        {/if}
 | 
						|
 | 
						|
        <!-- Stacked asset -->
 | 
						|
 | 
						|
        {#if asset.stackCount && showStackedIcon}
 | 
						|
          <div
 | 
						|
            class="absolute {asset.type == AssetTypeEnum.Image && asset.livePhotoVideoId == undefined
 | 
						|
              ? 'top-0 right-0'
 | 
						|
              : 'top-7 right-1'} z-20 flex place-items-center gap-1 text-xs font-medium text-white"
 | 
						|
          >
 | 
						|
            <span class="pr-2 pt-2 flex place-items-center gap-1">
 | 
						|
              <p>{asset.stackCount}</p>
 | 
						|
              <Icon path={mdiCameraBurst} size="24" />
 | 
						|
            </span>
 | 
						|
          </div>
 | 
						|
        {/if}
 | 
						|
 | 
						|
        {#if asset.resized}
 | 
						|
          <ImageThumbnail
 | 
						|
            url={getAssetThumbnailUrl(asset.id, format)}
 | 
						|
            altText={asset.originalFileName}
 | 
						|
            widthStyle="{width}px"
 | 
						|
            heightStyle="{height}px"
 | 
						|
            thumbhash={asset.thumbhash}
 | 
						|
            curve={selected}
 | 
						|
          />
 | 
						|
        {:else}
 | 
						|
          <div class="flex h-full w-full items-center justify-center p-4">
 | 
						|
            <Icon path={mdiImageBrokenVariant} size="48" />
 | 
						|
          </div>
 | 
						|
        {/if}
 | 
						|
 | 
						|
        {#if asset.type === AssetTypeEnum.Video}
 | 
						|
          <div class="absolute top-0 h-full w-full">
 | 
						|
            <VideoThumbnail
 | 
						|
              url={getAssetFileUrl(asset.id, false, true)}
 | 
						|
              enablePlayback={mouseOver}
 | 
						|
              curve={selected}
 | 
						|
              durationInSeconds={timeToSeconds(asset.duration)}
 | 
						|
            />
 | 
						|
          </div>
 | 
						|
        {/if}
 | 
						|
 | 
						|
        {#if asset.type === AssetTypeEnum.Image && asset.livePhotoVideoId}
 | 
						|
          <div class="absolute top-0 h-full w-full">
 | 
						|
            <VideoThumbnail
 | 
						|
              url={getAssetFileUrl(asset.livePhotoVideoId, false, true)}
 | 
						|
              pauseIcon={mdiMotionPauseOutline}
 | 
						|
              playIcon={mdiMotionPlayOutline}
 | 
						|
              showTime={false}
 | 
						|
              curve={selected}
 | 
						|
              playbackOnIconHover
 | 
						|
            />
 | 
						|
          </div>
 | 
						|
        {/if}
 | 
						|
      </div>
 | 
						|
      {#if selectionCandidate}
 | 
						|
        <div
 | 
						|
          class="absolute top-0 h-full w-full bg-immich-primary opacity-40"
 | 
						|
          in:fade={{ duration: 100 }}
 | 
						|
          out:fade={{ duration: 100 }}
 | 
						|
        />
 | 
						|
      {/if}
 | 
						|
    {/if}
 | 
						|
  </div>
 | 
						|
</IntersectionObserver>
 |