vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

153 lines
4.4 KiB

  1. import BezierEdgeBase from './util/BezierEdgeBase'
  2. class BezierEdgeDynamic extends BezierEdgeBase {
  3. constructor(options, body, labelModule) {
  4. //this.via = undefined; // Here for completeness but not allowed to defined before super() is invoked.
  5. super(options, body, labelModule); // --> this calls the setOptions below
  6. this._boundFunction = () => {this.positionBezierNode();};
  7. this.body.emitter.on("_repositionBezierNodes", this._boundFunction);
  8. }
  9. setOptions(options) {
  10. // check if the physics has changed.
  11. let physicsChange = false;
  12. if (this.options.physics !== options.physics) {
  13. physicsChange = true;
  14. }
  15. // set the options and the to and from nodes
  16. this.options = options;
  17. this.id = this.options.id;
  18. this.from = this.body.nodes[this.options.from];
  19. this.to = this.body.nodes[this.options.to];
  20. // setup the support node and connect
  21. this.setupSupportNode();
  22. this.connect();
  23. // when we change the physics state of the edge, we reposition the support node.
  24. if (physicsChange === true) {
  25. this.via.setOptions({physics: this.options.physics})
  26. this.positionBezierNode();
  27. }
  28. }
  29. connect() {
  30. this.from = this.body.nodes[this.options.from];
  31. this.to = this.body.nodes[this.options.to];
  32. if (this.from === undefined || this.to === undefined || this.options.physics === false) {
  33. this.via.setOptions({physics:false})
  34. }
  35. else {
  36. // fix weird behaviour where a self referencing node has physics enabled
  37. if (this.from.id === this.to.id) {
  38. this.via.setOptions({physics: false})
  39. }
  40. else {
  41. this.via.setOptions({physics: true})
  42. }
  43. }
  44. }
  45. /**
  46. * remove the support nodes
  47. * @returns {boolean}
  48. */
  49. cleanup() {
  50. this.body.emitter.off("_repositionBezierNodes", this._boundFunction);
  51. if (this.via !== undefined) {
  52. delete this.body.nodes[this.via.id];
  53. this.via = undefined;
  54. return true;
  55. }
  56. return false;
  57. }
  58. /**
  59. * Bezier curves require an anchor point to calculate the smooth flow. These points are nodes. These nodes are invisible but
  60. * are used for the force calculation.
  61. *
  62. * The changed data is not called, if needed, it is returned by the main edge constructor.
  63. * @private
  64. */
  65. setupSupportNode() {
  66. if (this.via === undefined) {
  67. var nodeId = "edgeId:" + this.id;
  68. var node = this.body.functions.createNode({
  69. id: nodeId,
  70. shape: 'circle',
  71. physics:true,
  72. hidden:true
  73. });
  74. this.body.nodes[nodeId] = node;
  75. this.via = node;
  76. this.via.parentEdgeId = this.id;
  77. this.positionBezierNode();
  78. }
  79. }
  80. positionBezierNode() {
  81. if (this.via !== undefined && this.from !== undefined && this.to !== undefined) {
  82. this.via.x = 0.5 * (this.from.x + this.to.x);
  83. this.via.y = 0.5 * (this.from.y + this.to.y);
  84. }
  85. else if (this.via !== undefined) {
  86. this.via.x = 0;
  87. this.via.y = 0;
  88. }
  89. }
  90. /**
  91. * Draw a line between two nodes
  92. * @param {CanvasRenderingContext2D} ctx
  93. * @private
  94. */
  95. _line(ctx, viaNode) {
  96. // draw a straight line
  97. ctx.beginPath();
  98. ctx.moveTo(this.fromPoint.x, this.fromPoint.y);
  99. // fallback to normal straight edges
  100. if (viaNode.x === undefined) {
  101. ctx.lineTo(this.toPoint.x, this.toPoint.y);
  102. }
  103. else {
  104. ctx.quadraticCurveTo(viaNode.x, viaNode.y, this.toPoint.x, this.toPoint.y);
  105. }
  106. // draw shadow if enabled
  107. this.enableShadow(ctx);
  108. ctx.stroke();
  109. this.disableShadow(ctx);
  110. }
  111. getViaNode() {
  112. return this.via;
  113. }
  114. /**
  115. * Combined function of pointOnLine and pointOnBezier. This gives the coordinates of a point on the line at a certain percentage of the way
  116. * @param percentage
  117. * @param viaNode
  118. * @returns {{x: number, y: number}}
  119. * @private
  120. */
  121. getPoint(percentage, viaNode = this.via) {
  122. let t = percentage;
  123. let x = Math.pow(1 - t, 2) * this.fromPoint.x + (2 * t * (1 - t)) * viaNode.x + Math.pow(t, 2) * this.toPoint.x;
  124. let y = Math.pow(1 - t, 2) * this.fromPoint.y + (2 * t * (1 - t)) * viaNode.y + Math.pow(t, 2) * this.toPoint.y;
  125. return {x: x, y: y};
  126. }
  127. _findBorderPosition(nearNode, ctx) {
  128. return this._findBorderPositionBezier(nearNode, ctx, this.via);
  129. }
  130. _getDistanceToEdge(x1, y1, x2, y2, x3, y3) { // x3,y3 is the point
  131. return this._getDistanceToBezierEdge(x1, y1, x2, y2, x3, y3, this.via);
  132. }
  133. }
  134. export default BezierEdgeDynamic;