mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
* implement method to read config file * getConfig returns config file if present * return isConfigFile for http requests * disable elements if config file is used, show message if config file is set, copy existing config to clipboard * fix allowing partial configuration files * add new env variable to docs * fix tests * minor refactoring, address review * adapt config type in frontend * remove unnecessary imports * move config file reading to system-config repo * add documentation * fix code formatting in system settings page * add validator for config file * fix formatting in docs * update generated files * throw error when trying to update config. e.g. via cli or api * switch to feature flags for isConfigFile * refactoring * refactor: config file * chore: open api * feat: always show copy/export buttons * fix: default flags * refactor: copy to clipboard --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
56 lines
1.3 KiB
Svelte
56 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
import { quintOut } from 'svelte/easing';
|
|
import { fly } from 'svelte/transition';
|
|
|
|
export let value: string | number;
|
|
export let options: { value: string | number; text: string }[];
|
|
export let label = '';
|
|
export let desc = '';
|
|
export let name = '';
|
|
export let isEdited = false;
|
|
export let number = false;
|
|
export let disabled = false;
|
|
|
|
const handleChange = (e: Event) => {
|
|
value = (e.target as HTMLInputElement).value;
|
|
if (number) {
|
|
value = parseInt(value);
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<div class="mb-4 w-full">
|
|
<div class={`flex h-[26px] place-items-center gap-1`}>
|
|
<label class={`immich-form-label text-sm`} for="{name}-select">{label}</label>
|
|
|
|
{#if isEdited}
|
|
<div
|
|
transition:fly={{ x: 10, duration: 200, easing: quintOut }}
|
|
class="rounded-full bg-orange-100 px-2 text-[10px] text-orange-900"
|
|
>
|
|
Unsaved change
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
|
|
{#if desc}
|
|
<p class="immich-form-label pb-2 text-sm" id="{name}-desc">
|
|
{desc}
|
|
</p>
|
|
{/if}
|
|
|
|
<select
|
|
class="immich-form-input w-full pb-2"
|
|
{disabled}
|
|
aria-describedby={desc ? `${name}-desc` : undefined}
|
|
{name}
|
|
id="{name}-select"
|
|
bind:value
|
|
on:change={handleChange}
|
|
>
|
|
{#each options as option}
|
|
<option value={option.value}>{option.text}</option>
|
|
{/each}
|
|
</select>
|
|
</div>
|