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.

63 lines
1.9 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, selected) {
  8. if (this.width === undefined) {
  9. let margin = 5;
  10. let textSize = this.labelModule.getTextSize(ctx,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, selected);
  17. this.left = x - this.width / 2;
  18. this.top = y - this.height / 2;
  19. let borderWidth = this.options.borderWidth;
  20. let 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. let borderRadius = 6;
  27. ctx.roundRect(this.left, this.top, this.width, this.height, borderRadius);
  28. // draw shadow if enabled
  29. this.enableShadow(ctx);
  30. ctx.fill();
  31. // disable shadows for other elements.
  32. this.disableShadow(ctx);
  33. ctx.stroke();
  34. this.boundingBox.top = this.top;
  35. this.boundingBox.left = this.left;
  36. this.boundingBox.right = this.left + this.width;
  37. this.boundingBox.bottom = this.top + this.height;
  38. this.labelModule.draw(ctx, x, y, selected);
  39. }
  40. distanceToBorder(ctx, angle) {
  41. this.resize(ctx);
  42. let a = this.width / 2;
  43. let b = this.height / 2;
  44. let w = (Math.sin(angle) * a);
  45. let h = (Math.cos(angle) * b);
  46. return a * b / Math.sqrt(w * w + h * h);
  47. }
  48. }
  49. export default Box;