mirror of
https://github.com/immich-app/immich.git
synced 2025-06-21 14:31:03 -04:00
* feat: ascending order for slideshow * feat: use dropdown * rename * fix: size * pr feedback * fix: hide text on small screen * Wording --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
80 lines
2.5 KiB
Svelte
80 lines
2.5 KiB
Svelte
<script lang="ts">
|
|
import CircleIconButton from '$lib/components/elements/buttons/circle-icon-button.svelte';
|
|
import ProgressBar, { ProgressBarStatus } from '$lib/components/shared-components/progress-bar/progress-bar.svelte';
|
|
import SlideshowSettings from '$lib/components/slideshow-settings.svelte';
|
|
import { SlideshowNavigation, slideshowStore } from '$lib/stores/slideshow.store';
|
|
import { mdiChevronLeft, mdiChevronRight, mdiClose, mdiCog, mdiPause, mdiPlay } from '@mdi/js';
|
|
import { onDestroy, onMount } from 'svelte';
|
|
|
|
export let onNext = () => {};
|
|
export let onPrevious = () => {};
|
|
export let onClose = () => {};
|
|
|
|
const { restartProgress, stopProgress, slideshowDelay, showProgressBar, slideshowNavigation } = slideshowStore;
|
|
|
|
let progressBarStatus: ProgressBarStatus;
|
|
let progressBar: ProgressBar;
|
|
let showSettings = false;
|
|
|
|
let unsubscribeRestart: () => void;
|
|
let unsubscribeStop: () => void;
|
|
|
|
onMount(() => {
|
|
unsubscribeRestart = restartProgress.subscribe((value) => {
|
|
if (value) {
|
|
progressBar.restart(value);
|
|
}
|
|
});
|
|
|
|
unsubscribeStop = stopProgress.subscribe((value) => {
|
|
if (value) {
|
|
progressBar.restart(false);
|
|
}
|
|
});
|
|
});
|
|
|
|
onDestroy(() => {
|
|
if (unsubscribeRestart) {
|
|
unsubscribeRestart();
|
|
}
|
|
|
|
if (unsubscribeStop) {
|
|
unsubscribeStop();
|
|
}
|
|
});
|
|
|
|
const handleDone = () => {
|
|
if ($slideshowNavigation === SlideshowNavigation.AscendingOrder) {
|
|
onPrevious();
|
|
return;
|
|
}
|
|
onNext();
|
|
};
|
|
</script>
|
|
|
|
<div class="m-4 flex gap-2">
|
|
<CircleIconButton buttonSize="50" icon={mdiClose} on:click={onClose} title="Exit Slideshow" />
|
|
<CircleIconButton
|
|
buttonSize="50"
|
|
icon={progressBarStatus === ProgressBarStatus.Paused ? mdiPlay : mdiPause}
|
|
on:click={() => (progressBarStatus === ProgressBarStatus.Paused ? progressBar.play() : progressBar.pause())}
|
|
title={progressBarStatus === ProgressBarStatus.Paused ? 'Play' : 'Pause'}
|
|
/>
|
|
<CircleIconButton buttonSize="50" icon={mdiChevronLeft} on:click={onPrevious} title="Previous" />
|
|
<CircleIconButton buttonSize="50" icon={mdiChevronRight} on:click={onNext} title="Next" />
|
|
<CircleIconButton buttonSize="50" icon={mdiCog} on:click={() => (showSettings = !showSettings)} title="Next" />
|
|
</div>
|
|
|
|
{#if showSettings}
|
|
<SlideshowSettings onClose={() => (showSettings = false)} />
|
|
{/if}
|
|
|
|
<ProgressBar
|
|
autoplay
|
|
hidden={!$showProgressBar}
|
|
duration={$slideshowDelay}
|
|
bind:this={progressBar}
|
|
bind:status={progressBarStatus}
|
|
on:done={handleDone}
|
|
/>
|