mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
84 lines
3.7 KiB
Svelte
84 lines
3.7 KiB
Svelte
<script lang="ts">
|
|
import SettingButtonsRow from '$lib/components/admin-page/settings/setting-buttons-row.svelte';
|
|
import SettingSelect from '$lib/components/admin-page/settings/setting-select.svelte';
|
|
import { Colorspace, type SystemConfigDto } from '@api';
|
|
import { isEqual } from 'lodash-es';
|
|
import { createEventDispatcher } from 'svelte';
|
|
import { fade } from 'svelte/transition';
|
|
import type { SettingsEventType } from '../admin-settings';
|
|
import SettingInputField, { SettingInputFieldType } from '../setting-input-field.svelte';
|
|
import SettingSwitch from '../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>
|
|
<div class="ml-4 mt-4 flex flex-col gap-4">
|
|
<SettingSelect
|
|
label="SMALL THUMBNAIL RESOLUTION"
|
|
desc="Used when viewing groups of photos (main timeline, album view, etc.). Higher resolutions can preserve more detail but take longer to encode, have larger file sizes, and can reduce app responsiveness."
|
|
number
|
|
bind:value={config.thumbnail.webpSize}
|
|
options={[
|
|
{ value: 1080, text: '1080p' },
|
|
{ value: 720, text: '720p' },
|
|
{ value: 480, text: '480p' },
|
|
{ value: 250, text: '250p' },
|
|
{ value: 200, text: '200p' },
|
|
]}
|
|
name="resolution"
|
|
isEdited={config.thumbnail.webpSize !== savedConfig.thumbnail.webpSize}
|
|
{disabled}
|
|
/>
|
|
|
|
<SettingSelect
|
|
label="LARGE THUMBNAIL RESOLUTION"
|
|
desc="Used when viewing a single photo and for machine learning. Higher resolutions can preserve more detail but take longer to encode, have larger file sizes, and can reduce app responsiveness."
|
|
number
|
|
bind:value={config.thumbnail.jpegSize}
|
|
options={[
|
|
{ value: 2160, text: '4K' },
|
|
{ value: 1440, text: '1440p' },
|
|
{ value: 1080, text: '1080p' },
|
|
{ value: 720, text: '720p' },
|
|
]}
|
|
name="resolution"
|
|
isEdited={config.thumbnail.jpegSize !== savedConfig.thumbnail.jpegSize}
|
|
{disabled}
|
|
/>
|
|
|
|
<SettingInputField
|
|
inputType={SettingInputFieldType.NUMBER}
|
|
label="QUALITY"
|
|
desc="Thumbnail quality from 1-100. Higher is better for quality but produces larger files."
|
|
bind:value={config.thumbnail.quality}
|
|
isEdited={config.thumbnail.quality !== savedConfig.thumbnail.quality}
|
|
/>
|
|
|
|
<SettingSwitch
|
|
title="PREFER WIDE GAMUT"
|
|
subtitle="Use Display P3 for thumbnails. This better preserves the vibrance of images with wide colorspaces, but images may appear differently on old devices with an old browser version. sRGB images are kept as sRGB to avoid color shifts."
|
|
checked={config.thumbnail.colorspace === Colorspace.P3}
|
|
on:toggle={(e) => (config.thumbnail.colorspace = e.detail ? Colorspace.P3 : Colorspace.Srgb)}
|
|
isEdited={config.thumbnail.colorspace !== savedConfig.thumbnail.colorspace}
|
|
/>
|
|
</div>
|
|
|
|
<div class="ml-4">
|
|
<SettingButtonsRow
|
|
on:reset={({ detail }) => dispatch('reset', { ...detail, configKeys: ['thumbnail'] })}
|
|
on:save={() => dispatch('save', { thumbnail: config.thumbnail })}
|
|
showResetToDefault={!isEqual(savedConfig, defaultConfig)}
|
|
{disabled}
|
|
/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|