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.

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