| 123456789101112131415161718192021222324252627282930313233343536 |
- import { assign } from 'min-dash';
- /**
- * A handler that implements reversible moving of shapes.
- */
- export default function LayoutConnectionHandler(layouter, canvas) {
- this._layouter = layouter;
- this._canvas = canvas;
- }
- LayoutConnectionHandler.$inject = [ 'layouter', 'canvas' ];
- LayoutConnectionHandler.prototype.execute = function(context) {
- var connection = context.connection;
- var oldWaypoints = connection.waypoints;
- assign(context, {
- oldWaypoints: oldWaypoints
- });
- connection.waypoints = this._layouter.layoutConnection(connection, context.hints);
- return connection;
- };
- LayoutConnectionHandler.prototype.revert = function(context) {
- var connection = context.connection;
- connection.waypoints = context.oldWaypoints;
- return connection;
- };
|