|
|
|
<script setup lang="ts">
|
|
|
|
import type { TableType } from 'nocodb-sdk'
|
|
|
|
import { UITypes } from 'nocodb-sdk'
|
|
|
|
|
|
|
|
const { table } = defineProps<{ table?: TableType }>()
|
|
|
|
|
|
|
|
const { tables: projectTables } = useProject()
|
|
|
|
|
|
|
|
const { metas, getMeta } = useMetas()
|
|
|
|
|
|
|
|
let isLoading = $ref(true)
|
|
|
|
const erdKey = ref(0)
|
|
|
|
|
|
|
|
const config = ref({
|
|
|
|
showPkAndFk: true,
|
|
|
|
showViews: false,
|
|
|
|
showAllColumns: true,
|
|
|
|
})
|
|
|
|
|
|
|
|
const tables = computed(() => {
|
|
|
|
if (table) {
|
|
|
|
// if table is provided only get the table and its related tables
|
|
|
|
return projectTables.value.filter(
|
|
|
|
(t) =>
|
|
|
|
t.id === table.id ||
|
|
|
|
table.columns?.find(
|
|
|
|
(column) => column.uidt === UITypes.LinkToAnotherRecord && column?.colOptions?.fk_related_model_id === t.id,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return projectTables.value
|
|
|
|
})
|
|
|
|
|
|
|
|
const loadMetaOfTablesNotInMetas = async () => {
|
|
|
|
await Promise.all(
|
|
|
|
tables.value
|
|
|
|
.filter((table) => !metas.value[table.id!])
|
|
|
|
.map(async (table) => {
|
|
|
|
await getMeta(table.id!)
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
await loadMetaOfTablesNotInMetas()
|
|
|
|
|
|
|
|
isLoading = false
|
|
|
|
})
|
|
|
|
|
|
|
|
const tablesFilteredWithConfig = computed(() =>
|
|
|
|
tables.value
|
|
|
|
.filter((table) => !table.mm)
|
|
|
|
.filter((table) => (!config.value.showViews && table.type !== 'view') || config.value.showViews),
|
|
|
|
)
|
|
|
|
|
|
|
|
watch(
|
|
|
|
() => config.value.showAllColumns,
|
|
|
|
() => {
|
|
|
|
config.value.showPkAndFk = config.value.showAllColumns
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
watch(metas, () => {
|
|
|
|
erdKey.value++
|
|
|
|
})
|
|
|
|
|
|
|
|
watch(config, () => {
|
|
|
|
erdKey.value++
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="w-full" style="height: inherit">
|
|
|
|
<div v-if="isLoading" class="h-full w-full flex flex-col justify-center items-center">
|
|
|
|
<div class="flex flex-row justify-center">
|
|
|
|
<a-spin size="large" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div v-else class="relative h-full">
|
|
|
|
<ErdSimpleView :key="erdKey" :tables="tablesFilteredWithConfig" :config="config" />
|
|
|
|
|
|
|
|
<div class="absolute top-2 right-10 flex-col bg-white py-2 px-4 border-1 border-gray-100 rounded-md z-50 space-y-1">
|
|
|
|
<div class="flex flex-row items-center">
|
|
|
|
<a-checkbox v-model:checked="config.showAllColumns" v-e="['c:erd:showAllColumns']" />
|
|
|
|
<span class="ml-2" style="font-size: 0.65rem">Show columns</span>
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center">
|
|
|
|
<a-checkbox v-model:checked="config.showPkAndFk" v-e="['c:erd:showPkAndFk']" />
|
|
|
|
<span class="ml-2" style="font-size: 0.65rem">Show PK and FK</span>
|
|
|
|
</div>
|
|
|
|
<div v-if="!table" class="flex flex-row items-center">
|
|
|
|
<a-checkbox v-model:checked="config.showViews" v-e="['c:erd:showViews']" />
|
|
|
|
<span class="ml-2" style="font-size: 0.65rem">Show SQL views</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|