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.
60 lines
1.4 KiB
60 lines
1.4 KiB
<script setup lang="ts"> |
|
import { useI18n } from 'vue-i18n' |
|
import UserManagement from './auth/UserManagement.vue' |
|
import ApiTokenManagement from './auth/ApiTokenManagement.vue' |
|
import { useUIPermission } from '#imports' |
|
|
|
interface Tab { |
|
title: string |
|
label: string |
|
body: any |
|
isUIAllowed: boolean |
|
} |
|
const { t } = useI18n() |
|
|
|
const { isUIAllowed } = useUIPermission() |
|
|
|
const tabsInfo: Tab[] = [ |
|
{ |
|
title: 'Users Management', |
|
label: t('title.userMgmt'), |
|
body: () => UserManagement, |
|
isUIAllowed: isUIAllowed('userMgmtTab'), |
|
}, |
|
{ |
|
title: 'API Token Management', |
|
label: t('title.apiTokenMgmt'), |
|
body: () => ApiTokenManagement, |
|
isUIAllowed: isUIAllowed('apiTokenTab'), |
|
}, |
|
] |
|
|
|
// const firstKeyOfObject = (obj: object) => Object.keys(obj)[0] |
|
|
|
const selectedTabKey = $ref(0) |
|
const selectedTab = $computed(() => tabsInfo[selectedTabKey]) |
|
</script> |
|
|
|
<template> |
|
<div v-if="selectedTab.isUIAllowed"> |
|
<a-tabs v-model:active-key="selectedTabKey" :open-keys="[]" mode="horizontal" class="nc-auth-tabs !mx-6"> |
|
<a-tab-pane v-for="(tab, key) of tabsInfo" :key="key" class="select-none"> |
|
<template #tab> |
|
<span> |
|
{{ tab.label }} |
|
</span> |
|
</template> |
|
</a-tab-pane> |
|
</a-tabs> |
|
|
|
<div class="mx-4 py-6 mt-2"> |
|
<component :is="selectedTab.body()" /> |
|
</div> |
|
</div> |
|
</template> |
|
|
|
<style scoped> |
|
:deep(.nc-auth-tabs .ant-tabs-nav::before) { |
|
@apply !border-none; |
|
} |
|
</style>
|
|
|