mirror of https://github.com/nocodb/nocodb
Pranav C
2 years ago
4 changed files with 101 additions and 2 deletions
@ -0,0 +1,65 @@ |
|||||||
|
<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> |
@ -0,0 +1,36 @@ |
|||||||
|
<script lang="ts" setup> |
||||||
|
import Menu from './Menu.vue' |
||||||
|
|
||||||
|
const { subMenu } = defineProps<{ subMenu?: boolean }>() |
||||||
|
</script> |
||||||
|
|
||||||
|
<template> |
||||||
|
<template v-if="subMenu"> |
||||||
|
<Menu /> |
||||||
|
</template> |
||||||
|
<a-dropdown v-else class="select-none color-transition" :trigger="['click']"> |
||||||
|
<MaterialSymbolsTranslate v-bind="$attrs" class="md:text-xl cursor-pointer nc-menu-translate" /> |
||||||
|
|
||||||
|
<template #overlay> |
||||||
|
<Menu /> |
||||||
|
</template> |
||||||
|
</a-dropdown> |
||||||
|
</template> |
||||||
|
|
||||||
|
<style scoped> |
||||||
|
:deep(.ant-dropdown-menu-item-group-list) { |
||||||
|
@apply !mx-0; |
||||||
|
} |
||||||
|
|
||||||
|
:deep(.ant-dropdown-menu-item-group-title) { |
||||||
|
@apply border-b-1; |
||||||
|
} |
||||||
|
|
||||||
|
:deep(.ant-dropdown-menu-item-group-list) { |
||||||
|
@apply m-0; |
||||||
|
} |
||||||
|
|
||||||
|
:deep(.ant-dropdown-menu-item) { |
||||||
|
@apply !py-0 active:(ring ring-pink-500); |
||||||
|
} |
||||||
|
</style> |
Loading…
Reference in new issue