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.
110 lines
2.9 KiB
110 lines
2.9 KiB
<script lang="ts" setup> |
|
import type { BaseType, SourceType } from 'nocodb-sdk' |
|
|
|
const props = defineProps<{ |
|
source: SourceType |
|
base: BaseType |
|
}>() |
|
|
|
const source = toRef(props, 'source') |
|
|
|
const { isUIAllowed } = useRoles() |
|
|
|
const baseRole = inject(ProjectRoleInj) |
|
|
|
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 })" |
|
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 })" 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 })" |
|
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 })" |
|
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>
|
|
|