mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 01:26:41 +00:00
117 lines
3.0 KiB
Vue
117 lines
3.0 KiB
Vue
<script lang="ts" setup>
|
|
import type { BaseType, SourceType } from 'nocodb-sdk'
|
|
|
|
const props = defineProps<{
|
|
source: SourceType
|
|
base: BaseType
|
|
}>()
|
|
|
|
const source = toRef(props, 'source')
|
|
|
|
const base = toRef(props, 'base')
|
|
|
|
const { isUIAllowed } = useRoles()
|
|
|
|
const baseRole = computed(() => base.value.project_role || base.value.workspace_role)
|
|
|
|
const { $e } = useNuxtApp()
|
|
|
|
function openAirtableImportDialog(baseId?: string, sourceId?: string) {
|
|
if (!baseId || !sourceId) return
|
|
|
|
$e('a:actions:import-airtable')
|
|
|
|
const isOpen = ref(true)
|
|
|
|
const { close } = useDialog(resolveComponent('DlgAirtableImport'), {
|
|
'modelValue': isOpen,
|
|
'baseId': baseId,
|
|
'sourceId': sourceId,
|
|
'onUpdate:modelValue': closeDialog,
|
|
})
|
|
|
|
function closeDialog() {
|
|
isOpen.value = false
|
|
|
|
close(1000)
|
|
}
|
|
}
|
|
|
|
function openQuickImportDialog(type: string) {
|
|
if (!source.value?.id) return
|
|
|
|
$e(`a:actions:import-${type}`)
|
|
|
|
const isOpen = ref(true)
|
|
|
|
const { close } = useDialog(resolveComponent('DlgQuickImport'), {
|
|
'modelValue': isOpen,
|
|
'importType': type,
|
|
'sourceId': source.value.id,
|
|
'onUpdate:modelValue': closeDialog,
|
|
})
|
|
|
|
function closeDialog() {
|
|
isOpen.value = false
|
|
|
|
close(1000)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<!-- Quick Import From -->
|
|
<NcSubMenu class="py-0" data-testid="nc-sidebar-base-import">
|
|
<template #title>
|
|
<GeneralIcon icon="download" />
|
|
{{ $t('labels.importData') }}
|
|
</template>
|
|
|
|
<template #expandIcon></template>
|
|
|
|
<NcMenuItem
|
|
v-if="isUIAllowed('airtableImport', { roles: baseRole, source })"
|
|
key="quick-import-airtable"
|
|
@click="openAirtableImportDialog(source.base_id, source.id)"
|
|
>
|
|
<div v-e="['c:import:airtable']" class="flex gap-2 items-center">
|
|
<GeneralIcon icon="airtable" class="max-w-3.75 group-hover:text-black" />
|
|
<div class="ml-0.5">{{ $t('labels.airtable') }}</div>
|
|
</div>
|
|
</NcMenuItem>
|
|
|
|
<NcMenuItem
|
|
v-if="isUIAllowed('csvImport', { roles: baseRole, source })"
|
|
key="quick-import-csv"
|
|
@click="openQuickImportDialog('csv')"
|
|
>
|
|
<div v-e="['c:import:csv']" class="flex gap-2 items-center">
|
|
<GeneralIcon icon="csv" class="w-4 group-hover:text-black" />
|
|
{{ $t('labels.csvFile') }}
|
|
</div>
|
|
</NcMenuItem>
|
|
|
|
<NcMenuItem
|
|
v-if="isUIAllowed('jsonImport', { roles: baseRole, source })"
|
|
key="quick-import-json"
|
|
@click="openQuickImportDialog('json')"
|
|
>
|
|
<div v-e="['c:import:json']" class="flex gap-2 items-center">
|
|
<GeneralIcon icon="code" class="w-4 group-hover:text-black" />
|
|
{{ $t('labels.jsonFile') }}
|
|
</div>
|
|
</NcMenuItem>
|
|
|
|
<NcMenuItem
|
|
v-if="isUIAllowed('excelImport', { roles: baseRole, source })"
|
|
key="quick-import-excel"
|
|
@click="openQuickImportDialog('excel')"
|
|
>
|
|
<div v-e="['c:import:excel']" class="flex gap-2 items-center">
|
|
<GeneralIcon icon="excel" class="max-w-4 group-hover:text-black" />
|
|
{{ $t('labels.microsoftExcel') }}
|
|
</div>
|
|
</NcMenuItem>
|
|
</NcSubMenu>
|
|
</template>
|