This package has been deprecated

Author message:

WARNING: This project has been renamed to cytoscape-undo-redo. Install using cytoscape-undo-redo instead.

cytoscape.js-undo-redo

1.0.1 • Public • Published

cytoscape.js-undo-redo

Description

This extension represents an interface to control actions on Cytoscape.js graph and also provides built-in functionalities for common cytoscape.js operations like dragging nodes, adding/removing new node et al.

API

    var cy = cytoscape({...});
 
    var ur = cy.undoRedo(options);
 

ur.action( actionName, actionFunction, undoFunction) Register action with its undo function & action name. actionFunction's return value will be used to call undoFunction by argument and vice versa. This function is chainable: ur.action(...).action(...)

ur.do(actionName, args) Calls registered function with action name actionName via actionFunction(args)

ur.undo() Undo last action. Returns arguments that are passed to redo.

ur.redo() Redo last action. Returns arguments that are passed to undo.

cy.on("undo", function(actionName, args){} ) Calls registered function with action name actionName via actionFunction(args)

cy.on("redo", function(actionName, args){} ) Calls registered function with action name actionName via actionFunction(args) *Note that args are returned from opposite action like (undo => redo || redo => undo)

ur.isUndoStackEmpty() Get whether undo stack is empty (namely is undoable)

ur.isRedoStackEmpty() Get whether undo stack is empty (namely is redoable)

ur.getUndoStack() Gets actions (with their args) in undo stack

ur.getRedoStack() Gets actions (with their args) in redo stack

Default Options

      var options = {
            isDebug: false, // Debug mode for console messages
            actions: {},// actions to be added
            undoableDrag: true, // Whether dragging nodes are undoable
            keyboardShortcuts: {
                ctrl_z: true, // undo
                ctrl_y: true, // redo
                ctrl_shift_z: false // redo
            },
            defaultActions: true, // default actions are enabled/disabled
            beforeUndo: function () { // callback before undo is triggered.
 
            },
            afterUndo: function () { // callback after undo is triggered.
 
            },
            beforeRedo: function () { // callback before redo is triggered.
 
            },
            afterRedo: function () { // callback after redo is triggered.
 
            },
            ready: function () { // callback when undo-redo is ready
 
            }
        }
        
       var ur = cy.undoRedo(options); // Can also be set whenever wanted.

Default Actions (Undoable/Redoable)

  • Default actions can be run by the same way like ur.do("remove", "#spec")
  • Undoable dragging can be disabled through options undoableDrag: false

.do("add", eleObj) http://js.cytoscape.org/#cy.add

.do("remove", eles/selector) http://js.cytoscape.org/#cy.remove

.do("layout", options) http://js.cytoscape.org/#core/layout

  • Following actions take argument(s) instead of extending

.do("restore", eles/selector) http://js.cytoscape.org/#eles.restore

.do("clone", eles/selector) http://js.cytoscape.org/#eles.restore

.do("select", eles/selector) http://js.cytoscape.org/#eles.select

.do("unselect", eles/selector) http://js.cytoscape.org/#eles.unselect

.do("move", arg) http://js.cytoscape.org/#eles.move

   var arg = {
       eles: ... // eles/selector
       location: ... // as is in docs
       }

Example

   function deleteEles(eles){
       return eles.remove();
   }
   function restoreEles(eles){
       return eles.restore();
   }
   ur.action("deleteEles", deleteEles, restoreEles); // register
   
   var selecteds = cy.$(":selected");
   ur.do("deleteEles", selecteds); // 
   
   ur.undo();
   ur.redo();
  • Note that default remove default action above has the same functionality and also supports string selectors like #spec.

Dependencies

  • Cytoscape.js ^1.5.0

Usage instructions

Download the library:

  • via npm: npm install cytoscape.js-undo-redo,
  • via bower: bower install cytoscape.js-undo-redo, or
  • via direct download in the repository (probably from a tag).

require() the library as appropriate for your project:

CommonJS:

var cytoscape = require('cytoscape');
var undoRedo = require('cytoscape.js-undo-redo');
 
undoRedo( cytoscape ); // register extension

AMD:

require(['cytoscape', 'cytoscape.js-undo-redo'], function( cytoscape, undoRedo ){
  undoRedo( cytoscape ); // register extension
});

Plain HTML/JS has the extension registered for you automatically, because no require() is needed.

Publishing instructions

This project is set up to automatically be published to npm and bower. To publish:

  1. Set the version number environment variable: export VERSION=1.2.3
  2. Publish: gulp publish
  3. If publishing to bower for the first time, you'll need to run bower register cytoscape.js-undo-redo https://github.com/iVis-at-Bilkent/cytoscape.js-undo-redo.git

Team

Readme

Keywords

Package Sidebar

Install

npm i cytoscape.js-undo-redo

Weekly Downloads

84

Version

1.0.1

License

MIT

Last publish

Collaborators

  • metincansiper
  • mrsfy
  • balcihasan
  • leonarddrv
  • livogindo
  • ivisatbilkent