mirror of
https://github.com/immich-app/immich.git
synced 2025-09-29 15:31:13 -04:00
59 lines
1.8 KiB
Svelte
59 lines
1.8 KiB
Svelte
<script lang="ts">
|
|
import { invalidateAll } from '$app/navigation';
|
|
import Combobox from '$lib/components/shared-components/combobox.svelte';
|
|
import { defaultLang, langs } from '$lib/constants';
|
|
import { lang } from '$lib/stores/preferences.store';
|
|
import { getClosestAvailableLocale, langCodes } from '$lib/utils/i18n';
|
|
import { locale as i18nLocale, t } from 'svelte-i18n';
|
|
|
|
interface Props {
|
|
showSettingDescription?: boolean;
|
|
}
|
|
|
|
let { showSettingDescription = false }: Props = $props();
|
|
|
|
const langOptions = langs
|
|
.map((lang) => ({ label: lang.name, value: lang.code }))
|
|
.sort((a, b) => {
|
|
if (b.label.startsWith('Development')) {
|
|
return -1;
|
|
}
|
|
return a.label.localeCompare(b.label);
|
|
});
|
|
|
|
const defaultLangOption = { label: defaultLang.name, value: defaultLang.code };
|
|
|
|
const handleLanguageChange = async (newLang: string | undefined) => {
|
|
if (newLang) {
|
|
$lang = newLang;
|
|
await i18nLocale.set(newLang);
|
|
await invalidateAll();
|
|
}
|
|
};
|
|
|
|
let closestLanguage = $derived(getClosestAvailableLocale([$lang], langCodes));
|
|
</script>
|
|
|
|
<div class={showSettingDescription ? 'grid grid-cols-2' : ''}>
|
|
{#if showSettingDescription}
|
|
<div>
|
|
<div class="flex h-[26px] place-items-center gap-1">
|
|
<label class="font-medium text-primary text-sm" for={$t('language')}>
|
|
{$t('language')}
|
|
</label>
|
|
</div>
|
|
|
|
<p class="text-sm dark:text-immich-dark-fg">{$t('language_setting_description')}</p>
|
|
</div>
|
|
{/if}
|
|
|
|
<Combobox
|
|
label={$t('language')}
|
|
hideLabel={true}
|
|
selectedOption={langOptions.find(({ value }) => value === closestLanguage) || defaultLangOption}
|
|
placeholder={$t('language')}
|
|
onSelect={(event) => handleLanguageChange(event?.value)}
|
|
options={langOptions}
|
|
/>
|
|
</div>
|