mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.7 KiB
66 lines
1.7 KiB
2 years ago
|
<script lang="ts" setup>
|
||
|
import { onMounted, useGlobal, useI18n, useNuxtApp } from '#imports'
|
||
|
|
||
|
const { availableLocales = ['en'], locale } = useI18n()
|
||
|
const languages = $computed(() => availableLocales.sort())
|
||
|
|
||
|
const { $e } = useNuxtApp()
|
||
|
|
||
|
const { lang: currentLang } = useGlobal()
|
||
|
|
||
|
const isRtlLang = $computed(() => ['fa'].includes(currentLang.value))
|
||
|
|
||
|
function applyDirection() {
|
||
|
const targetDirection = isRtlLang ? 'rtl' : 'ltr'
|
||
|
|
||
|
const oppositeDirection = targetDirection === 'ltr' ? 'rtl' : 'ltr'
|
||
|
|
||
|
document.body.classList.remove(oppositeDirection)
|
||
|
document.body.classList.add(targetDirection)
|
||
|
document.body.style.direction = targetDirection
|
||
|
}
|
||
|
|
||
|
onMounted(() => {
|
||
|
applyDirection()
|
||
|
})
|
||
|
|
||
|
function changeLanguage(lang: string) {
|
||
|
currentLang.value = lang
|
||
|
locale.value = lang
|
||
|
|
||
|
applyDirection()
|
||
|
|
||
|
$e('c:navbar:lang', { lang })
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<a-menu class="scrollbar-thin-dull min-w-50 max-h-90vh overflow-auto !py-0 rounded">
|
||
|
<a-menu-item
|
||
|
v-for="lang of languages"
|
||
|
:key="lang"
|
||
|
:class="lang === locale ? '!bg-primary/10 text-primary' : ''"
|
||
|
class="group"
|
||
|
:value="lang"
|
||
|
@click="changeLanguage(lang)"
|
||
|
>
|
||
|
<div
|
||
|
:class="lang === locale ? '!font-semibold !text-primary' : ''"
|
||
|
class="nc-project-menu-item capitalize group-hover:text-pink-500"
|
||
|
>
|
||
|
{{ Language[lang] || lang }}
|
||
|
</div>
|
||
|
</a-menu-item>
|
||
|
|
||
|
<a-menu-item>
|
||
|
<a
|
||
|
href="https://docs.nocodb.com/engineering/translation/#how-to-contribute--for-community-members"
|
||
|
target="_blank"
|
||
|
class="caption py-2 text-primary underline hover:opacity-75"
|
||
|
>
|
||
|
{{ $t('activity.translate') }}
|
||
|
</a>
|
||
|
</a-menu-item>
|
||
|
</a-menu>
|
||
|
</template>
|