mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 02:13:51 -04:00
* Add include archive setting to map on web * open api * better naming for web isArchived variable * add withArchived setting to mobile * (e2e): tests for mapMarker endpoint and isArchived * isArchived to mobile * chore: cleanup test * chore: optimize e2e --------- Co-authored-by: shalong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
117 lines
4.3 KiB
Svelte
117 lines
4.3 KiB
Svelte
<script lang="ts">
|
|
import FullScreenModal from '$lib/components/shared-components/full-screen-modal.svelte';
|
|
import type { MapSettings } from '$lib/stores/preferences.store';
|
|
import { Duration } from 'luxon';
|
|
import { createEventDispatcher } from 'svelte';
|
|
import { fly } from 'svelte/transition';
|
|
import SettingSelect from '../admin-page/settings/setting-select.svelte';
|
|
import SettingSwitch from '../admin-page/settings/setting-switch.svelte';
|
|
import Button from '../elements/buttons/button.svelte';
|
|
import LinkButton from '../elements/buttons/link-button.svelte';
|
|
|
|
export let settings: MapSettings;
|
|
let customDateRange = !!settings.dateAfter || !!settings.dateBefore;
|
|
|
|
const dispatch = createEventDispatcher<{
|
|
close: void;
|
|
save: MapSettings;
|
|
}>();
|
|
|
|
const handleClose = () => dispatch('close');
|
|
</script>
|
|
|
|
<FullScreenModal on:clickOutside={handleClose} on:escape={handleClose}>
|
|
<div
|
|
class="flex w-96 max-w-lg flex-col gap-8 rounded-3xl border bg-white p-8 shadow-sm dark:border-immich-dark-gray dark:bg-immich-dark-gray"
|
|
>
|
|
<h1 class="self-center text-2xl font-medium text-immich-primary dark:text-immich-dark-primary">Map Settings</h1>
|
|
|
|
<form
|
|
on:submit|preventDefault={() => dispatch('save', settings)}
|
|
class="flex flex-col gap-4 text-immich-primary dark:text-immich-dark-primary"
|
|
>
|
|
<SettingSwitch title="Allow dark mode" bind:checked={settings.allowDarkMode} />
|
|
<SettingSwitch title="Only favorites" bind:checked={settings.onlyFavorites} />
|
|
<SettingSwitch title="Include archived" bind:checked={settings.includeArchived} />
|
|
{#if customDateRange}
|
|
<div in:fly={{ y: 10, duration: 200 }} class="flex flex-col gap-4">
|
|
<div class="flex items-center justify-between gap-8">
|
|
<label class="immich-form-label shrink-0 text-sm" for="date-after">Date after</label>
|
|
<input
|
|
class="immich-form-input w-40"
|
|
type="date"
|
|
id="date-after"
|
|
max={settings.dateBefore}
|
|
bind:value={settings.dateAfter}
|
|
/>
|
|
</div>
|
|
<div class="flex items-center justify-between gap-8">
|
|
<label class="immich-form-label shrink-0 text-sm" for="date-before">Date before</label>
|
|
<input class="immich-form-input w-40" type="date" id="date-before" bind:value={settings.dateBefore} />
|
|
</div>
|
|
<div class="flex justify-center text-xs">
|
|
<LinkButton
|
|
on:click={() => {
|
|
customDateRange = false;
|
|
settings.dateAfter = '';
|
|
settings.dateBefore = '';
|
|
}}
|
|
>
|
|
Remove custom date range
|
|
</LinkButton>
|
|
</div>
|
|
</div>
|
|
{:else}
|
|
<div in:fly={{ y: -10, duration: 200 }} class="flex flex-col gap-1">
|
|
<SettingSelect
|
|
label="Date range"
|
|
name="date-range"
|
|
bind:value={settings.relativeDate}
|
|
options={[
|
|
{
|
|
value: '',
|
|
text: 'All',
|
|
},
|
|
{
|
|
value: Duration.fromObject({ hours: 24 }).toISO() || '',
|
|
text: 'Past 24 hours',
|
|
},
|
|
{
|
|
value: Duration.fromObject({ days: 7 }).toISO() || '',
|
|
text: 'Past 7 days',
|
|
},
|
|
{
|
|
value: Duration.fromObject({ days: 30 }).toISO() || '',
|
|
text: 'Past 30 days',
|
|
},
|
|
{
|
|
value: Duration.fromObject({ years: 1 }).toISO() || '',
|
|
text: 'Past year',
|
|
},
|
|
{
|
|
value: Duration.fromObject({ years: 3 }).toISO() || '',
|
|
text: 'Past 3 years',
|
|
},
|
|
]}
|
|
/>
|
|
<div class="text-xs">
|
|
<LinkButton
|
|
on:click={() => {
|
|
customDateRange = true;
|
|
settings.relativeDate = '';
|
|
}}
|
|
>
|
|
Use custom date range instead
|
|
</LinkButton>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
|
|
<div class="mt-4 flex w-full gap-4">
|
|
<Button color="gray" size="sm" fullwidth on:click={handleClose}>Cancel</Button>
|
|
<Button type="submit" size="sm" fullwidth>Save</Button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</FullScreenModal>
|