-
-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathCytoscape.react.js
1073 lines (968 loc) · 36.4 KB
/
Cytoscape.react.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* JavaScript Requirements: cytoscape, cytoscape-svg
* React.js requirements: react-cytoscapejs
*/
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import CytoscapeComponent from 'react-cytoscapejs';
import _ from 'lodash';
import CyResponsive from '../cyResponsive.js';
/**
A Component Library for Dash aimed at facilitating network visualization in
Python, wrapped around [Cytoscape.js](http://js.cytoscape.org/).
*/
class Cytoscape extends Component {
constructor(props) {
super(props);
this.handleCy = this.handleCy.bind(this);
this._handleCyCalled = false;
this.handleImageGeneration = this.handleImageGeneration.bind(this);
this.cyResponsiveClass = false;
}
generateNode(event) {
const ele = event.target;
const isParent = ele.isParent(),
isChildless = ele.isChildless(),
isChild = ele.isChild(),
isOrphan = ele.isOrphan(),
renderedPosition = ele.renderedPosition(),
relativePosition = ele.relativePosition(),
parent = ele.parent(),
style = ele.style();
// Trim down the element objects to only the data contained
const edgesData = ele.connectedEdges().map(ele => {
return ele.data();
}),
childrenData = ele.children().map(ele => {
return ele.data();
}),
ancestorsData = ele.ancestors().map(ele => {
return ele.data();
}),
descendantsData = ele.descendants().map(ele => {
return ele.data();
}),
siblingsData = ele.siblings().map(ele => {
return ele.data();
});
const {timeStamp} = event;
const {
classes,
data,
grabbable,
group,
locked,
position,
selected,
selectable
} = ele.json();
let parentData;
if (parent) {
parentData = parent.data();
} else {
parentData = null;
}
const nodeObject = {
// Nodes attributes
edgesData,
renderedPosition,
timeStamp,
// From ele.json()
classes,
data,
grabbable,
group,
locked,
position,
selectable,
selected,
// Compound Nodes additional attributes
ancestorsData,
childrenData,
descendantsData,
parentData,
siblingsData,
isParent,
isChildless,
isChild,
isOrphan,
relativePosition,
// Styling
style
};
return nodeObject;
}
generateEdge(event) {
const ele = event.target;
const midpoint = ele.midpoint(),
isLoop = ele.isLoop(),
isSimple = ele.isSimple(),
sourceData = ele.source().data(),
sourceEndpoint = ele.sourceEndpoint(),
style = ele.style(),
targetData = ele.target().data(),
targetEndpoint = ele.targetEndpoint();
const {timeStamp} = event;
const {
classes,
data,
grabbable,
group,
locked,
selectable,
selected
} = ele.json();
const edgeObject = {
// Edges attributes
isLoop,
isSimple,
midpoint,
sourceData,
sourceEndpoint,
targetData,
targetEndpoint,
timeStamp,
// From ele.json()
classes,
data,
grabbable,
group,
locked,
selectable,
selected,
// Styling
style
};
return edgeObject;
}
handleCy(cy) {
// If the cy pointer has not been modified, and handleCy has already
// been called before, than we don't run this function.
if (cy === this._cy && this._handleCyCalled) {
return;
}
this._cy = cy;
window.cy = cy;
this._handleCyCalled = true;
// ///////////////////////////////////// CONSTANTS /////////////////////////////////////////
const SELECT_THRESHOLD = 100;
const selectedNodes = cy.collection();
const selectedEdges = cy.collection();
// ///////////////////////////////////// FUNCTIONS /////////////////////////////////////////
const refreshLayout = _.debounce(() => {
/**
* Refresh Layout if needed
*/
const {autoRefreshLayout, layout} = this.props;
if (autoRefreshLayout) {
cy.layout(layout).run();
}
}, SELECT_THRESHOLD);
const sendSelectedNodesData = _.debounce(() => {
/**
This function is repetitively called every time a node is selected
or unselected, but keeps being debounced if it is called again
within 100 ms (given by SELECT_THRESHOLD). Effectively, it only
runs when all the nodes have been correctly selected/unselected and
added/removed from the selectedNodes collection, and then updates
the selectedNodeData prop.
*/
const nodeData = selectedNodes.map(el => el.data());
if (typeof this.props.setProps === 'function') {
this.props.setProps({
selectedNodeData: nodeData
});
}
}, SELECT_THRESHOLD);
const sendSelectedEdgesData = _.debounce(() => {
const edgeData = selectedEdges.map(el => el.data());
if (typeof this.props.setProps === 'function') {
this.props.setProps({
selectedEdgeData: edgeData
});
}
}, SELECT_THRESHOLD);
// /////////////////////////////////////// EVENTS //////////////////////////////////////////
cy.on('tap', 'node', event => {
const nodeObject = this.generateNode(event);
if (typeof this.props.setProps === 'function') {
this.props.setProps({
tapNode: nodeObject,
tapNodeData: nodeObject.data
});
}
});
cy.on('tap', 'edge', event => {
const edgeObject = this.generateEdge(event);
if (typeof this.props.setProps === 'function') {
this.props.setProps({
tapEdge: edgeObject,
tapEdgeData: edgeObject.data
});
}
});
cy.on('cxttap', 'node', event => {
const nodeObject = this.generateNode(event);
if (typeof this.props.setProps === 'function') {
this.props.setProps({
cxtTapNode: nodeObject,
cxtTapNodeData: nodeObject.data
});
}
});
cy.on('cxttap', 'edge', event => {
const edgeObject = this.generateEdge(event);
if (typeof this.props.setProps === 'function') {
this.props.setProps({
cxtTapEdge: edgeObject,
cxtTapEdgeData: edgeObject.data
});
}
});
cy.on('mouseover', 'node', event => {
if (typeof this.props.setProps === 'function') {
this.props.setProps({
mouseoverNodeData: event.target.data()
});
}
});
cy.on('mouseover', 'edge', event => {
if (typeof this.props.setProps === 'function') {
this.props.setProps({
mouseoverEdgeData: event.target.data()
});
}
});
cy.on('mouseout', 'node', event => {
if (typeof this.props.setProps === 'function') {
this.props.setProps({
mouseoutNodeData: event.target.data()
});
}
});
cy.on('mouseout', 'edge', event => {
if (typeof this.props.setProps === 'function') {
this.props.setProps({
mouseoutEdgeData: event.target.data()
});
}
});
cy.on('select', 'node', event => {
const ele = event.target;
selectedNodes.merge(ele);
sendSelectedNodesData();
});
cy.on('unselect remove', 'node', event => {
const ele = event.target;
selectedNodes.unmerge(ele);
sendSelectedNodesData();
});
cy.on('select', 'edge', event => {
const ele = event.target;
selectedEdges.merge(ele);
sendSelectedEdgesData();
});
cy.on('unselect remove', 'edge', event => {
const ele = event.target;
selectedEdges.unmerge(ele);
sendSelectedEdgesData();
});
cy.on('add remove', () => {
refreshLayout();
});
this.cyResponsiveClass = new CyResponsive(cy);
this.cyResponsiveClass.toggle(this.props.responsive);
}
handleImageGeneration(imageType, imageOptions, actionsToPerform, fileName) {
let options = {};
if (imageOptions) {
options = imageOptions;
}
let desiredOutput = options.output;
options.output = 'blob';
let downloadImage;
let storeImage;
switch (actionsToPerform) {
case 'store':
downloadImage = false;
storeImage = true;
break;
case 'download':
downloadImage = true;
storeImage = false;
break;
case 'both':
downloadImage = true;
storeImage = true;
break;
default:
downloadImage = false;
storeImage = true;
break;
}
let output;
if (imageType === 'png') {
output = this._cy.png(options);
}
if (imageType === 'jpg' || imageType === 'jpeg') {
output = this._cy.jpg(options);
}
// only works when svg is imported (see lib/extra_index.js)
if (imageType === 'svg') {
output = this._cy.svg(options);
}
/*
* If output is empty because of bad options or a cytoscape error,
* skip any download or storage steps.
*/
if (output && downloadImage) {
/*
* Downloading is initiated client-side because the image is generated at
* the client. This avoids transferring a potentially large image
* to the server and back again through a callback.
*/
let fName = fileName;
if (!fileName) {
fName = 'cyto';
}
if (imageType !== 'svg') {
this.downloadBlob(output, fName + '.' + imageType);
} else {
const blob = new Blob([output], {
type: 'image/svg+xml;charset=utf-8'
});
this.downloadBlob(blob, fName + '.' + imageType);
}
}
if (output && storeImage) {
// Default output type if unspecified
if (!desiredOutput) {
desiredOutput = 'base64uri';
}
if (
!(desiredOutput === 'base64uri' || desiredOutput === 'base64')
) {
return;
}
/*
* Convert blob to base64uri or base64 string to store the image data.
* Thank you, base64guru https://base64.guru/developers/javascript/examples/encode-blob
*/
const reader = new FileReader();
reader.onload = () => {
/* FileReader is asynchronous, so the read function is non-blocking.
* If this code block is placed after the read command, it
* may result in empty output because the blob has not been loaded yet.
*/
let callbackData = reader.result;
if (desiredOutput === 'base64') {
callbackData = callbackData.replace(/^data:.+;base64,/, '');
}
this.props.setProps({imageData: callbackData});
};
reader.readAsDataURL(output);
}
}
downloadBlob(blob, fileName) {
/*
* Download blob as file by dynamically creating link.
* Chrome does not open data URLs when JS opens a new tab directed
* at the data URL, so this is an alternate implementation
* that doesn't require extra packages. It may not behave in
* exactly the same way across browsers (might display image in new tab
* intead of downloading as a file).
* Thank you, koldev https://jsfiddle.net/koldev/cW7W5/
*/
const downloadLink = document.createElement('a');
downloadLink.style = 'display: none';
document.body.appendChild(downloadLink);
const url = window.URL.createObjectURL(blob);
downloadLink.href = url;
downloadLink.download = fileName;
downloadLink.click();
window.URL.revokeObjectURL(url);
document.body.removeChild(downloadLink);
}
render() {
const {
// HTML attribute props
id,
style,
className,
// Common props
elements,
stylesheet,
layout,
// Viewport Manipulation
pan,
zoom,
// Viewport Mutability and gesture Toggling
panningEnabled,
userPanningEnabled,
minZoom,
maxZoom,
zoomingEnabled,
userZoomingEnabled,
boxSelectionEnabled,
autoungrabify,
autolock,
autounselectify,
// Image handling
generateImage,
// Responsive graphs
responsive
} = this.props;
if (Object.keys(generateImage).length > 0) {
// If no cytoscape object has been created yet, an image cannot be generated,
// so generateImage will be ignored and cleared.
this.props.setProps({generateImage: {}});
if (this._cy) {
this.handleImageGeneration(
generateImage.type,
generateImage.options,
generateImage.action,
generateImage.filename
);
}
}
if (this.cyResponsiveClass) {
this.cyResponsiveClass.toggle(responsive);
}
return (
<CytoscapeComponent
id={id}
cy={this.handleCy}
className={className}
style={style}
elements={CytoscapeComponent.normalizeElements(elements)}
stylesheet={stylesheet}
layout={layout}
pan={pan}
zoom={zoom}
panningEnabled={panningEnabled}
userPanningEnabled={userPanningEnabled}
minZoom={minZoom}
maxZoom={maxZoom}
zoomingEnabled={zoomingEnabled}
userZoomingEnabled={userZoomingEnabled}
boxSelectionEnabled={boxSelectionEnabled}
autoungrabify={autoungrabify}
autolock={autolock}
autounselectify={autounselectify}
/>
);
}
}
Cytoscape.propTypes = {
// HTML attribute props
/**
* The ID used to identify this component in Dash callbacks.
*/
id: PropTypes.string,
/**
* Sets the class name of the element (the value of an element's html
* class attribute).
*/
className: PropTypes.string,
/**
* Add inline styles to the root element.
*/
style: PropTypes.object,
// Dash specific props
/**
* Dash-assigned callback that should be called whenever any of the
* properties change.
*/
setProps: PropTypes.func,
// Common props
/**
* A list of dictionaries representing the elements of the networks. Each dictionary describes an element, and
* specifies its purpose. The [official Cytoscape.js documentation](https://js.cytoscape.org/#notation/elements-json)
* offers an extensive overview and examples of element declaration.
* Alternatively, a dictionary with the format { 'nodes': [], 'edges': [] } is allowed at initialization,
* but arrays remain the recommended format.
*/
elements: PropTypes.oneOfType([
PropTypes.arrayOf(
PropTypes.shape({
/**
* Either 'nodes' or 'edges'. If not given, it's automatically inferred.
*/
group: PropTypes.string,
/** Element specific data.*/
data: PropTypes.shape({
/** Reference to the element, useful for selectors and edges. Randomly assigned if not given.*/
id: PropTypes.string,
/**
* Optional name for the element, useful when `data(label)` is given to a style's `content`
* or `label`. It is only a convention. */
label: PropTypes.string,
/** Only for nodes. Optional reference to another node. Needed to create compound nodes. */
parent: PropTypes.string,
/** Only for edges. The id of the source node, which is where the edge starts. */
source: PropTypes.string,
/** Only for edges. The id of the target node, where the edge ends. */
target: PropTypes.string
}),
/** Only for nodes. The position of the node. */
position: PropTypes.shape({
/** The x-coordinate of the node. */
x: PropTypes.number,
/** The y-coordinate of the node. */
y: PropTypes.number
}),
/** If the element is selected upon initialisation. */
selected: PropTypes.bool,
/** If the element can be selected. */
selectable: PropTypes.bool,
/** Only for nodes. If the position is immutable. */
locked: PropTypes.bool,
/** Only for nodes. If the node can be grabbed and moved by the user. */
grabbable: PropTypes.bool,
/**
* Space separated string of class names of the element. Those classes can be selected
* by a style selector.
*/
classes: PropTypes.string
})
),
PropTypes.exact({
nodes: PropTypes.array,
edges: PropTypes.array
})
]),
/**
* A list of dictionaries representing the styles of the elements.
* Each dictionary requires the following keys: `selector` and `style`.
*
* Both the [selector](https://js.cytoscape.org/#selectors) and
* the [style](https://js.cytoscape.org/#style/node-body) are
* exhaustively documented in the Cytoscape.js docs. Although methods such
* as `cy.elements(...)` and `cy.filter(...)` are not available, the selector
* string syntax stays the same.
*/
stylesheet: PropTypes.arrayOf(
PropTypes.exact({
/**
* Which elements you are styling. Generally, you select a group of elements (node, edges, both),
* a class (that you declare in the element dictionary), or an element by ID.
*/
selector: PropTypes.string.isRequired,
/**
* What aspects of the elements you want to modify. This could be the size or
* color of a node, the shape of an edge arrow, or many more.
*/
style: PropTypes.object.isRequired
})
),
/**
* A dictionary specifying how to set the position of the elements in your
* graph. The `'name'` key is required, and indicates which layout (algorithm) to
* use. The keys accepted by `layout` vary depending on the algorithm, but these
* keys are accepted by all layouts: `fit`, `padding`, `animate`, `animationDuration`,
* `boundingBox`.
*
* The complete list of layouts and their accepted options are available on the
* [Cytoscape.js docs](https://js.cytoscape.org/#layouts) . For the external layouts,
* the options are listed in the "API" section of the README.
* Note that certain keys are not supported in Dash since the value is a JavaScript
* function or a callback. Please visit this
* [issue](https://github.com/plotly/dash-cytoscape/issues/25) for more information.
*/
layout: PropTypes.shape({
/**
* The layouts available by default are:
* `random`: Randomly assigns positions.
* `preset`: Assigns position based on the `position` key in element dictionaries.
* `circle`: Single-level circle, with optional radius.
* `concentric`: Multi-level circle, with optional radius.
* `grid`: Square grid, optionally with numbers of `rows` and `cols`.
* `breadthfirst`: Tree structure built using BFS, with optional `roots`.
* `cose`: Force-directed physics simulation.
*
* Some external layouts are also included. To use them, run
* `dash_cytoscape.load_extra_layouts()` before creating your Dash app. Be careful about
* using the extra layouts when not necessary, since they require supplementary bandwidth
* for loading, which impacts the startup time of the app.
* The external layouts are:
* [cose-bilkent](https://github.com/cytoscape/cytoscape.js-cose-bilkent),
* [cola](https://github.com/cytoscape/cytoscape.js-cola),
* [euler](https://github.com/cytoscape/cytoscape.js-dagre),
* [spread](https://github.com/cytoscape/cytoscape.js-spread),
* [dagre](https://github.com/cytoscape/cytoscape.js-dagre),
* [klay](https://github.com/cytoscape/cytoscape.js-klay),
*/
name: PropTypes.oneOf([
'random',
'preset',
'circle',
'concentric',
'grid',
'breadthfirst',
'cose',
'close-bilkent',
'cola',
'euler',
'spread',
'dagre',
'klay'
]).isRequired,
/** Whether to render the nodes in order to fit the canvas. */
fit: PropTypes.bool,
/** Padding around the sides of the canvas, if fit is enabled. */
padding: PropTypes.number,
/** Whether to animate change in position when the layout changes. */
animate: PropTypes.bool,
/** Duration of animation in milliseconds, if enabled. */
animationDuration: PropTypes.number,
/**
* How to constrain the layout in a specific area. Keys accepted are either
* `x1, y1, x2, y2` or `x1, y1, w, h`, all of which receive a pixel value.
*/
boundingBox: PropTypes.object
}),
// Viewport Manipulation
/**
* Dictionary indicating the initial panning position of the graph. The
* following keys are accepted:
*/
pan: PropTypes.exact({
/** The x-coordinate of the node */
x: PropTypes.number,
/** The y-coordinate of the node */
y: PropTypes.number
}),
/**
* The initial zoom level of the graph. You can set `minZoom` and
* `maxZoom` to set restrictions on the zoom level.
*/
zoom: PropTypes.number,
// Viewport Mutability and gesture Toggling
/**
* Whether panning the graph is enabled (i.e., the position of the graph is
* mutable overall).
*/
panningEnabled: PropTypes.bool,
/**
* Whether user events (e.g. dragging the graph background) are allowed to
* pan the graph.
*/
userPanningEnabled: PropTypes.bool,
/**
* A minimum bound on the zoom level of the graph. The viewport can not be
* scaled smaller than this zoom level.
*/
minZoom: PropTypes.number,
/**
* A maximum bound on the zoom level of the graph. The viewport can not be
* scaled larger than this zoom level.
*/
maxZoom: PropTypes.number,
/**
* Whether zooming the graph is enabled (i.e., the zoom level of the graph
* is mutable overall).
*/
zoomingEnabled: PropTypes.bool,
/**
* Whether user events (e.g. dragging the graph background) are allowed
* to pan the graph.
*/
userZoomingEnabled: PropTypes.bool,
/**
* Whether box selection (i.e. drag a box overlay around, and release it
* to select) is enabled. If enabled, the user must taphold to pan the graph.
*/
boxSelectionEnabled: PropTypes.bool,
/**
* Whether nodes should be ungrabified (not grabbable by user) by
* default (if true, overrides individual node state).
*/
autoungrabify: PropTypes.bool,
/**
* Whether nodes should be locked (not draggable at all) by default
* (if true, overrides individual node state).
*/
autolock: PropTypes.bool,
/**
* Whether nodes should be unselectified (immutable selection state) by
* default (if true, overrides individual element state).
*/
autounselectify: PropTypes.bool,
/**
* Whether the layout should be refreshed when elements are added or removed.
*/
autoRefreshLayout: PropTypes.bool,
// User Events Props
/**
* The complete node dictionary returned when you tap or click it. Read-only.
*/
tapNode: PropTypes.exact({
/** node specific item */
edgesData: PropTypes.array,
/** node specific item */
renderedPosition: PropTypes.object,
/** node specific item */
timeStamp: PropTypes.number,
/** General item (for all elements) */
classes: PropTypes.string,
/** General item (for all elements) */
data: PropTypes.object,
/** General item (for all elements) */
grabbable: PropTypes.bool,
/** General item (for all elements) */
group: PropTypes.string,
/** General item (for all elements) */
locked: PropTypes.bool,
/** General item (for all elements) */
position: PropTypes.object,
/** General item (for all elements) */
selectable: PropTypes.bool,
/** General item (for all elements) */
selected: PropTypes.bool,
/** General item (for all elements) */
style: PropTypes.object,
/** Item for compound nodes */
ancestorsData: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
/** Item for compound nodes */
childrenData: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
/** Item for compound nodes */
descendantsData: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
/** Item for compound nodes */
parentData: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
/** Item for compound nodes */
siblingsData: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
/** Item for compound nodes */
isParent: PropTypes.bool,
/** Item for compound nodes */
isChildless: PropTypes.bool,
/** Item for compound nodes */
isChild: PropTypes.bool,
/** Item for compound nodes */
isOrphan: PropTypes.bool,
/** Item for compound nodes */
relativePosition: PropTypes.object
}),
/**
* The data dictionary of a node returned when you tap or click it. Read-only.
*/
tapNodeData: PropTypes.object,
/**
* The complete edge dictionary returned when you tap or click it. Read-only.
*/
tapEdge: PropTypes.exact({
/** Edge-specific item */
isLoop: PropTypes.bool,
/** Edge-specific item */
isSimple: PropTypes.bool,
/** Edge-specific item */
midpoint: PropTypes.object,
/** Edge-specific item */
sourceData: PropTypes.object,
/** Edge-specific item */
sourceEndpoint: PropTypes.object,
/** Edge-specific item */
targetData: PropTypes.object,
/** Edge-specific item */
targetEndpoint: PropTypes.object,
/** Edge-specific item */
timeStamp: PropTypes.number,
/** General item (for all elements) */
classes: PropTypes.string,
/** General item (for all elements) */
data: PropTypes.object,
/** General item (for all elements) */
grabbable: PropTypes.bool,
/** General item (for all elements) */
group: PropTypes.string,
/** General item (for all elements) */
locked: PropTypes.bool,
/** General item (for all elements) */
selectable: PropTypes.bool,
/** General item (for all elements) */
selected: PropTypes.bool,
/** General item (for all elements) */
style: PropTypes.object
}),
/**
* The data dictionary of an edge returned when you tap or click it. Read-only.
*/
tapEdgeData: PropTypes.object,
/**
* The complete node dictionary returned when you two-finger tap or right-click it. Read-only.
*/
cxtTapNode: PropTypes.exact({
/** node specific item */
edgesData: PropTypes.array,
/** node specific item */
renderedPosition: PropTypes.object,
/** node specific item */
timeStamp: PropTypes.number,
/** General item (for all elements) */
classes: PropTypes.string,
/** General item (for all elements) */
data: PropTypes.object,
/** General item (for all elements) */
grabbable: PropTypes.bool,
/** General item (for all elements) */
group: PropTypes.string,
/** General item (for all elements) */
locked: PropTypes.bool,
/** General item (for all elements) */
position: PropTypes.object,
/** General item (for all elements) */
selectable: PropTypes.bool,
/** General item (for all elements) */
selected: PropTypes.bool,
/** General item (for all elements) */
style: PropTypes.object,
/** Item for compound nodes */
ancestorsData: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
/** Item for compound nodes */
childrenData: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
/** Item for compound nodes */
descendantsData: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
/** Item for compound nodes */
parentData: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
/** Item for compound nodes */
siblingsData: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
/** Item for compound nodes */
isParent: PropTypes.bool,
/** Item for compound nodes */
isChildless: PropTypes.bool,
/** Item for compound nodes */
isChild: PropTypes.bool,
/** Item for compound nodes */
isOrphan: PropTypes.bool,
/** Item for compound nodes */
relativePosition: PropTypes.object
}),
/**
* The data dictionary of a node returned when you two-finger tap or right-click it. Read-only.
*/
cxtTapNodeData: PropTypes.object,
/**
* The complete edge dictionary returned when you two-finger tap or right-click it. Read-only.
*/
cxtTapEdge: PropTypes.exact({
/** Edge-specific item */
isLoop: PropTypes.bool,
/** Edge-specific item */
isSimple: PropTypes.bool,
/** Edge-specific item */
midpoint: PropTypes.object,
/** Edge-specific item */
sourceData: PropTypes.object,
/** Edge-specific item */
sourceEndpoint: PropTypes.object,
/** Edge-specific item */
targetData: PropTypes.object,
/** Edge-specific item */
targetEndpoint: PropTypes.object,
/** Edge-specific item */
timeStamp: PropTypes.number,
/** General item (for all elements) */
classes: PropTypes.string,
/** General item (for all elements) */
data: PropTypes.object,
/** General item (for all elements) */
grabbable: PropTypes.bool,
/** General item (for all elements) */
group: PropTypes.string,
/** General item (for all elements) */
locked: PropTypes.bool,
/** General item (for all elements) */
selectable: PropTypes.bool,
/** General item (for all elements) */
selected: PropTypes.bool,
/** General item (for all elements) */
style: PropTypes.object
}),
/**
* The data dictionary of an edge returned when you two-finger tap or right-click it. Read-only.
*/
cxtTapEdgeData: PropTypes.object,
/**
* The data dictionary of a node returned when you hover over it. Read-only.
*/
mouseoverNodeData: PropTypes.object,
/**
* The data dictionary of an edge returned when you hover over it. Read-only.
*/
mouseoverEdgeData: PropTypes.object,
/**
* The data dictionary of a node returned when you hover out of it. Read-only.
*/
mouseoutNodeData: PropTypes.object,
/**
* The data dictionary of an edge returned when you hover out of it. Read-only.
*/
mouseoutEdgeData: PropTypes.object,
/**
* The list of data dictionaries of all selected nodes (e.g. using