mirror of
https://github.com/immich-app/immich.git
synced 2025-11-25 15:55:17 -05:00
47 lines
1.6 KiB
Svelte
47 lines
1.6 KiB
Svelte
<script lang="ts">
|
|
import SettingButtonsRow from '$lib/components/shared-components/settings/setting-buttons-row.svelte';
|
|
import SettingSwitch from '$lib/components/shared-components/settings/setting-switch.svelte';
|
|
import type { SystemConfigDto } from '@immich/sdk';
|
|
import { isEqual } from 'lodash-es';
|
|
import { t } from 'svelte-i18n';
|
|
import { fade } from 'svelte/transition';
|
|
import type { SettingsResetEvent, SettingsSaveEvent } from './admin-settings';
|
|
|
|
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 class="mt-2">
|
|
<div in:fade={{ duration: 500 }}>
|
|
<form autocomplete="off" {onsubmit} class="mx-4 mt-4">
|
|
<div class="ms-4 mt-4 flex flex-col gap-4">
|
|
<SettingSwitch
|
|
title={$t('admin.metadata_faces_import_setting')}
|
|
subtitle={$t('admin.metadata_faces_import_setting_description')}
|
|
bind:checked={config.metadata.faces.import}
|
|
{disabled}
|
|
/>
|
|
</div>
|
|
|
|
<SettingButtonsRow
|
|
onReset={(options) => onReset({ ...options, configKeys: ['metadata'] })}
|
|
onSave={() => onSave({ metadata: config.metadata })}
|
|
showResetToDefault={!isEqual(savedConfig.metadata.faces.import, defaultConfig.metadata.faces.import)}
|
|
{disabled}
|
|
/>
|
|
</form>
|
|
</div>
|
|
</div>
|