pagraphcontrol/components/graph/base.js
2018-11-08 20:39:54 +03:00

25 lines
531 B
JavaScript

const {
GraphView: GraphViewBase,
} = require('react-digraph');
class GraphView extends GraphViewBase {
constructor(props) {
super(props);
Object.assign(this, {
_super_handleNodeMove: this.handleNodeMove,
handleNodeMove: this.constructor.prototype.handleNodeMove.bind(this),
});
}
handleNodeMove(position, nodeId, shiftKey) {
this._super_handleNodeMove(position, nodeId, shiftKey);
if (this.props.onNodeMove) {
this.props.onNodeMove(position, nodeId, shiftKey);
}
}
}
module.exports = { GraphView };