mirror of
https://github.com/immich-app/immich.git
synced 2025-05-30 19:54:52 -04:00
49 lines
1.7 KiB
Svelte
49 lines
1.7 KiB
Svelte
<script lang="ts">
|
|
import { type SystemConfigDto } from '@immich/sdk';
|
|
import { isEqual } from 'lodash-es';
|
|
import { fade } from 'svelte/transition';
|
|
import type { SettingsResetEvent, SettingsSaveEvent } from '../admin-settings';
|
|
|
|
import SettingButtonsRow from '$lib/components/shared-components/settings/setting-buttons-row.svelte';
|
|
import SettingInputField from '$lib/components/shared-components/settings/setting-input-field.svelte';
|
|
import { t } from 'svelte-i18n';
|
|
import { SettingInputFieldType } from '$lib/constants';
|
|
|
|
interface Props {
|
|
savedConfig: SystemConfigDto;
|
|
defaultConfig: SystemConfigDto;
|
|
config: SystemConfigDto;
|
|
disabled?: boolean;
|
|
onReset: SettingsResetEvent;
|
|
onSave: SettingsSaveEvent;
|
|
}
|
|
|
|
let { savedConfig, defaultConfig, config = $bindable(), disabled = false, onReset, onSave }: Props = $props();
|
|
</script>
|
|
|
|
<div>
|
|
<div in:fade={{ duration: 500 }}>
|
|
<form autocomplete="off" onsubmit={(e) => e.preventDefault()}>
|
|
<div class="ml-4 mt-4 flex flex-col gap-4">
|
|
<SettingInputField
|
|
inputType={SettingInputFieldType.NUMBER}
|
|
min={1}
|
|
label={$t('admin.user_delete_delay_settings')}
|
|
description={$t('admin.user_delete_delay_settings_description')}
|
|
bind:value={config.user.deleteDelay}
|
|
isEdited={config.user.deleteDelay !== savedConfig.user.deleteDelay}
|
|
/>
|
|
</div>
|
|
|
|
<div class="ml-4">
|
|
<SettingButtonsRow
|
|
onReset={(options) => onReset({ ...options, configKeys: ['user'] })}
|
|
onSave={() => onSave({ user: config.user })}
|
|
showResetToDefault={!isEqual(savedConfig.user, defaultConfig.user)}
|
|
{disabled}
|
|
/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|