fix(editor): Fix position of connector buttons when the line is straight (#13034)

This commit is contained in:
autologie 2025-02-04 12:18:07 +01:00 committed by GitHub
parent 884a7e23f8
commit 3a908aca17
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 18 deletions

View file

@ -185,12 +185,9 @@ describe('CanvasEdge', () => {
},
});
const label = container.querySelector('.vue-flow__edge-label');
const label = container.querySelector('.vue-flow__edge-label')?.childNodes[0];
expect(label).toHaveAttribute(
'style',
'transform: translate(-50%, -150%) translate(50px, 50px);',
);
expect(label).toHaveAttribute('style', 'transform: translate(0, -100%);');
});
it("should render a label in the middle of the connector when it isn't straight", () => {
@ -202,11 +199,8 @@ describe('CanvasEdge', () => {
},
});
const label = container.querySelector('.vue-flow__edge-label');
const label = container.querySelector('.vue-flow__edge-label')?.childNodes[0];
expect(label).toHaveAttribute(
'style',
'transform: translate(-50%, -50%) translate(50px, 50px);',
);
expect(label).toHaveAttribute('style', 'transform: translate(0, 0%);');
});
});

View file

@ -86,19 +86,16 @@ const edgeClasses = computed(() => ({
}));
const edgeLabelStyle = computed(() => ({
transform: `translate(0, ${isConnectorStraight.value ? '-100%' : '0%'})`,
color: edgeColor.value,
}));
const isConnectorStraight = computed(() => renderData.value.isConnectorStraight);
const edgeToolbarStyle = computed(() => {
const translateY = isConnectorStraight.value ? '-150%' : '-50%';
return {
transform: `translate(-50%, ${translateY}) translate(${labelPosition.value[0]}px, ${labelPosition.value[1]}px)`,
...(props.hovered ? { zIndex: 1 } : {}),
};
});
const edgeToolbarStyle = computed(() => ({
transform: `translate(-50%, -50%) translate(${labelPosition.value[0]}px, ${labelPosition.value[1]}px)`,
...(props.hovered ? { zIndex: 1 } : {}),
}));
const edgeToolbarClasses = computed(() => ({
[$style.edgeLabelWrapper]: true,