mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 09:15:35 +03:00
39 lines
1.5 KiB
Svelte
39 lines
1.5 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 SettingSwitch from '$lib/components/shared-components/settings/setting-switch.svelte';
|
||
|
|
import { t } from 'svelte-i18n';
|
||
|
|
|
||
|
|
export let savedConfig: SystemConfigDto;
|
||
|
|
export let defaultConfig: SystemConfigDto;
|
||
|
|
export let config: SystemConfigDto; // this is the config that is being edited
|
||
|
|
export let disabled = false;
|
||
|
|
export let onReset: SettingsResetEvent;
|
||
|
|
export let onSave: SettingsSaveEvent;
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<div class="mt-2">
|
||
|
|
<div in:fade={{ duration: 500 }}>
|
||
|
|
<form autocomplete="off" on:submit|preventDefault class="mx-4 mt-4">
|
||
|
|
<div class="ml-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>
|