diff --git a/src/app/cartography/shared/models/interface-label.ts b/src/app/cartography/shared/models/interface-label.ts index 6a222c8e..d7dc107f 100644 --- a/src/app/cartography/shared/models/interface-label.ts +++ b/src/app/cartography/shared/models/interface-label.ts @@ -5,5 +5,6 @@ export class InterfaceLabel { public text: string, public style: string, public rotation = 0, + public type: string ) {} } diff --git a/src/app/cartography/shared/widgets/interface-label.ts b/src/app/cartography/shared/widgets/interface-label.ts index 977b8202..eacecde7 100644 --- a/src/app/cartography/shared/widgets/interface-label.ts +++ b/src/app/cartography/shared/widgets/interface-label.ts @@ -2,6 +2,7 @@ import { SVGSelection } from "../models/types"; import { Link } from "../models/link"; import { InterfaceLabel } from "../models/interface-label"; import { CssFixer } from "../helpers/css-fixer"; +import { select } from "d3-selection"; export class InterfaceLabelWidget { @@ -17,19 +18,21 @@ export class InterfaceLabelWidget { .selectAll('text.interface_label') .data((l: Link) => { const sourceInterface = new InterfaceLabel( - Math.round(l.source.x + l.source.width + l.nodes[0].label.x), - Math.round(l.source.y + l.source.height + l.nodes[0].label.y), + Math.round( l.source.x + l.nodes[0].label.x), + Math.round(l.source.y + l.nodes[0].label.y), l.nodes[0].label.text, l.nodes[0].label.style, - l.nodes[0].label.rotation + l.nodes[0].label.rotation, + 'source' ); const targetInterface = new InterfaceLabel( - Math.round(l.target.x + l.target.width / 2. + l.nodes[1].label.x), - Math.round(l.target.y + l.target.height / 2. + l.nodes[1].label.y), + Math.round( l.target.x + l.nodes[1].label.x), + Math.round( l.target.y + l.nodes[1].label.y), l.nodes[1].label.text, l.nodes[1].label.style, - l.nodes[1].label.rotation + l.nodes[1].label.rotation, + 'target' ); return [sourceInterface, targetInterface]; @@ -46,12 +49,32 @@ export class InterfaceLabelWidget { merge .text((l: InterfaceLabel) => l.text) .attr('x', function(this: SVGTextElement, l: InterfaceLabel) { + /* @todo: in GUI probably it should be calculated based on the line; for now we keep it the same */ + // const link = select(this.parentElement); + // const path = link.select('path'); + // let point; + // if (l.type === 'source') { + // point = path.node().getPointAtLength(40); + // } else { + // point = path.node().getPointAtLength(path.node().getTotalLength() - 40); + // } + // return point.x + l.x; const bbox = this.getBBox(); return l.x; }) .attr('y', function(this: SVGTextElement, l: InterfaceLabel) { + /* @todo: in GUI probably it should be calculated based on the line; for now we keep it the same */ + // const link = select(this.parentElement); + // const path = link.select('path'); + // let point; + // if (l.type === 'source') { + // point = path.node().getPointAtLength(40); + // } else { + // point = path.node().getPointAtLength(path.node().getTotalLength() - 40); + // } + // return point.y + l.y; const bbox = this.getBBox(); - return l.y; + return l.y + bbox.height; }) .attr('style', (l: InterfaceLabel) => this.cssFixer.fix(l.style)) .attr('transform', (l: InterfaceLabel) => `rotate(${l.rotation}, ${l.x}, ${l.y})`); diff --git a/src/app/cartography/shared/widgets/links.ts b/src/app/cartography/shared/widgets/links.ts index 277df048..f8b50a56 100644 --- a/src/app/cartography/shared/widgets/links.ts +++ b/src/app/cartography/shared/widgets/links.ts @@ -51,12 +51,12 @@ export class LinksWidget implements Widget { const link_path = link_group.select('path'); - const start_point: SVGPoint = link_path.node().getPointAtLength(40); - const end_point: SVGPoint = link_path.node().getPointAtLength(link_path.node().getTotalLength() - 40); + const start_point: SVGPoint = link_path.node().getPointAtLength(45); + const end_point: SVGPoint = link_path.node().getPointAtLength(link_path.node().getTotalLength() - 45); let statuses = []; - if (link_path.node().getTotalLength() > 2 * 40 + 10) { + if (link_path.node().getTotalLength() > 2 * 45 + 10) { statuses = [ new LinkStatus(start_point.x, start_point.y, l.source.status), new LinkStatus(end_point.x, end_point.y, l.target.status)