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.
142 lines
4.3 KiB
142 lines
4.3 KiB
<script setup lang="ts"> |
|
import { Form } from 'ant-design-vue' |
|
import { computed, onMounted, ref, useProject, useTable, useTabs, useVModel, validateTableName } from '#imports' |
|
import { TabType } from '~/composables' |
|
|
|
interface Props { |
|
modelValue: boolean |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const emit = defineEmits(['update:modelValue']) |
|
|
|
const dialogShow = useVModel(props, 'modelValue', emit) |
|
|
|
const isAdvanceOptVisible = ref(false) |
|
|
|
const inputEl = ref<HTMLInputElement>() |
|
|
|
const { addTab } = useTabs() |
|
|
|
const { loadTables } = 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 |
|
}) |
|
|
|
const useForm = Form.useForm |
|
|
|
const validateDuplicateAlias = (v: string) => (tables.value || []).every((t) => t.title !== (v || '')) || 'Duplicate table alias' |
|
|
|
const validators = computed(() => { |
|
return { |
|
title: [validateTableName, validateDuplicateAlias], |
|
table_name: [validateTableName], |
|
} |
|
}) |
|
const { validateInfos } = useForm(table, validators) |
|
|
|
onMounted(() => { |
|
generateUniqueTitle() |
|
|
|
inputEl.value?.focus() |
|
}) |
|
</script> |
|
|
|
<template> |
|
<a-modal v-model:visible="dialogShow" width="max(30vw, 600px)" @keydown.esc="dialogShow = false"> |
|
<template #footer> |
|
<a-button key="back" size="large" @click="dialogShow = false">{{ $t('general.cancel') }}</a-button> |
|
|
|
<a-button key="submit" size="large" type="primary" @click="createTable()">{{ $t('general.submit') }}</a-button> |
|
</template> |
|
|
|
<div class="pl-10 pr-10 pt-5"> |
|
<a-form :model="table" name="create-new-table-form" @keydown.enter="createTable"> |
|
<!-- Create A New Table --> |
|
<div class="prose-xl font-bold self-center my-4">{{ $t('activity.createTable') }}</div> |
|
|
|
<!-- hint="Enter table name" --> |
|
<div class="mb-2">Table Name</div> |
|
|
|
<a-form-item v-bind="validateInfos.title"> |
|
<a-input |
|
ref="inputEl" |
|
v-model:value="table.title" |
|
size="large" |
|
hide-details |
|
:placeholder="$t('msg.info.enterTableName')" |
|
/> |
|
</a-form-item> |
|
|
|
<div class="flex justify-end"> |
|
<div class="pointer" @click="isAdvanceOptVisible = !isAdvanceOptVisible"> |
|
{{ isAdvanceOptVisible ? 'Hide' : 'Show' }} more |
|
|
|
<MdiMinusCircleOutline v-if="isAdvanceOptVisible" class="text-gray-500" /> |
|
<MdiPlusCircleOutline 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-5"> |
|
<!-- Add Default Columns --> |
|
{{ $t('msg.info.addDefaultColumns') }} |
|
</div> |
|
|
|
<a-row> |
|
<a-col :span="6"> |
|
<a-tooltip placement="top"> |
|
<template #title> |
|
<span>ID column is required, you can rename this later if required.</span> |
|
</template> |
|
<a-checkbox v-model:checked="table.columns.id" disabled>ID</a-checkbox> |
|
</a-tooltip> |
|
</a-col> |
|
|
|
<a-col :span="6"> |
|
<a-checkbox v-model:checked="table.columns.title"> title </a-checkbox> |
|
</a-col> |
|
|
|
<a-col :span="6"> |
|
<a-checkbox v-model:checked="table.columns.created_at"> created_at </a-checkbox> |
|
</a-col> |
|
|
|
<a-col :span="6"> |
|
<a-checkbox v-model:checked="table.columns.updated_at"> updated_at </a-checkbox> |
|
</a-col> |
|
</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: 200px; |
|
} |
|
} |
|
</style>
|
|
|