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.

114 lines
3.1 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. }
  7. setOptions(options) {
  8. this.options = options;
  9. this.from = this.body.nodes[this.options.from];
  10. this.to = this.body.nodes[this.options.to];
  11. this.id = this.options.id;
  12. this.setupSupportNode();
  13. // fix weird behaviour
  14. if (this.from.id === this.to.id) {
  15. this.via.setOptions({physics:false})
  16. }
  17. else {
  18. this.via.setOptions({physics:true})
  19. }
  20. }
  21. cleanup() {
  22. if (this.via !== undefined) {
  23. delete this.body.nodes[this.via.id];
  24. this.via = undefined;
  25. return true;
  26. }
  27. return false;
  28. }
  29. /**
  30. * Bezier curves require an anchor point to calculate the smooth flow. These points are nodes. These nodes are invisible but
  31. * are used for the force calculation.
  32. *
  33. * The changed data is not called, if needed, it is returned by the main edge constructor.
  34. * @private
  35. */
  36. setupSupportNode() {
  37. if (this.via === undefined) {
  38. var nodeId = "edgeId:" + this.id;
  39. var node = this.body.functions.createNode({
  40. id: nodeId,
  41. mass: 1,
  42. shape: 'circle',
  43. image: "",
  44. physics:true,
  45. hidden:true
  46. });
  47. this.body.nodes[nodeId] = node;
  48. this.via = node;
  49. this.via.parentEdgeId = this.id;
  50. this.positionBezierNode();
  51. }
  52. }
  53. positionBezierNode() {
  54. if (this.via !== undefined && this.from !== undefined && this.to !== undefined) {
  55. this.via.x = 0.5 * (this.from.x + this.to.x);
  56. this.via.y = 0.5 * (this.from.y + this.to.y);
  57. }
  58. else if (this.via !== undefined) {
  59. this.via.x = 0;
  60. this.via.y = 0;
  61. }
  62. }
  63. /**
  64. * Draw a line between two nodes
  65. * @param {CanvasRenderingContext2D} ctx
  66. * @private
  67. */
  68. _line(ctx) {
  69. // draw a straight line
  70. ctx.beginPath();
  71. ctx.moveTo(this.from.x, this.from.y);
  72. ctx.quadraticCurveTo(this.via.x, this.via.y, this.to.x, this.to.y);
  73. // draw shadow if enabled
  74. this.enableShadow(ctx);
  75. ctx.stroke();
  76. this.disableShadow(ctx);
  77. return this.via;
  78. }
  79. /**
  80. * Combined function of pointOnLine and pointOnBezier. This gives the coordinates of a point on the line at a certain percentage of the way
  81. * @param percentage
  82. * @param via
  83. * @returns {{x: number, y: number}}
  84. * @private
  85. */
  86. getPoint(percentage) {
  87. let t = percentage;
  88. let x = Math.pow(1 - t, 2) * this.from.x + (2 * t * (1 - t)) * this.via.x + Math.pow(t, 2) * this.to.x;
  89. let y = Math.pow(1 - t, 2) * this.from.y + (2 * t * (1 - t)) * this.via.y + Math.pow(t, 2) * this.to.y;
  90. return {x: x, y: y};
  91. }
  92. _findBorderPosition(nearNode, ctx) {
  93. return this._findBorderPositionBezier(nearNode, ctx, this.via);
  94. }
  95. _getDistanceToEdge(x1, y1, x2, y2, x3, y3) { // x3,y3 is the point
  96. return this._getDistanceToBezierEdge(x1, y1, x2, y2, x3, y3, this.via);
  97. }
  98. }
  99. export default BezierEdgeDynamic;