mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
108 lines
4.6 KiB
Svelte
108 lines
4.6 KiB
Svelte
|
|
<script lang="ts">
|
||
|
|
import type { SystemConfigDto } from '@immich/sdk';
|
||
|
|
import { isEqual } from 'lodash-es';
|
||
|
|
import { createEventDispatcher } from 'svelte';
|
||
|
|
import { fade } from 'svelte/transition';
|
||
|
|
import type { SettingsEventType } from '../admin-settings';
|
||
|
|
import SettingInputField, {
|
||
|
|
SettingInputFieldType,
|
||
|
|
} from '$lib/components/shared-components/settings/setting-input-field.svelte';
|
||
|
|
import SettingButtonsRow from '$lib/components/shared-components/settings/setting-buttons-row.svelte';
|
||
|
|
import SettingAccordion from '$lib/components/shared-components/settings/setting-accordion.svelte';
|
||
|
|
import SettingSwitch from '$lib/components/shared-components/settings/setting-switch.svelte';
|
||
|
|
|
||
|
|
export let savedConfig: SystemConfigDto;
|
||
|
|
export let defaultConfig: SystemConfigDto;
|
||
|
|
export let config: SystemConfigDto; // this is the config that is being edited
|
||
|
|
export let disabled = false;
|
||
|
|
|
||
|
|
const dispatch = createEventDispatcher<SettingsEventType>();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<div>
|
||
|
|
<div in:fade={{ duration: 500 }}>
|
||
|
|
<form autocomplete="off" on:submit|preventDefault class="mt-4">
|
||
|
|
<div class="flex flex-col gap-4">
|
||
|
|
<SettingAccordion key="email" title="Email" subtitle="Settings for sending email notifications">
|
||
|
|
<div class="ml-4 mt-4 flex flex-col gap-4">
|
||
|
|
<SettingSwitch
|
||
|
|
title="Enabled"
|
||
|
|
subtitle="Enable email notifications"
|
||
|
|
{disabled}
|
||
|
|
bind:checked={config.notifications.smtp.enabled}
|
||
|
|
/>
|
||
|
|
|
||
|
|
<hr />
|
||
|
|
|
||
|
|
<SettingInputField
|
||
|
|
inputType={SettingInputFieldType.TEXT}
|
||
|
|
required
|
||
|
|
label="Host"
|
||
|
|
desc="Host of the email server (e.g. smtp.immich.app)"
|
||
|
|
disabled={disabled || !config.notifications.smtp.enabled}
|
||
|
|
bind:value={config.notifications.smtp.transport.host}
|
||
|
|
isEdited={config.notifications.smtp.transport.host !== savedConfig.notifications.smtp.transport.host}
|
||
|
|
/>
|
||
|
|
|
||
|
|
<SettingInputField
|
||
|
|
inputType={SettingInputFieldType.NUMBER}
|
||
|
|
required
|
||
|
|
label="Port"
|
||
|
|
desc="Port of the email server (e.g 25, 465, or 587)"
|
||
|
|
disabled={disabled || !config.notifications.smtp.enabled}
|
||
|
|
bind:value={config.notifications.smtp.transport.port}
|
||
|
|
isEdited={config.notifications.smtp.transport.port !== savedConfig.notifications.smtp.transport.port}
|
||
|
|
/>
|
||
|
|
|
||
|
|
<SettingInputField
|
||
|
|
inputType={SettingInputFieldType.TEXT}
|
||
|
|
label="Username"
|
||
|
|
desc="Username to use when authenticating with the email server"
|
||
|
|
disabled={disabled || !config.notifications.smtp.enabled}
|
||
|
|
bind:value={config.notifications.smtp.transport.username}
|
||
|
|
isEdited={config.notifications.smtp.transport.username !==
|
||
|
|
savedConfig.notifications.smtp.transport.username}
|
||
|
|
/>
|
||
|
|
|
||
|
|
<SettingInputField
|
||
|
|
inputType={SettingInputFieldType.PASSWORD}
|
||
|
|
label="Password"
|
||
|
|
desc="Password to use when authenticating with the email server"
|
||
|
|
disabled={disabled || !config.notifications.smtp.enabled}
|
||
|
|
bind:value={config.notifications.smtp.transport.password}
|
||
|
|
isEdited={config.notifications.smtp.transport.password !==
|
||
|
|
savedConfig.notifications.smtp.transport.password}
|
||
|
|
/>
|
||
|
|
|
||
|
|
<SettingSwitch
|
||
|
|
title="Ignore certificate errors"
|
||
|
|
subtitle="Ignore TLS certificate validation errors (not recommended)"
|
||
|
|
disabled={disabled || !config.notifications.smtp.enabled}
|
||
|
|
bind:checked={config.notifications.smtp.transport.ignoreCert}
|
||
|
|
/>
|
||
|
|
|
||
|
|
<hr />
|
||
|
|
|
||
|
|
<SettingInputField
|
||
|
|
inputType={SettingInputFieldType.TEXT}
|
||
|
|
required
|
||
|
|
label="From address"
|
||
|
|
desc="Sender email address, for example: "Immich Photo Server <noreply@immich.app>""
|
||
|
|
disabled={disabled || !config.notifications.smtp.enabled}
|
||
|
|
bind:value={config.notifications.smtp.from}
|
||
|
|
isEdited={config.notifications.smtp.from !== savedConfig.notifications.smtp.from}
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</SettingAccordion>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<SettingButtonsRow
|
||
|
|
on:reset={({ detail }) => dispatch('reset', { ...detail, configKeys: ['notifications'] })}
|
||
|
|
on:save={() => dispatch('save', { notifications: config.notifications })}
|
||
|
|
showResetToDefault={!isEqual(savedConfig, defaultConfig)}
|
||
|
|
{disabled}
|
||
|
|
/>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
</div>
|