forked from Cutlery/immich
* feat: add an option to change the date formats * pr feedback * fix: change title * fix: show list supported by the browser * fix: tests * fix: dates * fix: check only if locale is set * fix: better fallback value * fix: fallback * fix: fallback * feat: add default locale option * refactor: shared components * refactor: shared components * prepare for svelte 5 * don't use relative paths * refactor: fallback value Co-authored-by: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com> * fix: parsing store * fix: lint * refactor: locales --------- Co-authored-by: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com> Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
43 lines
1.2 KiB
Svelte
43 lines
1.2 KiB
Svelte
<script lang="ts">
|
|
import { quintOut } from 'svelte/easing';
|
|
import { fly } from 'svelte/transition';
|
|
import Combobox, { type ComboBoxOption } from '$lib/components/shared-components/combobox.svelte';
|
|
|
|
export let title: string;
|
|
export let comboboxPlaceholder: string;
|
|
export let subtitle = '';
|
|
export let isEdited = false;
|
|
export let options: ComboBoxOption[];
|
|
export let selectedOption: ComboBoxOption;
|
|
export let onSelect: (combobox: ComboBoxOption | undefined) => void;
|
|
</script>
|
|
|
|
<div class="grid grid-cols-2">
|
|
<div>
|
|
<div class="flex h-[26px] place-items-center gap-1">
|
|
<label class="font-medium text-immich-primary dark:text-immich-dark-primary text-sm" for={title}>
|
|
{title}
|
|
</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>
|
|
|
|
<p class="text-sm dark:text-immich-dark-fg">{subtitle}</p>
|
|
</div>
|
|
<div class="flex items-center">
|
|
<Combobox
|
|
{selectedOption}
|
|
{options}
|
|
placeholder={comboboxPlaceholder}
|
|
on:select={({ detail }) => onSelect(detail)}
|
|
/>
|
|
<slot />
|
|
</div>
|
|
</div>
|