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.
179 lines
5.4 KiB
179 lines
5.4 KiB
<script lang="ts" setup> |
|
import type { BaseType, ProjectType } from 'nocodb-sdk' |
|
|
|
const props = defineProps<{ |
|
base: BaseType |
|
project: ProjectType |
|
}>() |
|
|
|
const base = toRef(props, 'base') |
|
|
|
const { isUIAllowed } = useUIPermission() |
|
|
|
const projectRole = inject(ProjectRoleInj) |
|
|
|
const { $e } = useNuxtApp() |
|
|
|
function openAirtableImportDialog(baseId?: string) { |
|
if (!baseId) return |
|
|
|
$e('a:actions:import-airtable') |
|
|
|
const isOpen = ref(true) |
|
|
|
const { close } = useDialog(resolveComponent('DlgAirtableImport'), { |
|
'modelValue': isOpen, |
|
'baseId': baseId, |
|
'onUpdate:modelValue': closeDialog, |
|
}) |
|
|
|
function closeDialog() { |
|
isOpen.value = false |
|
|
|
close(1000) |
|
} |
|
} |
|
|
|
function openQuickImportDialog(type: string) { |
|
if (!base.value?.id) return |
|
|
|
$e(`a:actions:import-${type}`) |
|
|
|
const isOpen = ref(true) |
|
|
|
const { close } = useDialog(resolveComponent('DlgQuickImport'), { |
|
'modelValue': isOpen, |
|
'importType': type, |
|
'baseId': base.value.id, |
|
'onUpdate:modelValue': closeDialog, |
|
}) |
|
|
|
function closeDialog() { |
|
isOpen.value = false |
|
|
|
close(1000) |
|
} |
|
} |
|
</script> |
|
|
|
<template> |
|
<a-menu-divider class="my-0" /> |
|
|
|
<!-- Quick Import From --> |
|
<a-sub-menu class="py-0"> |
|
<template #title> |
|
<div class="nc-project-menu-item group"> |
|
<GeneralIcon icon="download" class="-ml-0.25" /> |
|
<div class="-ml-0.5"> |
|
{{ $t('title.quickImportFrom') }} |
|
</div> |
|
|
|
<MaterialSymbolsChevronRightRounded class="transform group-hover:(scale-115 text-accent) text-xl text-gray-400" /> |
|
</div> |
|
</template> |
|
|
|
<template #expandIcon></template> |
|
|
|
<a-menu-item |
|
v-if="isUIAllowed('airtableImport', false, projectRole)" |
|
key="quick-import-airtable" |
|
@click="openAirtableImportDialog(base.id)" |
|
> |
|
<div class="color-transition nc-project-menu-item group"> |
|
<GeneralIcon icon="airtable" class="group-hover:text-black" /> |
|
Airtable |
|
</div> |
|
</a-menu-item> |
|
|
|
<a-menu-item v-if="isUIAllowed('csvImport', false, projectRole)" key="quick-import-csv" @click="openQuickImportDialog('csv')"> |
|
<div class="color-transition nc-project-menu-item group"> |
|
<GeneralIcon icon="csv" class="group-hover:text-black" /> |
|
CSV file |
|
</div> |
|
</a-menu-item> |
|
|
|
<a-menu-item |
|
v-if="isUIAllowed('jsonImport', false, projectRole)" |
|
key="quick-import-json" |
|
@click="openQuickImportDialog('json')" |
|
> |
|
<div class="color-transition nc-project-menu-item group"> |
|
<GeneralIcon icon="code" class="group-hover:text-black" /> |
|
JSON file |
|
</div> |
|
</a-menu-item> |
|
|
|
<a-menu-item |
|
v-if="isUIAllowed('excelImport', false, projectRole)" |
|
key="quick-import-excel" |
|
@click="openQuickImportDialog('excel')" |
|
> |
|
<div class="color-transition nc-project-menu-item group"> |
|
<GeneralIcon icon="excel" class="group-hover:text-black" /> |
|
Microsoft Excel |
|
</div> |
|
</a-menu-item> |
|
</a-sub-menu> |
|
|
|
<a-menu-divider v-if="false" class="my-0" /> |
|
|
|
<!-- Connect to new datasource --> |
|
<!-- <a-sub-menu> |
|
<template #title> |
|
<div class="nc-project-menu-item group"> |
|
<GeneralIcon icon="datasource" class="group-hover:text-black" /> |
|
Connect to new datasource |
|
<div class="flex-1" /> |
|
|
|
<MaterialSymbolsChevronRightRounded class="transform group-hover:(scale-115 text-accent) text-xl text-gray-400" /> |
|
</div> |
|
</template> |
|
|
|
<template #expandIcon></template> |
|
<a-menu-item key="connect-new-source" @click="toggleDialog(true, 'dataSources', ClientType.MYSQL, project.id)"> |
|
<div class="color-transition nc-project-menu-item group"> |
|
<LogosMysqlIcon class="group-hover:text-black" /> |
|
MySQL |
|
</div> |
|
</a-menu-item> |
|
<a-menu-item key="connect-new-source" @click="toggleDialog(true, 'dataSources', ClientType.PG, project.id)"> |
|
<div class="color-transition nc-project-menu-item group"> |
|
<LogosPostgresql class="group-hover:text-black" /> |
|
Postgres |
|
</div> |
|
</a-menu-item> |
|
<a-menu-item key="connect-new-source" @click="toggleDialog(true, 'dataSources', ClientType.SQLITE, project.id)"> |
|
<div class="color-transition nc-project-menu-item group"> |
|
<VscodeIconsFileTypeSqlite class="group-hover:text-black" /> |
|
SQLite |
|
</div> |
|
</a-menu-item> |
|
<a-menu-item key="connect-new-source" @click="toggleDialog(true, 'dataSources', ClientType.MSSQL, project.id)"> |
|
<div class="color-transition nc-project-menu-item group"> |
|
<SimpleIconsMicrosoftsqlserver class="group-hover:text-black" /> |
|
MSSQL |
|
</div> |
|
</a-menu-item> |
|
<a-menu-item |
|
v-if="appInfo.ee" |
|
key="connect-new-source" |
|
@click="toggleDialog(true, 'dataSources', ClientType.SNOWFLAKE, project.id)" |
|
> |
|
<div class="color-transition nc-project-menu-item group"> |
|
<LogosSnowflakeIcon class="group-hover:text-black" /> |
|
Snowflake |
|
</div> |
|
</a-menu-item> |
|
<a-menu-item v-if="isUIAllowed('importRequest', false, projectRole)" key="add-new-table" class="py-1 rounded-b"> |
|
<a |
|
v-e="['e:datasource:import-request']" |
|
href="https://github.com/nocodb/nocodb/issues/2052" |
|
target="_blank" |
|
class="prose-sm hover:(!text-primary !opacity-100) color-transition nc-project-menu-item group after:(!rounded-b)" |
|
> |
|
<GeneralIcon icon="openInNew" class="group-hover:text-black" /> |
|
{{ $t('labels.requestDataSource') }} |
|
</a> |
|
</a-menu-item> |
|
</a-sub-menu> --> |
|
</template>
|
|
|