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.
108 lines
2.7 KiB
108 lines
2.7 KiB
<script setup lang="ts"> |
|
import { Background, Controls, Panel } from '@vue-flow/additional-components' |
|
import { VueFlow, useVueFlow } from '@vue-flow/core' |
|
import type { TableType } from 'nocodb-sdk' |
|
import type { ERDConfig } from './utils' |
|
import { useErdElements } from './utils' |
|
import { computed, onScopeDispose, toRefs, watch } from '#imports' |
|
|
|
interface Props { |
|
tables: TableType[] |
|
config: ERDConfig |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const { tables, config } = toRefs(props) |
|
|
|
const { $destroy, fitView, onPaneReady, viewport, onNodeDoubleClick } = useVueFlow({ minZoom: 0.05, maxZoom: 2 }) |
|
|
|
const { layout, elements } = useErdElements(tables, config) |
|
|
|
const showSkeleton = computed(() => viewport.value.zoom < 0.15) |
|
|
|
function init() { |
|
layout(showSkeleton.value) |
|
if (!showSkeleton.value) { |
|
setTimeout(zoomIn, 100) |
|
} |
|
} |
|
|
|
function zoomIn(nodeId?: string) { |
|
fitView({ nodes: nodeId ? [nodeId] : undefined, duration: 300, minZoom: 0.2 }) |
|
} |
|
|
|
onPaneReady(() => { |
|
layout(showSkeleton.value) |
|
|
|
setTimeout(() => { |
|
fitView({ duration: 250, minZoom: 0.16 }) |
|
}, 100) |
|
}) |
|
|
|
onNodeDoubleClick(({ node }) => { |
|
if (showSkeleton.value) zoomIn() |
|
|
|
setTimeout(() => { |
|
zoomIn(node.id) |
|
}, 250) |
|
}) |
|
|
|
watch(tables, init) |
|
watch(showSkeleton, (isSkeleton) => { |
|
layout(isSkeleton) |
|
setTimeout(() => { |
|
fitView({ |
|
duration: 300, |
|
minZoom: isSkeleton ? undefined : viewport.value.zoom, |
|
maxZoom: isSkeleton ? viewport.value.zoom : undefined, |
|
}) |
|
}, 100) |
|
}) |
|
|
|
onScopeDispose($destroy) |
|
</script> |
|
|
|
<template> |
|
<VueFlow v-model="elements"> |
|
<Controls class="rounded" position="bottom-left" :show-fit-view="false" :show-interactive="false" /> |
|
|
|
<template #node-custom="{ data, dragging }"> |
|
<ErdTableNode :data="data" :dragging="dragging" :show-skeleton="showSkeleton" /> |
|
</template> |
|
|
|
<template #edge-custom="edgeProps"> |
|
<ErdRelationEdge v-bind="edgeProps" :show-skeleton="showSkeleton" /> |
|
</template> |
|
|
|
<Background :size="showSkeleton ? 2 : undefined" :gap="showSkeleton ? 50 : undefined" /> |
|
|
|
<Transition name="layout"> |
|
<Panel |
|
v-if="showSkeleton && config.showAllColumns" |
|
position="bottom-center" |
|
class="color-transition z-5 cursor-pointer rounded shadow-sm text-slate-400 font-semibold px-4 py-2 bg-slate-100/50 hover:(text-slate-900 ring ring-accent ring-opacity-100 bg-slate-100/90)" |
|
@click="zoomIn" |
|
> |
|
<!-- todo: i18n --> |
|
Zoom in to view columns |
|
</Panel> |
|
</Transition> |
|
|
|
<slot /> |
|
</VueFlow> |
|
</template> |
|
|
|
<style> |
|
.vue-flow__edges { |
|
z-index: 1000 !important; |
|
} |
|
|
|
.vue-flow__controls-zoomin { |
|
@apply rounded-t; |
|
} |
|
|
|
.vue-flow__controls-zoomout { |
|
@apply rounded-b; |
|
} |
|
</style>
|
|
|