feat(store): flatten child map of nodes

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2021-12-20 19:29:52 +01:00
parent e2d60bedfd
commit 0450ba2eae
5 changed files with 46 additions and 28 deletions
+4 -2
View File
@@ -9,7 +9,6 @@ import {
Elements,
FlowInstance,
addEdge,
isNode,
removeElements,
} from '~/index'
@@ -21,7 +20,10 @@ const nodes = ref<Elements>([
{ id: '3', label: 'Node 3', position: { x: 400, y: 100 } },
{ id: '4', label: 'Node 4', position: { x: 400, y: 200 } },
])
const edges = ref<Elements>([])
const edges = ref<Elements>([
{ id: 'e1-2', source: '1', target: '2', animated: true },
{ id: 'e1-3', source: '1', target: '3' },
])
const vfInstance = ref<FlowInstance>()
const onLoad = (flowInstance: FlowInstance) => {
flowInstance.fitView({ padding: 0.1 })
+11 -11
View File
@@ -3,27 +3,27 @@ import GroupNode from './GroupNode.vue'
import { VueFlow, Elements, Node, Edge, Connection, addEdge } from '~/index'
const elements = ref<Elements<{ label: string; group?: string }>>([
{
id: 'node-1',
data: { label: 'node-1', group: undefined },
position: { x: 250, y: 5 },
parentNode: 'group-a',
extent: 'parent',
},
{ id: 'node-2', data: { label: 'node-2', group: undefined }, position: { x: 50, y: 5 } },
{ id: 'node-2', label: 'node-2', position: { x: 50, y: 5 } },
{
id: 'group-a',
style: { zIndex: 2, width: '300px', height: '300px' },
selectable: false,
data: { label: 'A' },
label: 'A',
position: { x: 50, y: 100 },
children: [
{
id: 'node-1',
label: 'node-1',
position: { x: 250, y: 5 },
extent: 'parent',
},
],
},
{
id: 'group-b',
type: 'group-b',
style: { zIndex: 2 },
selectable: false,
data: { label: 'B' },
label: 'B',
position: { x: 500, y: 100 },
},
])