mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-28 05:59:42 -08:00
add label offset
This commit is contained in:
parent
bc647e0a5d
commit
785bb2651d
|
@ -36,7 +36,7 @@
|
|||
totalLength = 0,
|
||||
segmentProportions = [],
|
||||
segmentProportionalLengths = [],
|
||||
indexOffset = params.indexOffset,
|
||||
getEndpointOffset = params.getEndpointOffset,
|
||||
stub = params.stub || 0,
|
||||
sourceStub = _ju.isArray(stub) ? stub[0] : stub,
|
||||
targetStub = _ju.isArray(stub) ? stub[1] : stub,
|
||||
|
@ -235,12 +235,10 @@
|
|||
sy = swapY ? h + (sourceGap * so[1]) : sourceGap * so[1],
|
||||
tx = swapX ? targetGap * to[0] : w + (targetGap * to[0]),
|
||||
ty = swapY ? targetGap * to[1] : h + (targetGap * to[1]),
|
||||
oProduct = ((so[0] * to[0]) + (so[1] * to[1])),
|
||||
sourceIndex = params.sourceEndpoint && params.sourceEndpoint.__meta ? params.sourceEndpoint.__meta.index : 0,
|
||||
targetIndex = params.targetEndpoint && params.targetEndpoint.__meta ? params.targetEndpoint.__meta.index : 0;
|
||||
oProduct = ((so[0] * to[0]) + (so[1] * to[1]));
|
||||
|
||||
const sourceStubWithOffset = sourceStub + sourceIndex * indexOffset;
|
||||
const targetStubWithOffset = targetStub + targetIndex * indexOffset;
|
||||
const sourceStubWithOffset = sourceStub + (getEndpointOffset && params.sourceEndpoint ? getEndpointOffset(params.sourceEndpoint) : 0);
|
||||
const targetStubWithOffset = targetStub + (getEndpointOffset && params.targetEndpoint ? getEndpointOffset(params.targetEndpoint) : 0);
|
||||
|
||||
var result = {
|
||||
sx: sx, sy: sy, tx: tx, ty: ty, lw: lw,
|
||||
|
@ -337,7 +335,7 @@
|
|||
this.type = "N8nFlowchart";
|
||||
params = params || {};
|
||||
params.stub = params.stub == null ? 30 : params.stub;
|
||||
params.indexOffset = params.indexOffset == null ? 5 : params.indexOffset;
|
||||
params.getEndpointOffset = params.getEndpointOffset;
|
||||
var segments,
|
||||
_super = _jp.Connectors.N8nAbstractConnector.apply(this, arguments),
|
||||
midpoint = params.midpoint == null ? 0.5 : params.midpoint,
|
||||
|
|
|
@ -49,7 +49,15 @@ export const CONNECTOR_FLOWCHART_TYPE = ['N8nFlowchart', {
|
|||
alwaysRespectStubs: true,
|
||||
loopbackVerticalLength: NODE_SIZE, // length of vertical segment when looping
|
||||
loopbackMinimum: 140, // minimum length before flowchart loops around
|
||||
indexOffset: 10, // stub offset between different endpoints of same node
|
||||
getEndpointOffset(endpoint: Endpoint) {
|
||||
const indexOffset = 10; // stub offset between different endpoints of same node
|
||||
const index = endpoint && endpoint.__meta ? endpoint.__meta.index : 0;
|
||||
|
||||
const outputOverlay = endpoint.getOverlay(OVERLAY_OUTPUT_NAME_LABEL);
|
||||
const labelOffset = outputOverlay && outputOverlay.label && outputOverlay.label.length > 1 ? 10 : 0;
|
||||
|
||||
return index * indexOffset + labelOffset;
|
||||
},
|
||||
}];
|
||||
|
||||
export const CONNECTOR_PAINT_STYLE_DEFAULT: PaintStyle = {
|
||||
|
|
Loading…
Reference in a new issue