42 lines
1.0 KiB
JavaScript
42 lines
1.0 KiB
JavaScript
import CroppingConnectionDocking from 'diagram-js/lib/layout/CroppingConnectionDocking';
|
|
|
|
import {
|
|
getOrientation
|
|
} from 'diagram-js/lib/layout/LayoutUtil';
|
|
|
|
import inherits from 'inherits';
|
|
|
|
|
|
export default function LoggingCroppingConnectionDocking(injector) {
|
|
injector.invoke(CroppingConnectionDocking, this);
|
|
}
|
|
|
|
LoggingCroppingConnectionDocking.$inject = [
|
|
'injector'
|
|
];
|
|
|
|
inherits(LoggingCroppingConnectionDocking, CroppingConnectionDocking);
|
|
|
|
window.noIntersectCount = 0;
|
|
|
|
window.noIntersect = [];
|
|
|
|
LoggingCroppingConnectionDocking.prototype._getIntersection = function(shape, connection, takeFirst) {
|
|
|
|
var intersection = CroppingConnectionDocking.prototype._getIntersection.call(this, shape, connection, takeFirst);
|
|
|
|
if (!intersection) {
|
|
|
|
if (getOrientation(connection.source, connection.target) !== 'intersect') {
|
|
window.noIntersectCount++;
|
|
|
|
window.noIntersect.push([
|
|
connection,
|
|
this._getShapePath(shape),
|
|
this._getConnectionPath(connection)
|
|
]);
|
|
}
|
|
}
|
|
|
|
return intersection;
|
|
}; |