mirror of https://github.com/nocodb/nocodb
Muhammed Mustafa
1 year ago
committed by
GitHub
5 changed files with 95 additions and 20 deletions
@ -0,0 +1,52 @@ |
|||||||
|
<script lang="ts" setup> |
||||||
|
const props = defineProps<{ |
||||||
|
baseId: string |
||||||
|
sourceId: string |
||||||
|
modelValue: boolean |
||||||
|
}>() |
||||||
|
|
||||||
|
const emit = defineEmits(['update:modelValue']) |
||||||
|
|
||||||
|
const isOpen = useVModel(props, 'modelValue', emit) |
||||||
|
|
||||||
|
const activeSourceId = computed(() => props.sourceId) |
||||||
|
|
||||||
|
const { openedProject: base } = storeToRefs(useBases()) |
||||||
|
|
||||||
|
const { baseTables } = storeToRefs(useTablesStore()) |
||||||
|
const { loadProjectTables } = useTablesStore() |
||||||
|
|
||||||
|
const isLoading = ref(true) |
||||||
|
|
||||||
|
const { getMeta } = useMetas() |
||||||
|
|
||||||
|
const baseId = computed(() => props.baseId || base.value?.id) |
||||||
|
|
||||||
|
onMounted(async () => { |
||||||
|
if (baseId.value && baseTables.value.get(baseId.value)) { |
||||||
|
return (isLoading.value = false) |
||||||
|
} |
||||||
|
|
||||||
|
try { |
||||||
|
await loadProjectTables(baseId.value!) |
||||||
|
|
||||||
|
await Promise.all( |
||||||
|
baseTables.value.get(baseId.value!)!.map(async (table) => { |
||||||
|
await getMeta(table.id!, false, false, baseId.value!) |
||||||
|
}), |
||||||
|
) |
||||||
|
} catch (e) { |
||||||
|
console.error(e) |
||||||
|
} finally { |
||||||
|
isLoading.value = false |
||||||
|
} |
||||||
|
}) |
||||||
|
</script> |
||||||
|
|
||||||
|
<template> |
||||||
|
<GeneralModal v-model:visible="isOpen" size="large"> |
||||||
|
<div class="h-[80vh]"> |
||||||
|
<ErdView v-if="!isLoading" :source-id="activeSourceId" :base-id="baseId" /> |
||||||
|
</div> |
||||||
|
</GeneralModal> |
||||||
|
</template> |
Loading…
Reference in new issue