mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
48 lines
1.1 KiB
Vue
48 lines
1.1 KiB
Vue
<script lang="ts" setup>
|
|
import VPIconLanguages from './icons/VPIconLanguages.vue'
|
|
import VPFlyout from './VPFlyout.vue'
|
|
import VPMenuLink from './VPMenuLink.vue'
|
|
import { useData } from '../composables/data'
|
|
import { useLangs } from '../composables/langs'
|
|
|
|
const { theme } = useData()
|
|
const { localeLinks, currentLang } = useLangs({ correspondingLink: true })
|
|
</script>
|
|
|
|
<template>
|
|
<VPFlyout
|
|
v-if="localeLinks.length && currentLang.label"
|
|
class="VPNavBarTranslations"
|
|
:icon="VPIconLanguages"
|
|
:label="theme.langMenuLabel || 'Change language'"
|
|
>
|
|
<div class="items">
|
|
<p class="title">{{ currentLang.label }}</p>
|
|
|
|
<template v-for="locale in localeLinks" :key="locale.link">
|
|
<VPMenuLink :item="locale" />
|
|
</template>
|
|
</div>
|
|
</VPFlyout>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.VPNavBarTranslations {
|
|
display: none;
|
|
}
|
|
|
|
@media (min-width: 1280px) {
|
|
.VPNavBarTranslations {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
.title {
|
|
padding: 0 24px 0 12px;
|
|
line-height: 32px;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: var(--vp-c-text-1);
|
|
}
|
|
</style>
|