You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-07-02 05:44:37 +02:00
* separate facial clustering job * update api * fixed some tests * invert clustering * hdbscan * update api * remove commented code * wip dbscan * cleanup removed cluster endpoint remove commented code * fixes updated tests minor fixes and formatting fixed queuing refinements * scale search range based on library size * defer non-core faces * optimizations removed unused query option * assign faces individually for correctness fixed unit tests remove unused method * don't select face embedding update sql linting fixed ml typing * updated job mock * paginate people query * select face embeddings because typeorm * fix setting face detection concurrency * update sql formatting linting * simplify logic remove unused imports * more specific delete signature * more accurate typing for face stubs * add migration formatting * chore: better typing * don't select embedding by default remove unused import * updated sql * use normal try/catch * stricter concurrency typing and enforcement * update api * update job concurrency panel to show disabled queues formatting * check jobId in queueAll fix tests * remove outdated comment * better facial recognition icon * wording wording formatting * fixed tests * fix * formatting & sql * try to fix sql check * more detailed description * update sql * formatting * wording * update `minFaces` description --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
76 lines
1.8 KiB
Svelte
76 lines
1.8 KiB
Svelte
<script lang="ts" context="module">
|
|
export enum SettingInputFieldType {
|
|
EMAIL = 'email',
|
|
TEXT = 'text',
|
|
NUMBER = 'number',
|
|
PASSWORD = 'password',
|
|
}
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import { quintOut } from 'svelte/easing';
|
|
import { fly } from 'svelte/transition';
|
|
|
|
export let inputType: SettingInputFieldType;
|
|
export let value: string | number;
|
|
export let min = Number.MIN_SAFE_INTEGER.toString();
|
|
export let max = Number.MAX_SAFE_INTEGER.toString();
|
|
export let step = '1';
|
|
export let label = '';
|
|
export let desc = '';
|
|
export let title = '';
|
|
export let required = false;
|
|
export let disabled = false;
|
|
export let isEdited = false;
|
|
|
|
const handleInput = (e: Event) => {
|
|
value = (e.target as HTMLInputElement).value;
|
|
if (inputType === SettingInputFieldType.NUMBER) {
|
|
value = Number(value) || 0;
|
|
}
|
|
};
|
|
</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={label}>{label}</label>
|
|
{#if required}
|
|
<div class="text-red-400">*</div>
|
|
{/if}
|
|
|
|
{#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="{label}-desc">
|
|
{desc}
|
|
</p>
|
|
{:else}
|
|
<slot name="desc" />
|
|
{/if}
|
|
|
|
<input
|
|
class="immich-form-input w-full pb-2"
|
|
aria-describedby={desc ? `${label}-desc` : undefined}
|
|
aria-labelledby="{label}-label"
|
|
id={label}
|
|
name={label}
|
|
type={inputType}
|
|
{min}
|
|
{max}
|
|
{step}
|
|
{required}
|
|
{value}
|
|
on:input={handleInput}
|
|
{disabled}
|
|
{title}
|
|
/>
|
|
</div>
|