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.

55 lines
1.7 KiB

  1. 'use strict';
  2. import NodeBase from '../util/NodeBase'
  3. class Box extends NodeBase {
  4. constructor (options, body, labelModule) {
  5. super(options,body,labelModule);
  6. }
  7. resize(ctx) {
  8. if (this.width === undefined) {
  9. var margin = 5;
  10. var textSize = this.labelModule.getTextSize(ctx,this.selected);
  11. this.width = textSize.width + 2 * margin;
  12. this.height = textSize.height + 2 * margin;
  13. }
  14. }
  15. draw(ctx, x, y, selected, hover) {
  16. this.resize(ctx);
  17. this.left = x - this.width / 2;
  18. this.top = y - this.height / 2;
  19. var borderWidth = this.options.borderWidth;
  20. var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth;
  21. ctx.strokeStyle = selected ? this.options.color.highlight.border : hover ? this.options.color.hover.border : this.options.color.border;
  22. ctx.lineWidth = (selected ? selectionLineWidth : borderWidth);
  23. ctx.lineWidth /= this.body.view.scale;
  24. ctx.lineWidth = Math.min(this.width, ctx.lineWidth);
  25. ctx.fillStyle = selected ? this.options.color.highlight.background : hover ? this.options.color.hover.background : this.options.color.background;
  26. ctx.roundRect(this.left, this.top, this.width, this.height, this.options.size);
  27. ctx.fill();
  28. ctx.stroke();
  29. this.boundingBox.top = this.top;
  30. this.boundingBox.left = this.left;
  31. this.boundingBox.right = this.left + this.width;
  32. this.boundingBox.bottom = this.top + this.height;
  33. this.labelModule.draw(ctx, x, y, selected);
  34. }
  35. distanceToBorder(ctx, angle) {
  36. this.resize(ctx);
  37. var a = this.width / 2;
  38. var b = this.height / 2;
  39. var w = (Math.sin(angle) * a);
  40. var h = (Math.cos(angle) * b);
  41. return a * b / Math.sqrt(w * w + h * h);
  42. }
  43. }
  44. export default Box;