mirror of
https://github.com/immich-app/immich.git
synced 2025-06-01 04:36:19 -04:00
56 lines
2.0 KiB
Svelte
56 lines
2.0 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 SettingSwitch from '$lib/components/shared-components/settings/setting-switch.svelte';
|
|
import SettingInputField from '$lib/components/shared-components/settings/setting-input-field.svelte';
|
|
import SettingButtonsRow from '$lib/components/shared-components/settings/setting-buttons-row.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();
|
|
|
|
const onsubmit = (event: Event) => {
|
|
event.preventDefault();
|
|
};
|
|
</script>
|
|
|
|
<div>
|
|
<div in:fade={{ duration: 500 }}>
|
|
<form autocomplete="off" {onsubmit}>
|
|
<div class="ms-4 mt-4 flex flex-col gap-4">
|
|
<SettingSwitch title={$t('admin.trash_enabled_description')} {disabled} bind:checked={config.trash.enabled} />
|
|
|
|
<hr />
|
|
|
|
<SettingInputField
|
|
inputType={SettingInputFieldType.NUMBER}
|
|
label={$t('admin.trash_number_of_days')}
|
|
description={$t('admin.trash_number_of_days_description')}
|
|
bind:value={config.trash.days}
|
|
required={true}
|
|
disabled={disabled || !config.trash.enabled}
|
|
isEdited={config.trash.days !== savedConfig.trash.days}
|
|
/>
|
|
|
|
<SettingButtonsRow
|
|
onReset={(options) => onReset({ ...options, configKeys: ['trash'] })}
|
|
onSave={() => onSave({ trash: config.trash })}
|
|
showResetToDefault={!isEqual(savedConfig.trash, defaultConfig.trash)}
|
|
{disabled}
|
|
/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|