|
|
|
<script setup lang="ts">
|
|
|
|
import {
|
|
|
|
Form,
|
|
|
|
computed,
|
|
|
|
iconMap,
|
|
|
|
nextTick,
|
|
|
|
onMounted,
|
|
|
|
ref,
|
|
|
|
useProject,
|
|
|
|
useTable,
|
|
|
|
useTabs,
|
|
|
|
useVModel,
|
|
|
|
validateTableName,
|
|
|
|
} from '#imports'
|
|
|
|
import { TabType } from '~/lib'
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
modelValue: boolean
|
|
|
|
baseId: string
|
|
|
|
}>()
|
|
|
|
|
|
|
|
const emit = defineEmits(['update:modelValue'])
|
|
|
|
|
|
|
|
const dialogShow = useVModel(props, 'modelValue', emit)
|
|
|
|
|
|
|
|
const isAdvanceOptVisible = ref(false)
|
|
|
|
|
|
|
|
const inputEl = ref<HTMLInputElement>()
|
|
|
|
|
|
|
|
const { addTab } = useTabs()
|
|
|
|
|
|
|
|
const { loadTables, isMysql, isMssql, isPg } = useProject()
|
|
|
|
|
|
|
|
const { table, createTable, generateUniqueTitle, tables, project } = useTable(async (table) => {
|
|
|
|
await loadTables()
|
|
|
|
|
|
|
|
addTab({
|
|
|
|
id: table.id as string,
|
|
|
|
title: table.title,
|
|
|
|
type: TabType.TABLE,
|
|
|
|
})
|
|
|
|
|
|
|
|
dialogShow.value = false
|
|
|
|
}, props.baseId)
|
|
|
|
|
|
|
|
const useForm = Form.useForm
|
|
|
|
|
|
|
|
const validators = computed(() => {
|
|
|
|
return {
|
|
|
|
title: [
|
|
|
|
validateTableName,
|
|
|
|
{
|
|
|
|
validator: (_: any, value: any) => {
|
|
|
|
// validate duplicate alias
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
if ((tables.value || []).some((t) => t.title === (value || '') && t.base_id === props.baseId)) {
|
|
|
|
return reject(new Error('Duplicate table alias'))
|
|
|
|
}
|
|
|
|
return resolve(true)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
validator: (rule: any, value: any) => {
|
|
|
|
return new Promise<void>((resolve, reject) => {
|
|
|
|
let tableNameLengthLimit = 255
|
|
|
|
if (isMysql(props.baseId)) {
|
|
|
|
tableNameLengthLimit = 64
|
|
|
|
} else if (isPg(props.baseId)) {
|
|
|
|
tableNameLengthLimit = 63
|
|
|
|
} else if (isMssql(props.baseId)) {
|
|
|
|
tableNameLengthLimit = 128
|
|
|
|
}
|
|
|
|
const projectPrefix = project?.value?.prefix || ''
|
|
|
|
if ((projectPrefix + value).length > tableNameLengthLimit) {
|
|
|
|
return reject(new Error(`Table name exceeds ${tableNameLengthLimit} characters`))
|
|
|
|
}
|
|
|
|
resolve()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
table_name: [validateTableName],
|
|
|
|
}
|
|
|
|
})
|
|
|
|
const { validate, validateInfos } = useForm(table, validators)
|
|
|
|
|
|
|
|
const systemColumnsCheckboxInfo = SYSTEM_COLUMNS.map((c, index) => ({
|
|
|
|
value: c,
|
|
|
|
disabled: index === 0,
|
|
|
|
}))
|
|
|
|
|
|
|
|
const creating = ref(false)
|
|
|
|
|
|
|
|
const _createTable = async () => {
|
|
|
|
try {
|
|
|
|
creating.value = true
|
|
|
|
await validate()
|
|
|
|
await createTable()
|
|
|
|
} catch (e: any) {
|
|
|
|
e.errorFields.map((f: Record<string, any>) => message.error(f.errors.join(',')))
|
|
|
|
if (e.errorFields.length) return
|
|
|
|
} finally {
|
|
|
|
creating.value = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
generateUniqueTitle()
|
|
|
|
nextTick(() => {
|
|
|
|
inputEl.value?.focus()
|
|
|
|
inputEl.value?.select()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<a-modal
|
|
|
|
v-model:visible="dialogShow"
|
|
|
|
:class="{ active: dialogShow }"
|
|
|
|
:title="$t('activity.createTable')"
|
|
|
|
centered
|
|
|
|
wrap-class-name="nc-modal-table-create"
|
|
|
|
@keydown.esc="dialogShow = false"
|
|
|
|
>
|
|
|
|
<template #footer>
|
|
|
|
<a-button key="back" size="middle" class="!rounded-md" @click="dialogShow = false">{{ $t('general.cancel') }}</a-button>
|
|
|
|
|
|
|
|
<a-button key="submit" size="middle" class="!rounded-md" type="primary" :loading="creating" @click="_createTable"
|
|
|
|
>{{ $t('general.submit') }}
|
|
|
|
</a-button>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<a-form :model="table" name="create-new-table-form" @keydown.enter="_createTable">
|
|
|
|
<!-- hint="Enter table name" -->
|
|
|
|
<!-- Table name -->
|
|
|
|
<div class="mb-2">{{ $t('labels.tableName') }}</div>
|
|
|
|
|
|
|
|
<a-form-item v-bind="validateInfos.title">
|
|
|
|
<a-input
|
|
|
|
ref="inputEl"
|
|
|
|
v-model:value="table.title"
|
|
|
|
size="large"
|
|
|
|
hide-details
|
|
|
|
data-testid="create-table-title-input"
|
|
|
|
:placeholder="$t('msg.info.enterTableName')"
|
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<div class="flex justify-end items-center">
|
|
|
|
<div class="pointer flex flex-row items-center gap-x-1" @click="isAdvanceOptVisible = !isAdvanceOptVisible">
|
|
|
|
{{ isAdvanceOptVisible ? $t('general.hideAll') : $t('general.showMore') }}
|
|
|
|
|
|
|
|
<component :is="iconMap.minusCircle" v-if="isAdvanceOptVisible" class="text-gray-500" />
|
|
|
|
<component :is="iconMap.plusCircle" v-else class="text-gray-500" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="nc-table-advanced-options" :class="{ active: isAdvanceOptVisible }">
|
|
|
|
<!-- hint="Table name as saved in database" -->
|
|
|
|
<div v-if="!project.prefix" class="mb-2">{{ $t('msg.info.tableNameInDb') }}</div>
|
|
|
|
|
|
|
|
<a-form-item v-if="!project.prefix" v-bind="validateInfos.table_name">
|
|
|
|
<a-input v-model:value="table.table_name" size="large" hide-details :placeholder="$t('msg.info.tableNameInDb')" />
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<div class="mb-1">
|
|
|
|
<!-- Add Default Columns -->
|
|
|
|
{{ $t('msg.info.addDefaultColumns') }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<a-row>
|
|
|
|
<a-checkbox-group
|
|
|
|
v-model:value="table.columns"
|
|
|
|
:options="systemColumnsCheckboxInfo"
|
|
|
|
class="!flex flex-row justify-between w-full"
|
|
|
|
>
|
|
|
|
<template #label="{ value }">
|
|
|
|
<a-tooltip v-if="value === 'id'" placement="top" class="!flex">
|
|
|
|
<template #title>
|
|
|
|
<span>ID column is required, you can rename this later if required.</span>
|
|
|
|
</template>
|
|
|
|
ID
|
|
|
|
</a-tooltip>
|
|
|
|
<div v-else class="flex">
|
|
|
|
{{ value }}
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</a-checkbox-group>
|
|
|
|
</a-row>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a-form>
|
|
|
|
</div>
|
|
|
|
</a-modal>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.nc-table-advanced-options {
|
|
|
|
max-height: 0;
|
|
|
|
transition: 0.3s max-height;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
max-height: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|