mirror of https://github.com/nocodb/nocodb
Pranav C
6 months ago
4 changed files with 74 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" class="!w-[70rem]"> |
||||
<div class="p-6"> |
||||
<DashboardSettingsBaseAudit v-if="!isLoading" :source-id="activeSourceId" :base-id="baseId" :show-all-columns="false" /> |
||||
</div> |
||||
</GeneralModal> |
||||
</template> |
Loading…
Reference in new issue