mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
* chore(web): another missing translations * unused removed * more keys * lint fix * test fixed * dynamic translation fix * fixes * people search translation * params fixed * keep filter setting fix * lint fix * $t fixes * Update web/src/lib/i18n/en.json Co-authored-by: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com> * another missing * activity translation * link sharing translations * expiration dropdown fix - didn't work localized * notification title * device logout * search results * reset to default * unsaved change * select from computer * selected * select-2 * select-3 * unmerge * pluralize, force icu message * Update web/src/lib/components/asset-viewer/asset-viewer.svelte Co-authored-by: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com> * review fixes * remove user * plural fixes * ffmpeg settings * fixes * error title * plural fixes * onboarding * change password * more more * console log fix * another * api key desc * map marker * format fix * key fix * asset-utils * utils * misc --------- Co-authored-by: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com>
49 lines
1.4 KiB
Svelte
49 lines
1.4 KiB
Svelte
<script lang="ts">
|
|
import { quintOut } from 'svelte/easing';
|
|
import { fly } from 'svelte/transition';
|
|
import Dropdown, { type RenderedOption } from '$lib/components/elements/dropdown.svelte';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
export let title: string;
|
|
export let subtitle = '';
|
|
export let options: RenderedOption[];
|
|
export let selectedOption: RenderedOption;
|
|
export let isEdited = false;
|
|
|
|
export let onToggle: (option: RenderedOption) => void;
|
|
</script>
|
|
|
|
<div class="flex place-items-center justify-between">
|
|
<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"
|
|
>
|
|
{$t('unsaved_change')}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
|
|
<p class="text-sm dark:text-immich-dark-fg">{subtitle}</p>
|
|
<slot />
|
|
</div>
|
|
<div class="w-fit">
|
|
<Dropdown
|
|
{options}
|
|
hideTextOnSmallScreen={false}
|
|
bind:selectedOption
|
|
render={(option) => {
|
|
return {
|
|
title: option.title,
|
|
icon: option.icon,
|
|
};
|
|
}}
|
|
on:select={({ detail }) => onToggle(detail)}
|
|
/>
|
|
</div>
|
|
</div>
|