forked from Cutlery/immich
* wip: strip metadata * fix: authenticate time buckets * hide detail panel * fix tests * fix lint * add e2e tests * chore: open api * fix web compilation error * feat: test with asset with gps position * fix: only import fs.promises.cp * fix: cleanup mapasset * fix: format --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
195 lines
7.0 KiB
Svelte
195 lines
7.0 KiB
Svelte
<script lang="ts">
|
|
import { page } from '$app/stores';
|
|
import { photoZoomState } from '$lib/stores/zoom-image.store';
|
|
import { clickOutside } from '$lib/utils/click-outside';
|
|
import { AssetJobName, AssetResponseDto, AssetTypeEnum, api } from '@api';
|
|
import { createEventDispatcher } from 'svelte';
|
|
import ArrowLeft from 'svelte-material-icons/ArrowLeft.svelte';
|
|
import CloudDownloadOutline from 'svelte-material-icons/CloudDownloadOutline.svelte';
|
|
import AlertOutline from 'svelte-material-icons/AlertOutline.svelte';
|
|
import ContentCopy from 'svelte-material-icons/ContentCopy.svelte';
|
|
import DeleteOutline from 'svelte-material-icons/DeleteOutline.svelte';
|
|
import DotsVertical from 'svelte-material-icons/DotsVertical.svelte';
|
|
import Heart from 'svelte-material-icons/Heart.svelte';
|
|
import HeartOutline from 'svelte-material-icons/HeartOutline.svelte';
|
|
import InformationOutline from 'svelte-material-icons/InformationOutline.svelte';
|
|
import MagnifyMinusOutline from 'svelte-material-icons/MagnifyMinusOutline.svelte';
|
|
import MagnifyPlusOutline from 'svelte-material-icons/MagnifyPlusOutline.svelte';
|
|
import MotionPauseOutline from 'svelte-material-icons/MotionPauseOutline.svelte';
|
|
import MotionPlayOutline from 'svelte-material-icons/MotionPlayOutline.svelte';
|
|
import CircleIconButton from '../elements/buttons/circle-icon-button.svelte';
|
|
import ContextMenu from '../shared-components/context-menu/context-menu.svelte';
|
|
import MenuOption from '../shared-components/context-menu/menu-option.svelte';
|
|
import { getContextMenuPosition } from '$lib/utils/context-menu';
|
|
|
|
export let asset: AssetResponseDto;
|
|
export let showCopyButton: boolean;
|
|
export let showZoomButton: boolean;
|
|
export let showMotionPlayButton: boolean;
|
|
export let isMotionPhotoPlaying = false;
|
|
export let showDownloadButton: boolean;
|
|
export let showDetailButton: boolean;
|
|
export let showSlideshow = false;
|
|
|
|
const isOwner = asset.ownerId === $page.data.user?.id;
|
|
|
|
type MenuItemEvent = 'addToAlbum' | 'addToSharedAlbum' | 'asProfileImage' | 'runJob' | 'playSlideShow';
|
|
|
|
const dispatch = createEventDispatcher<{
|
|
goBack: void;
|
|
stopMotionPhoto: void;
|
|
playMotionPhoto: void;
|
|
download: void;
|
|
showDetail: void;
|
|
favorite: void;
|
|
delete: void;
|
|
toggleArchive: void;
|
|
addToAlbum: void;
|
|
addToSharedAlbum: void;
|
|
asProfileImage: void;
|
|
runJob: AssetJobName;
|
|
playSlideShow: void;
|
|
}>();
|
|
|
|
let contextMenuPosition = { x: 0, y: 0 };
|
|
let isShowAssetOptions = false;
|
|
|
|
const showOptionsMenu = (event: MouseEvent) => {
|
|
contextMenuPosition = getContextMenuPosition(event, 'top-right');
|
|
isShowAssetOptions = !isShowAssetOptions;
|
|
};
|
|
|
|
const onJobClick = (name: AssetJobName) => {
|
|
isShowAssetOptions = false;
|
|
dispatch('runJob', name);
|
|
};
|
|
|
|
const onMenuClick = (eventName: MenuItemEvent) => {
|
|
isShowAssetOptions = false;
|
|
dispatch(eventName);
|
|
};
|
|
</script>
|
|
|
|
<div
|
|
class="z-[1001] flex h-16 place-items-center justify-between bg-gradient-to-b from-black/40 px-3 transition-transform duration-200"
|
|
>
|
|
<div class="text-white">
|
|
<CircleIconButton isOpacity={true} logo={ArrowLeft} on:click={() => dispatch('goBack')} />
|
|
</div>
|
|
<div class="flex w-[calc(100%-3rem)] justify-end gap-2 overflow-hidden text-white">
|
|
{#if asset.isOffline}
|
|
<CircleIconButton
|
|
isOpacity={true}
|
|
logo={AlertOutline}
|
|
on:click={() => dispatch('showDetail')}
|
|
title="Asset Offline"
|
|
/>
|
|
{/if}
|
|
{#if showMotionPlayButton}
|
|
{#if isMotionPhotoPlaying}
|
|
<CircleIconButton
|
|
isOpacity={true}
|
|
logo={MotionPauseOutline}
|
|
title="Stop Motion Photo"
|
|
on:click={() => dispatch('stopMotionPhoto')}
|
|
/>
|
|
{:else}
|
|
<CircleIconButton
|
|
isOpacity={true}
|
|
logo={MotionPlayOutline}
|
|
title="Play Motion Photo"
|
|
on:click={() => dispatch('playMotionPhoto')}
|
|
/>
|
|
{/if}
|
|
{/if}
|
|
{#if showZoomButton}
|
|
<CircleIconButton
|
|
isOpacity={true}
|
|
hideMobile={true}
|
|
logo={$photoZoomState && $photoZoomState.currentZoom > 1 ? MagnifyMinusOutline : MagnifyPlusOutline}
|
|
title="Zoom Image"
|
|
on:click={() => {
|
|
const zoomImage = new CustomEvent('zoomImage');
|
|
window.dispatchEvent(zoomImage);
|
|
}}
|
|
/>
|
|
{/if}
|
|
{#if showCopyButton}
|
|
<CircleIconButton
|
|
isOpacity={true}
|
|
logo={ContentCopy}
|
|
title="Copy Image"
|
|
on:click={() => {
|
|
const copyEvent = new CustomEvent('copyImage');
|
|
window.dispatchEvent(copyEvent);
|
|
}}
|
|
/>
|
|
{/if}
|
|
|
|
{#if showDownloadButton}
|
|
<CircleIconButton
|
|
isOpacity={true}
|
|
logo={CloudDownloadOutline}
|
|
on:click={() => dispatch('download')}
|
|
title="Download"
|
|
/>
|
|
{/if}
|
|
{#if showDetailButton}
|
|
<CircleIconButton
|
|
isOpacity={true}
|
|
logo={InformationOutline}
|
|
on:click={() => dispatch('showDetail')}
|
|
title="Info"
|
|
/>
|
|
{/if}
|
|
{#if isOwner}
|
|
<CircleIconButton
|
|
isOpacity={true}
|
|
logo={asset.isFavorite ? Heart : HeartOutline}
|
|
on:click={() => dispatch('favorite')}
|
|
title="Favorite"
|
|
/>
|
|
{/if}
|
|
|
|
{#if isOwner}
|
|
{#if !asset.isReadOnly || !asset.isExternal}
|
|
<CircleIconButton isOpacity={true} logo={DeleteOutline} on:click={() => dispatch('delete')} title="Delete" />
|
|
{/if}
|
|
<div use:clickOutside on:outclick={() => (isShowAssetOptions = false)}>
|
|
<CircleIconButton isOpacity={true} logo={DotsVertical} on:click={showOptionsMenu} title="More" />
|
|
{#if isShowAssetOptions}
|
|
<ContextMenu {...contextMenuPosition} direction="left">
|
|
{#if showSlideshow}
|
|
<MenuOption on:click={() => onMenuClick('playSlideShow')} text="Slideshow" />
|
|
{/if}
|
|
<MenuOption on:click={() => onMenuClick('addToAlbum')} text="Add to Album" />
|
|
<MenuOption on:click={() => onMenuClick('addToSharedAlbum')} text="Add to Shared Album" />
|
|
|
|
{#if isOwner}
|
|
<MenuOption
|
|
on:click={() => dispatch('toggleArchive')}
|
|
text={asset.isArchived ? 'Unarchive' : 'Archive'}
|
|
/>
|
|
<MenuOption on:click={() => onMenuClick('asProfileImage')} text="As profile picture" />
|
|
<MenuOption
|
|
on:click={() => onJobClick(AssetJobName.RefreshMetadata)}
|
|
text={api.getAssetJobName(AssetJobName.RefreshMetadata)}
|
|
/>
|
|
<MenuOption
|
|
on:click={() => onJobClick(AssetJobName.RegenerateThumbnail)}
|
|
text={api.getAssetJobName(AssetJobName.RegenerateThumbnail)}
|
|
/>
|
|
{#if asset.type === AssetTypeEnum.Video}
|
|
<MenuOption
|
|
on:click={() => onJobClick(AssetJobName.TranscodeVideo)}
|
|
text={api.getAssetJobName(AssetJobName.TranscodeVideo)}
|
|
/>
|
|
{/if}
|
|
{/if}
|
|
</ContextMenu>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
</div>
|