Skip to content

Commit df3881d

Browse files
author
Dmitry Marov
committed
bugfix(lib): fix #2171 ctxRenderer update for custom shapes
1 parent 8c7dd9f commit df3881d

File tree

2 files changed

+7
-33
lines changed

2 files changed

+7
-33
lines changed

lib/network/modules/components/Node.js

+4-27
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ class Node {
8989

9090
/**
9191
* Attach a edge to the node
92-
*
9392
* @param {Edge} edge
9493
*/
9594
attachEdge(edge) {
@@ -100,7 +99,6 @@ class Node {
10099

101100
/**
102101
* Detach a edge from the node
103-
*
104102
* @param {Edge} edge
105103
*/
106104
detachEdge(edge) {
@@ -112,7 +110,6 @@ class Node {
112110

113111
/**
114112
* Set or overwrite options for the node
115-
*
116113
* @param {object} options an object with options
117114
* @returns {null|boolean}
118115
*/
@@ -199,7 +196,6 @@ class Node {
199196
*
200197
* Images are always loaded, even if they are not used in the current shape.
201198
* The user may switch to an image shape later on.
202-
*
203199
* @private
204200
*/
205201
_load_images() {
@@ -255,7 +251,6 @@ class Node {
255251

256252
/**
257253
* Check that opacity is only between 0 and 1
258-
*
259254
* @param {number} opacity
260255
* @returns {boolean}
261256
*/
@@ -265,7 +260,6 @@ class Node {
265260

266261
/**
267262
* Check that origin is 'center' or 'top-left'
268-
*
269263
* @param {string} origin
270264
* @returns {boolean}
271265
*/
@@ -277,10 +271,9 @@ class Node {
277271
* Copy group option values into the node options.
278272
*
279273
* The group options override the global node options, so the copy of group options
280-
* must happen *after* the global node options have been set.
274+
* must happen *after* the global node options have been set.
281275
*
282276
* This method must also be called also if the global node options have changed and the group options did not.
283-
*
284277
* @param {object} parentOptions
285278
* @param {object} newOptions new values for the options, currently only passed in for check
286279
* @param {object} groupList
@@ -333,11 +326,10 @@ class Node {
333326
/**
334327
* This process all possible shorthands in the new options and makes sure that the parentOptions are fully defined.
335328
* Static so it can also be used by the handler.
336-
*
337329
* @param {object} parentOptions
338330
* @param {object} newOptions
339-
* @param {boolean} [allowDeletion=false]
340-
* @param {object} [globalOptions={}]
331+
* @param {boolean} [allowDeletion]
332+
* @param {object} [globalOptions]
341333
* @param {object} [groupList]
342334
* @static
343335
*/
@@ -564,8 +556,7 @@ class Node {
564556
this.shape = new CustomShape(
565557
this.options,
566558
this.body,
567-
this.labelModule,
568-
this.options.ctxRenderer
559+
this.labelModule
569560
);
570561
break;
571562
case "database":
@@ -647,7 +638,6 @@ class Node {
647638

648639
/**
649640
* get the title of this node.
650-
*
651641
* @returns {string} title The title of the node, or undefined when no title
652642
* has been set.
653643
*/
@@ -657,7 +647,6 @@ class Node {
657647

658648
/**
659649
* Calculate the distance to the border of the Node
660-
*
661650
* @param {CanvasRenderingContext2D} ctx
662651
* @param {number} angle Angle in radians
663652
* @returns {number} distance Distance to the border in pixels
@@ -668,7 +657,6 @@ class Node {
668657

669658
/**
670659
* Check if this node has a fixed x and y position
671-
*
672660
* @returns {boolean} true if fixed, false if not
673661
*/
674662
isFixed() {
@@ -677,7 +665,6 @@ class Node {
677665

678666
/**
679667
* check if this node is selecte
680-
*
681668
* @returns {boolean} selected True if node is selected, else false
682669
*/
683670
isSelected() {
@@ -686,7 +673,6 @@ class Node {
686673

687674
/**
688675
* Retrieve the value of the node. Can be undefined
689-
*
690676
* @returns {number} value
691677
*/
692678
getValue() {
@@ -695,7 +681,6 @@ class Node {
695681

696682
/**
697683
* Get the current dimensions of the label
698-
*
699684
* @returns {rect}
700685
*/
701686
getLabelSize() {
@@ -705,7 +690,6 @@ class Node {
705690
/**
706691
* Adjust the value range of the node. The node will adjust it's size
707692
* based on its value.
708-
*
709693
* @param {number} min
710694
* @param {number} max
711695
* @param {number} total
@@ -737,7 +721,6 @@ class Node {
737721
/**
738722
* Draw this node in the given canvas
739723
* The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d");
740-
*
741724
* @param {CanvasRenderingContext2D} ctx
742725
* @returns {object} Callbacks to draw later on higher layers.
743726
*/
@@ -751,7 +734,6 @@ class Node {
751734

752735
/**
753736
* Update the bounding box of the shape
754-
*
755737
* @param {CanvasRenderingContext2D} ctx
756738
*/
757739
updateBoundingBox(ctx) {
@@ -761,7 +743,6 @@ class Node {
761743
/**
762744
* Recalculate the size of this node in the given canvas
763745
* The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d");
764-
*
765746
* @param {CanvasRenderingContext2D} ctx
766747
*/
767748
resize(ctx) {
@@ -772,7 +753,6 @@ class Node {
772753
/**
773754
* Determine all visual elements of this node instance, in which the given
774755
* point falls within the bounding shape.
775-
*
776756
* @param {point} point
777757
* @returns {Array.<nodeClickItem|nodeLabelClickItem>} list with the items which are on the point
778758
*/
@@ -794,7 +774,6 @@ class Node {
794774

795775
/**
796776
* Check if this object is overlapping with the provided object
797-
*
798777
* @param {object} obj an object with parameters left, top, right, bottom
799778
* @returns {boolean} True if location is located on node
800779
*/
@@ -809,7 +788,6 @@ class Node {
809788

810789
/**
811790
* Check if this object is overlapping with the provided object
812-
*
813791
* @param {object} obj an object with parameters left, top, right, bottom
814792
* @returns {boolean} True if location is located on node
815793
*/
@@ -826,7 +804,6 @@ class Node {
826804
* Check valid values for mass
827805
*
828806
* The mass may not be negative or zero. If it is, reset to 1
829-
*
830807
* @param {object} options
831808
* @param {Node.id} id
832809
* @static

lib/network/modules/components/nodes/shapes/CustomShape.js

+3-6
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,16 @@ import ShapeBase from "../util/ShapeBase";
44

55
/**
66
* A CustomShape Node/Cluster shape.
7-
*
87
* @augments ShapeBase
98
*/
109
class CustomShape extends ShapeBase {
1110
/**
1211
* @param {object} options
1312
* @param {object} body
1413
* @param {Label} labelModule
15-
* @param {Function} ctxRenderer
1614
*/
17-
constructor(options, body, labelModule, ctxRenderer) {
18-
super(options, body, labelModule, ctxRenderer);
19-
this.ctxRenderer = ctxRenderer;
15+
constructor(options, body, labelModule) {
16+
super(options, body, labelModule);
2017
}
2118

2219
/**
@@ -36,7 +33,7 @@ class CustomShape extends ShapeBase {
3633

3734
// Guard right away because someone may just draw in the function itself.
3835
ctx.save();
39-
const drawLater = this.ctxRenderer({
36+
const drawLater = this.options.ctxRenderer({
4037
ctx,
4138
id: this.options.id,
4239
x,

0 commit comments

Comments
 (0)