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
1.8 KiB

  1. class NodeBase {
  2. constructor(options, body, labelModule) {
  3. this.body = body;
  4. this.labelModule = labelModule;
  5. this.setOptions(options);
  6. this.top = undefined;
  7. this.left = undefined;
  8. this.height = undefined;
  9. this.width = undefined;
  10. this.radius = undefined;
  11. this.boundingBox = {top: 0, left: 0, right: 0, bottom: 0};
  12. }
  13. setOptions(options) {
  14. this.options = options;
  15. }
  16. _distanceToBorder(angle) {
  17. var borderWidth = 1;
  18. return Math.min(
  19. Math.abs(this.width / 2 / Math.cos(angle)),
  20. Math.abs(this.height / 2 / Math.sin(angle))) + borderWidth;
  21. }
  22. enableShadow(ctx) {
  23. if (this.options.shadow.enabled === true) {
  24. ctx.shadowColor = 'rgba(0,0,0,0.5)';
  25. ctx.shadowBlur = this.options.shadow.size;
  26. ctx.shadowOffsetX = this.options.shadow.x;
  27. ctx.shadowOffsetY = this.options.shadow.y;
  28. }
  29. }
  30. disableShadow(ctx) {
  31. if (this.options.shadow.enabled === true) {
  32. ctx.shadowColor = 'rgba(0,0,0,0)';
  33. ctx.shadowBlur = 0;
  34. ctx.shadowOffsetX = 0;
  35. ctx.shadowOffsetY = 0;
  36. }
  37. }
  38. enableBorderDashes(ctx) {
  39. if (this.options.shapeProperties.borderDashes !== false) {
  40. if (ctx.setLineDash !== undefined) {
  41. ctx.setLineDash(this.options.shapeProperties.borderDashes);
  42. }
  43. else {
  44. console.warn("setLineDash is not supported in this browser. The dashed borders cannot be used.");
  45. this.options.shapeProperties.borderDashes = false;
  46. }
  47. }
  48. }
  49. disableBorderDashes(ctx) {
  50. if (this.options.shapeProperties.borderDashes !== false) {
  51. if (ctx.setLineDash !== undefined) {
  52. ctx.setLineDash([0]);
  53. }
  54. else {
  55. console.warn("setLineDash is not supported in this browser. The dashed borders cannot be used.");
  56. this.options.shapeProperties.borderDashes = false;
  57. }
  58. }
  59. }
  60. }
  61. export default NodeBase;