@@ -82,7 +82,7 @@ const NodeWrapper = defineComponent({
82
82
83
83
const isFocusable = toRef ( ( ) => ( typeof node . focusable === 'undefined' ? nodesFocusable . value : node . focusable ) )
84
84
85
- const isInit = toRef ( ( ) => ! ! node . dimensions . width && ! ! node . dimensions . height )
85
+ const isInit = toRef ( ( ) => ! ! node . measured . width && ! ! node . measured . height )
86
86
87
87
const nodeCmp = computed ( ( ) => {
88
88
const name = node . type || 'default'
@@ -92,7 +92,7 @@ const NodeWrapper = defineComponent({
92
92
return slot
93
93
}
94
94
95
- let nodeType = node . template || getNodeTypes . value [ name ]
95
+ let nodeType = getNodeTypes . value [ name ]
96
96
97
97
if ( typeof nodeType === 'string' ) {
98
98
if ( instance ) {
@@ -112,7 +112,7 @@ const NodeWrapper = defineComponent({
112
112
return false
113
113
} )
114
114
115
- const { emit, on } = useNodeHooks ( node , emits )
115
+ const { emit } = useNodeHooks ( node , emits )
116
116
117
117
const dragging = useDrag ( {
118
118
id : props . id ,
@@ -134,26 +134,7 @@ const NodeWrapper = defineComponent({
134
134
} ,
135
135
} )
136
136
137
- const getClass = computed ( ( ) => ( node . class instanceof Function ? node . class ( node ) : node . class ) )
138
-
139
- const getStyle = computed ( ( ) => {
140
- const styles = ( node . style instanceof Function ? node . style ( node ) : node . style ) || { }
141
-
142
- const width = node . width instanceof Function ? node . width ( node ) : node . width
143
- const height = node . height instanceof Function ? node . height ( node ) : node . height
144
-
145
- if ( width ) {
146
- styles . width = typeof width === 'string' ? width : `${ width } px`
147
- }
148
-
149
- if ( height ) {
150
- styles . height = typeof height === 'string' ? height : `${ height } px`
151
- }
152
-
153
- return styles
154
- } )
155
-
156
- const zIndex = toRef ( ( ) => Number ( node . zIndex ?? getStyle . value . zIndex ?? 0 ) )
137
+ const zIndex = toRef ( ( ) => Number ( node . zIndex ?? node . style ?. zIndex ?? 0 ) )
157
138
158
139
onUpdateNodeInternals ( ( updateIds ) => {
159
140
// when no ids are passed, update all nodes
@@ -191,27 +172,38 @@ const NodeWrapper = defineComponent({
191
172
[
192
173
( ) => node . position . x ,
193
174
( ) => node . position . y ,
194
- ( ) => parentNode . value ?. computedPosition . x ,
195
- ( ) => parentNode . value ?. computedPosition . y ,
196
- ( ) => parentNode . value ?. computedPosition . z ,
175
+ ( ) => parentNode . value ?. internals . positionAbsolute . x ,
176
+ ( ) => parentNode . value ?. internals . positionAbsolute . y ,
177
+ ( ) => parentNode . value ?. internals . z ,
197
178
zIndex ,
198
179
( ) => node . selected ,
199
- ( ) => node . dimensions . height ,
200
- ( ) => node . dimensions . width ,
201
- ( ) => parentNode . value ?. dimensions . height ,
202
- ( ) => parentNode . value ?. dimensions . width ,
180
+ ( ) => node . measured . height ,
181
+ ( ) => node . measured . width ,
182
+ ( ) => parentNode . value ?. measured . height ,
183
+ ( ) => parentNode . value ?. measured . width ,
203
184
] ,
204
185
( [ newX , newY , parentX , parentY , parentZ , nodeZIndex ] ) => {
205
- const xyzPos = {
206
- x : newX ,
207
- y : newY ,
208
- z : nodeZIndex + ( elevateNodesOnSelect . value ? ( node . selected ? 1000 : 0 ) : 0 ) ,
209
- }
186
+ const nextZ = nodeZIndex + ( elevateNodesOnSelect . value ? ( node . selected ? 1000 : 0 ) : 0 )
210
187
211
188
if ( typeof parentX !== 'undefined' && typeof parentY !== 'undefined' ) {
212
- node . computedPosition = getXYZPos ( { x : parentX , y : parentY , z : parentZ ! } , xyzPos )
189
+ const {
190
+ x : absoluteX ,
191
+ y : absoluteY ,
192
+ z,
193
+ } = getXYZPos (
194
+ { x : parentX , y : parentY , z : parentZ ! } ,
195
+ {
196
+ x : newX ,
197
+ y : newY ,
198
+ z : nextZ ,
199
+ } ,
200
+ )
201
+
202
+ node . internals . positionAbsolute = { x : absoluteX , y : absoluteY }
203
+ node . internals . z = z
213
204
} else {
214
- node . computedPosition = xyzPos
205
+ node . internals . positionAbsolute = { x : newX , y : newY }
206
+ node . internals . z = nextZ
215
207
}
216
208
} ,
217
209
{ flush : 'post' , immediate : true } ,
@@ -258,17 +250,18 @@ const NodeWrapper = defineComponent({
258
250
draggable : isDraggable . value ,
259
251
selected : node . selected ,
260
252
selectable : isSelectable . value ,
261
- parent : node . isParent ,
262
253
} ,
263
- getClass . value ,
254
+ node . class ,
255
+ ] ,
256
+ 'style' : [
257
+ {
258
+ visibility : isInit . value ? 'visible' : 'hidden' ,
259
+ zIndex : node . internals . z ?? zIndex . value ,
260
+ transform : `translate(${ node . internals . positionAbsolute . x } px,${ node . internals . positionAbsolute . y } px)` ,
261
+ pointerEvents : isSelectable . value || isDraggable . value ? 'all' : 'none' ,
262
+ } ,
263
+ node . style ,
264
264
] ,
265
- 'style' : {
266
- visibility : isInit . value ? 'visible' : 'hidden' ,
267
- zIndex : node . computedPosition . z ?? zIndex . value ,
268
- transform : `translate(${ node . computedPosition . x } px,${ node . computedPosition . y } px)` ,
269
- pointerEvents : isSelectable . value || isDraggable . value ? 'all' : 'none' ,
270
- ...getStyle . value ,
271
- } ,
272
265
'tabIndex' : isFocusable . value ? 0 : undefined ,
273
266
'role' : isFocusable . value ? 'button' : undefined ,
274
267
'aria-describedby' : disableKeyboardA11y . value ? undefined : `${ ARIA_NODE_DESC_KEY } -${ vueFlowId } ` ,
@@ -286,21 +279,17 @@ const NodeWrapper = defineComponent({
286
279
id : node . id ,
287
280
type : node . type ,
288
281
data : node . data ,
289
- events : { ...node . events , ...on } ,
290
282
selected : node . selected ,
291
- resizing : node . resizing ,
292
283
dragging : dragging . value ,
293
284
connectable : isConnectable . value ,
294
- position : node . computedPosition ,
295
- dimensions : node . dimensions ,
296
- isValidTargetPos : node . isValidTargetPos ,
297
- isValidSourcePos : node . isValidSourcePos ,
298
- parent : node . parentNode ,
299
- parentNodeId : node . parentNode ,
300
- zIndex : node . computedPosition . z ?? zIndex . value ,
285
+ positionAbsoluteX : node . internals . positionAbsolute . x ,
286
+ positionAbsoluteY : node . internals . positionAbsolute . y ,
287
+ width : node . measured . width ,
288
+ height : node . measured . height ,
289
+ parentId : node . parentId ,
290
+ zIndex : node . internals . z ?? zIndex . value ,
301
291
targetPosition : node . targetPosition ,
302
292
sourcePosition : node . sourcePosition ,
303
- label : node . label ,
304
293
dragHandle : node . dragHandle ,
305
294
onUpdateNodeInternals : updateInternals ,
306
295
} ) ,
@@ -309,7 +298,7 @@ const NodeWrapper = defineComponent({
309
298
}
310
299
/** this re-calculates the current position, necessary for clamping by a node's extent */
311
300
function clampPosition ( ) {
312
- const nextPos = node . computedPosition
301
+ const nextPos = node . internals . positionAbsolute
313
302
314
303
if ( snapToGrid . value ) {
315
304
nextPos . x = snapGrid . value [ 0 ] * Math . round ( nextPos . x / snapGrid . value [ 0 ] )
@@ -319,8 +308,8 @@ const NodeWrapper = defineComponent({
319
308
const { computedPosition, position } = calcNextPosition ( node , nextPos , emits . error , nodeExtent . value , parentNode . value )
320
309
321
310
// only overwrite positions if there are changes when clamping
322
- if ( node . computedPosition . x !== computedPosition . x || node . computedPosition . y !== computedPosition . y ) {
323
- node . computedPosition = { ...node . computedPosition , ...computedPosition }
311
+ if ( nextPos . x !== computedPosition . x || nextPos . y !== computedPosition . y ) {
312
+ node . internals . positionAbsolute = { ...nextPos , ...computedPosition }
324
313
}
325
314
326
315
if ( node . position . x !== position . x || node . position . y !== position . y ) {
0 commit comments