
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
@imtf/react-cytoscapejs
Advanced tools
The react-cytoscapejs package is an MIT-licensed React component for network (or graph, as in graph theory) visualisation. The component renders a Cytoscape graph.
Most props of this component are Cytoscape JSON.
npm install react-cytoscapejs
npm install cytoscape@3.x.y # your desired version, 3.2.19 or newer
yarn add react-cytoscapejs
yarn add cytoscape@3.x.y # your desired version, 3.2.19 or newer
Note that you must specify the desired version of cytoscape to be used. Otherwise, you will get whatever version npm or yarn thinks best matches this package's compatible semver range -- which is currently ^3.2.19 or any version of 3 newer than or equal to 3.2.19.
The component is created by putting a <CytoscapeComponent> within the render() function of one of your apps's React components. Here is a minimal example:
import React from 'react';
import ReactDOM from 'react-dom';
import CytoscapeComponent from 'react-cytoscapejs';
class MyApp extends React.Component {
constructor(props){
super(props);
}
render(){
const elements = [
{ data: { id: 'one', label: 'Node 1' }, position: { x: 0, y: 0 } },
{ data: { id: 'two', label: 'Node 2' }, position: { x: 100, y: 0 } },
{ data: { source: 'one', target: 'two', label: 'Edge from Node1 to Node2' } }
];
return <CytoscapeComponent elements={elements} style={ { width: '600px', height: '600px' } } />;
}
}
ReactDOM.render( React.createElement(MyApp, document.getElementById('root')));
Basic propselementsThe flat list of Cytoscape elements to be included in the graph, each represented as non-stringified JSON. E.g.:
<CytoscapeComponent
elements={[
{ data: { id: 'one', label: 'Node 1' }, position: { x: 0, y: 0 } },
{ data: { id: 'two', label: 'Node 2' }, position: { x: 100, y: 0 } },
{
data: { source: 'one', target: 'two', label: 'Edge from Node1 to Node2' }
}
]}
/>
Note that arrays or objects should not be used in an element's data or scratch fields, unless using a custom diff() prop.
In order to make it easier to support passing in elements JSON in the elements: { nodes: [], edges: [] } format, there is a static function CytoscapeComponent.normalizeElements(). E.g.:
<CytoscapeComponent
elements={CytoscapeComponent.normalizeElements({
nodes: [
{ data: { id: 'one', label: 'Node 1' }, position: { x: 0, y: 0 } },
{ data: { id: 'two', label: 'Node 2' }, position: { x: 100, y: 0 } }
],
edges: [
{
data: { source: 'one', target: 'two', label: 'Edge from Node1 to Node2' }
}
]
})}
/>
Note that CytoscapeComponent.normalizeElements() is useful only for plain-JSON data, such as an export from Cytoscape.js or the Cytoscape desktop software. If you use custom prop types, such as Immutable, then you should flatten the elements yourself before passing the elements prop.
stylesheetThe Cytoscape stylesheet as non-stringified JSON. Note that the prop key is stylesheet rather than style, the key used by Cytoscape itself, so as to not conflict with the HTML style attribute. E.g.:
<CytoscapeComponent
stylesheet={[
{
selector: 'node',
style: {
width: 20,
height: 20,
shape: 'rectangle'
}
},
{
selector: 'edge',
style: {
width: 15
}
}
]}
/>
layoutUse a layout to automatically position the nodes in the graph. E.g.:
layout: {
name: 'random';
}
To use an external layout extension, you must register the extension prior to rendering this component, e.g.:
import Cytoscape from 'cytoscape';
import COSEBilkent from 'cytoscape-cose-bilkent';
import React from 'react';
import CytoscapeComponent from 'react-cytoscapejs';
Cytoscape.use(COSEBilkent);
class MyApp extends React.Component {
render() {
const elements = [
{ data: { id: 'one', label: 'Node 1' }, position: { x: 0, y: 0 } },
{ data: { id: 'two', label: 'Node 2' }, position: { x: 100, y: 0 } },
{ data: { source: 'one', target: 'two', label: 'Edge from Node1 to Node2' } }
];
const layout = { name: 'cose-bilkent' };
return <CytoscapeComponent elements={elements} layout={layout} />;
}
}
cyThis prop allows for getting a reference to the Cytoscape cy reference using a React ref function. This cy reference can be used to access the Cytoscape API directly. E.g.:
class MyApp extends React.Component {
render() {
return <CytoscapeComponent cy={(cy) => { this.cy = cy }}>;
}
}
panThe panning position of the graph, e.g. <CytoscapeComponent pan={ { x: 100, y: 200 } } />.
zoomThe zoom level of the graph, e.g. <CytoscapeComponent zoom={2} />.
panningEnabledWhether the panning position of the graph is mutable overall, e.g. <CytoscapeComponent panningEnabled={false} />.
userPanningEnabledWhether the panning position of the graph is mutable by user gestures such as swiping, e.g. <CytoscapeComponent userPanningEnabled={false} />.
minZoomThe minimum zoom level of the graph, e.g. <CytoscapeComponent minZoom={0.5} />.
maxZoomThe maximum zoom level of the graph, e.g. <CytoscapeComponent maxZoom={2} />.
zoomingEnabledWhether the zoom level of the graph is mutable overall, e.g. <CytoscapeComponent zoomingEnabled={false} />.
userZoomingEnabledWhether the zoom level of the graph is mutable by user gestures (e.g. pinch-to-zoom), e.g. <CytoscapeComponent userZoomingEnabled={false} />.
boxSelectionEnabledWhether shift+click-and-drag box selection is enabled, e.g. <CytoscapeComponent boxSelectionEnabled={false} />.
autoungrabifyIf true, nodes automatically can not be grabbed regardless of whether each node is marked as grabbable, e.g. <CytoscapeComponent autoungrabify={true} />.
autolockIf true, nodes can not be moved at all, e.g. <CytoscapeComponent autolock={true} />.
autounselectifyIf true, elements have immutable selection state, e.g. <CytoscapeComponent autounselectify={true} />.
These props allow for setting built-in HTML attributes on the div created by the component that holds the visualisation:
idThe id attribute of the div, e.g. <CytoscapeComponent id="myCy" />.
classNameThe class attribute of the div containing space-separated class names, e.g. <CytoscapeComponent className="foo bar" />.
styleThe style attribute of the div containing CSS styles, e.g. <CytoscapeComponent style={ { width: '600px', height: '600px' } } />.
This component allows for props of custom type to be used (i.e. non JSON props), for example an object-oriented model or an Immutable model. The props used to control the reading and diffing of the main props are listed below.
Examples are given using Immutable. Using Immutable allows for cheaper diffs, which is useful for updating graphs with many elements. For example, you may specify elements as the following:
const elements = Immutable.List([
Immutable.Map({ data: Immutable.Map({ id: 'foo', label: 'bar' }) })
]);
get(object, key)Get the value of the specified object at the key, which may be an integer in the case of lists/arrays or strings in the case of maps/objects. E.g.:
const get = (object, key) => {
// must check type because some props may be immutable and others may not be
if (Immutable.Map.isMap(object) || Immutable.List.isList(object)) {
return object.get(key);
} else {
return object[key];
}
}
The default is:
const get = (object, key) => object[key];
toJson(object)Get the deep value of the specified object as non-stringified JSON. E.g.:
const toJson = (object) => {
// must check type because some props may be immutable and others may not be
if (Immutable.isImmutable(object)) {
return object.toJSON();
} else {
return object;
}
}
The default is:
const toJson = (object) => object;
diff(objectA, objectB)Return whether the two objects have equal value. This is used to determine if and where Cytoscape needs to be patched. E.g.:
const diff = (objectA, objectB) => objectA !== objectB; // immutable creates new objects for each operation
The default is a shallow equality check over the fields of each object. This means that if you use the default diff(), you should not use arrays or objects in an element's data or scratch fields.
Immutable benefits performance here by reducing the total number of diff() calls needed. For example, an unchanged element requires only one diff with Immutable whereas it would require many diffs with the default JSON diff() implementation. Basically, Immutable make diffs minimal-depth searches.
forEach(list, iterator)Call iterator on each element in the list, in order. E.g.:
const forEach = (list, iterator) => list.forEach(iterator); // same for immutable and js arrays
The above example is the same as the default forEach().
cy()The cy prop allows for getting a reference to the cy Cytoscape object, e.g.:
<CytoscapeComponent cy={(cy) => { myCyRef = cy }} />
cytoscape to peer dependencies for easier use in other packages. In particular, since you frequently need to explicitly call cytoscape functionality in your larger project, this helps ensure only one copy of it is loaded.webpack to microbundle (rollup based)headless, styleEnabled and the following (canvas renderer) rendering hints: hideEdgesOnViewport, textureOnViewport, motionBlur, motionBlurOpacity, wheelSensitivity, pixelRatioComponent.normalizeElements() utility functionFAQs
React-based network visualization component, using Cytoscape
We found that @imtf/react-cytoscapejs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.