cytoscape-edgehandles
Description
This extension creates handles on nodes that can be dragged to create edges between nodes (demo, snapping demo, compound demo, compound snapping demo)
Dependencies
Usage instructions
Download the library:
- via npm:
npm install cytoscape-edgehandles
, - via bower:
bower install cytoscape-edgehandles
, or - via direct download in the repository (probably from a tag).
Import the library as appropriate for your project:
ES import:
import cytoscape from 'cytoscape';
import edgehandles from 'cytoscape-edgehandles';
cytoscape.use( edgehandles );
CommonJS require:
let cytoscape = require('cytoscape');
let edgehandles = require('cytoscape-edgehandles');
cytoscape.use( edgehandles );
AMD:
require(['cytoscape', 'cytoscape-edgehandles'], function( cytoscape, edgehandles ){
edgehandles( cytoscape );
});
Plain HTML/JS has the extension registered for you automatically, because no require()
is needed.
Initialisation
You initialise the extension on the Cytoscape instance:
let cy = cytoscape({
container: document.getElementById('#cy'),
});
let defaults = {
preview: true,
hoverDelay: 150,
handleNodes: 'node',
snap: false,
snapThreshold: 50,
snapFrequency: 15,
noEdgeEventsInDraw: false,
disableBrowserGestures: true,
handlePosition: function( node ){
return 'middle top';
},
handleInDrawMode: false,
edgeType: function( sourceNode, targetNode ){
return 'flat';
},
loopAllowed: function( node ){
return false;
},
nodeLoopOffset: -50,
nodeParams: function( sourceNode, targetNode ){
return {};
},
edgeParams: function( sourceNode, targetNode, i ){
return {};
},
ghostEdgeParams: function(){
return {};
},
show: function( sourceNode ){
},
hide: function( sourceNode ){
},
start: function( sourceNode ){
},
complete: function( sourceNode, targetNode, addedEles ){
},
stop: function( sourceNode ){
},
cancel: function( sourceNode, cancelledTargets ){
},
hoverover: function( sourceNode, targetNode ){
},
hoverout: function( sourceNode, targetNode ){
},
previewon: function( sourceNode, targetNode, previewEles ){
},
previewoff: function( sourceNode, targetNode, previewEles ){
},
drawon: function(){
},
drawoff: function(){
}
};
let eh = cy.edgehandles( defaults );
API
The object returned by cy.edgehandles()
has several functions available on it:
start( sourceNode )
: manually start the gesture (as if the handle were already held)stop()
: manually completes or cancels the gesturehide()
: remove the handle node from the graphdisable()
: disables edgehandles behaviourenable()
: enables edgehandles behaviourenableDrawMode()
: turn on draw mode (the entire node body acts like the handle)disableDrawMode()
: turn off draw modedestroy()
: remove edgehandles behaviour
Classes
These classes can be used for styling the graph as it interacts with the extension:
eh-handle
: The handle nodeeh-source
: The source nodeeh-target
: A target nodeeh-preview
: Preview elements (used with options.preview: true
)eh-hover
: Added to nodes as they are hovered over as targetseh-ghost-node
: The ghost node (target)eh-ghost-edge
: The ghost handle line edgeeh-ghost
: A ghost elementeh-presumptive-target
: A node that, during an edge drag, may become a target when releasedeh-preview-active
: Applied to the source, target, and ghost edge when the preview is active
Events
During the course of a user's interaction with the extension, several events are generated and triggered on the core. Each event callback has a number of extra parameters, and certain events have associated positions.
ehshow
: when the handle is shown
(event, sourceNode)
event.position
: handle position
ehhide
: when the handle is hidden
(event, sourceNode)
event.position
: handle position
ehstart
: when the edge creation gesture starts
(event, sourceNode)
event.position
: handle position
ehcomplete
: when the edge creation gesture is successfully completed
(event, sourceNode, targetNode, addedEles)
event.position
: cursor/finger position
ehstop
: when the edge creation gesture is stopped (either successfully completed or cancelled)
(event, sourceNode)
event.position
: cursor/finger position
ehcancel
: when the edge creation gesture is cancelled
(event, sourceNode, cancelledTargets)
event.position
: cursor/finger position
ehhoverover
: when hovering over a target
(event, sourceNode, targetNode)
event.position
: cursor/finger position
ehhoverout
: when leaving a target node
(event, sourceNode, targetNode)
event.position
: cursor/finger position
ehpreviewon
: when a preview is shown
(event, sourceNode, targetNode, previewEles)
event.position
: cursor/finger position
ehpreviewoff
: when the preview is removed
(event, sourceNode, targetNode, previewEles)
event.position
: cursor/finger position
ehdrawon
: when draw mode is enabled
ehdrawoff
: when draw mode is disabled
Example binding:
cy.on('ehcomplete', (event, sourceNode, targetNode, addedEles) => {
let { position } = event;
});
Build targets
npm run test
: Run Mocha tests in ./test
npm run build
: Build ./src/**
into cytoscape-edgehandles.js
npm run watch
: Automatically build on changes with live reloading (N.b. you must already have an HTTP server running)npm run dev
: Automatically build on changes with live reloading with webpack dev servernpm run lint
: Run eslint on the source
N.b. all builds use babel, so modern ES features can be used in the src
.
Publishing instructions
This project is set up to automatically be published to npm and bower. To publish:
- Build the extension :
npm run build:release
- Commit the build :
git commit -am "Build for release"
- Bump the version number and tag:
npm version major|minor|patch
- Push to origin:
git push && git push --tags
- Publish to npm:
npm publish .
- If publishing to bower for the first time, you'll need to run
bower register cytoscape-edgehandles https://github.com/cytoscape/edgehandles.git
a - Make a new release for Zenodo.