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.

66 lines
2.2 KiB

  1. import NodeBase from '../util/NodeBase'
  2. class ShapeBase extends NodeBase {
  3. constructor(options, body, labelModule) {
  4. super(options, body, labelModule)
  5. }
  6. _resizeShape() {
  7. if (this.width === undefined) {
  8. var size = 2 * this.options.size;
  9. this.width = size;
  10. this.height = size;
  11. }
  12. }
  13. _drawShape(ctx, shape, sizeMultiplier, x, y, selected, hover) {
  14. this._resizeShape();
  15. this.left = x - this.width / 2;
  16. this.top = y - this.height / 2;
  17. var borderWidth = this.options.borderWidth;
  18. var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth;
  19. ctx.strokeStyle = selected ? this.options.color.highlight.border : hover ? this.options.color.hover.border : this.options.color.border;
  20. ctx.lineWidth = (selected ? selectionLineWidth : borderWidth);
  21. ctx.lineWidth /= this.body.view.scale;
  22. ctx.lineWidth = Math.min(this.width, ctx.lineWidth);
  23. ctx.fillStyle = selected ? this.options.color.highlight.background : hover ? this.options.color.hover.background : this.options.color.background;
  24. ctx[shape](x, y, this.options.size);
  25. // draw shadow if enabled
  26. this.enableShadow(ctx);
  27. ctx.fill();
  28. // disable shadows for other elements.
  29. this.disableShadow(ctx);
  30. ctx.stroke();
  31. if (this.options.label !== undefined) {
  32. let yLabel = y + 0.5 * this.height + 3; // the + 3 is to offset it a bit below the node.
  33. this.labelModule.draw(ctx, x, yLabel, selected, 'hanging');
  34. }
  35. this.updateBoundingBox(x,y);
  36. }
  37. updateBoundingBox(x,y) {
  38. this.boundingBox.top = y - this.options.size;
  39. this.boundingBox.left = x - this.options.size;
  40. this.boundingBox.right = x + this.options.size;
  41. this.boundingBox.bottom = y + this.options.size;
  42. if (this.options.label !== undefined) {
  43. this.boundingBox.left = Math.min(this.boundingBox.left, this.labelModule.size.left);
  44. this.boundingBox.right = Math.max(this.boundingBox.right, this.labelModule.size.left + this.labelModule.size.width);
  45. this.boundingBox.bottom = Math.max(this.boundingBox.bottom, this.boundingBox.bottom + this.labelModule.size.height + 3);
  46. }
  47. }
  48. }
  49. export default ShapeBase;