mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2026-01-16 19:12:25 +01:00
51 lines
1.5 KiB
Vue
51 lines
1.5 KiB
Vue
<script lang="ts" setup>
|
|
import { computed } from "vue";
|
|
import localeStore from "../store/localeStore.ts";
|
|
import { useI18n } from "vue-i18n";
|
|
import { DropdownChangeEvent } from "primevue/dropdown";
|
|
const { t } = useI18n({ useScope: "global" });
|
|
|
|
const countries = computed(() => [
|
|
{ name: t("english"), code: "en", icon: "🇬🇧" },
|
|
{ name: t("german"), code: "de", icon: "🇩🇪" },
|
|
]);
|
|
|
|
function displayIcon(code: string) {
|
|
return countries.value.find((country) => country.code === code)?.icon;
|
|
}
|
|
|
|
function displayCountry(code: string) {
|
|
return countries.value.find((country) => country.code === code)?.name;
|
|
}
|
|
|
|
function updateLocale(dropdownChangeEvent: DropdownChangeEvent) {
|
|
localeStore().setLocale(dropdownChangeEvent.value);
|
|
}
|
|
</script>
|
|
<template>
|
|
<Dropdown
|
|
v-model="$i18n.locale"
|
|
:options="$i18n.availableLocales"
|
|
option-label="name"
|
|
placeholder="Select a Language"
|
|
class="w-full md:w-14rem"
|
|
@change="updateLocale($event)"
|
|
>
|
|
<template #value="slotProps">
|
|
<div v-if="slotProps.value" class="flex align-items-center">
|
|
<div class="mr-2 flag">{{ displayIcon(slotProps.value) }}</div>
|
|
<div>{{ displayCountry(slotProps.value) }}</div>
|
|
</div>
|
|
<span v-else>
|
|
{{ slotProps.placeholder }}
|
|
</span>
|
|
</template>
|
|
<template #option="slotProps">
|
|
<div class="flex align-items-center">
|
|
<div class="mr-2 flag">{{ displayIcon(slotProps.option) }}</div>
|
|
<div>{{ displayCountry(slotProps.option) }}</div>
|
|
</div>
|
|
</template>
|
|
</Dropdown>
|
|
</template>
|