2024-02-23 06:01:19 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import FullScreenModal from '$lib/components/shared-components/full-screen-modal.svelte';
|
|
|
|
import SettingInputField, {
|
|
|
|
SettingInputFieldType,
|
|
|
|
} from '$lib/components/shared-components/settings/setting-input-field.svelte';
|
|
|
|
import SettingSwitch from '$lib/components/shared-components/settings/setting-switch.svelte';
|
2024-03-02 16:50:02 +01:00
|
|
|
import { mdiArrowDownThin, mdiArrowUpThin, mdiShuffle } from '@mdi/js';
|
|
|
|
import { SlideshowNavigation, slideshowStore } from '../stores/slideshow.store';
|
2024-02-23 06:01:19 +01:00
|
|
|
import Button from './elements/buttons/button.svelte';
|
2024-03-02 16:50:02 +01:00
|
|
|
import type { RenderedOption } from './elements/dropdown.svelte';
|
|
|
|
import SettingDropdown from './shared-components/settings/setting-dropdown.svelte';
|
2024-02-23 06:01:19 +01:00
|
|
|
|
2024-03-02 16:50:02 +01:00
|
|
|
const { slideshowDelay, showProgressBar, slideshowNavigation } = slideshowStore;
|
2024-02-23 06:01:19 +01:00
|
|
|
|
|
|
|
export let onClose = () => {};
|
2024-03-02 16:50:02 +01:00
|
|
|
|
|
|
|
const options: Record<SlideshowNavigation, RenderedOption> = {
|
|
|
|
[SlideshowNavigation.Shuffle]: { icon: mdiShuffle, title: 'Shuffle' },
|
|
|
|
[SlideshowNavigation.AscendingOrder]: { icon: mdiArrowUpThin, title: 'Backward' },
|
|
|
|
[SlideshowNavigation.DescendingOrder]: { icon: mdiArrowDownThin, title: 'Forward' },
|
|
|
|
};
|
|
|
|
|
2024-03-14 17:45:03 +01:00
|
|
|
const handleToggle = (selectedOption: RenderedOption) => {
|
2024-03-02 16:50:02 +01:00
|
|
|
for (const [key, option] of Object.entries(options)) {
|
|
|
|
if (option === selectedOption) {
|
|
|
|
$slideshowNavigation = key as SlideshowNavigation;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2024-02-23 06:01:19 +01:00
|
|
|
</script>
|
|
|
|
|
2024-04-08 23:02:09 +02:00
|
|
|
<FullScreenModal id="slideshow-settings-modal" title="Slideshow settings" {onClose}>
|
|
|
|
<div class="flex flex-col gap-4 text-immich-primary dark:text-immich-dark-primary">
|
|
|
|
<SettingDropdown
|
|
|
|
title="Direction"
|
|
|
|
options={Object.values(options)}
|
|
|
|
selectedOption={options[$slideshowNavigation]}
|
|
|
|
onToggle={(option) => handleToggle(option)}
|
|
|
|
/>
|
|
|
|
<SettingSwitch id="show-progress-bar" title="Show Progress Bar" bind:checked={$showProgressBar} />
|
|
|
|
<SettingInputField
|
|
|
|
inputType={SettingInputFieldType.NUMBER}
|
|
|
|
label="Duration"
|
|
|
|
desc="Number of seconds to display each image"
|
|
|
|
min={1}
|
|
|
|
bind:value={$slideshowDelay}
|
|
|
|
/>
|
|
|
|
<Button class="w-full" color="gray" on:click={onClose}>Done</Button>
|
2024-02-23 06:01:19 +01:00
|
|
|
</div>
|
|
|
|
</FullScreenModal>
|