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
+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 },
},
])