PNet/js/graphics/SVGArrow.ts

48 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-06-22 17:47:04 +02:00
import { HTMLappendIt, Positionable, svgNamespace } from "../types";
export class SVGArrow implements HTMLappendIt {
2023-06-22 17:50:11 +02:00
group: SVGElement;
lineText: SVGElement;
line: SVGElement;
2023-06-22 17:47:04 +02:00
from: Positionable;
to: Positionable;
constructor(from: Positionable, to: Positionable) {
this.from = from;
this.to = to;
this.group = document.createElementNS(svgNamespace, 'g');
this.group.classList.add("PEdge");
this.line = document.createElementNS(svgNamespace, 'line');
this.line.setAttribute('marker-end', "url(#arrowhead)");
this.group.setAttribute('transform', `translate(0, 0)`);
this.lineText = document.createElementNS(svgNamespace, 'text');
this.lineText.classList.add("lineText");
this.lineText.setAttribute('x', '0');
this.lineText.setAttribute('y', '0');
2023-06-28 16:06:31 +02:00
this.lineText.textContent = "1";
2023-06-22 17:47:04 +02:00
this.group.appendChild(this.line);
this.group.appendChild(this.lineText);
this.updatePosition();
}
updatePosition() {
let dx = this.to.x - this.from.x;
let dy = this.to.y - this.from.y;
let l = Math.sqrt(dx * dx + dy * dy);
dx /= l;
dy /= l;
2023-06-22 17:50:11 +02:00
this.line.setAttribute('x1', (this.from.x + dx * 30) + "");
this.line.setAttribute('y1', (this.from.y + dy * 30) + "");
this.line.setAttribute('x2', (this.to.x - dx * 40) + "");
this.line.setAttribute('y2', (this.to.y - dy * 40) + "");
2023-06-28 16:06:31 +02:00
this.lineText.setAttribute('x', this.from.x + dx / 2 + "");
this.lineText.setAttribute('y', this.from.y + dy / 2 + "");
2023-06-22 17:47:04 +02:00
}
appendIt(svg) {
svg.appendChild(this.group);
}
}