167 lines
4.0 KiB
JavaScript
167 lines
4.0 KiB
JavaScript
'use strict';
|
|
|
|
var inherits = require('inherits');
|
|
|
|
var BaseModeling = require('diagram-js/lib/features/modeling/Modeling');
|
|
|
|
var UpdatePropertiesHandler = require('./cmd/UpdatePropertiesHandler'),
|
|
UpdateCanvasRootHandler = require('./cmd/UpdateCanvasRootHandler'),
|
|
AddLaneHandler = require('./cmd/AddLaneHandler'),
|
|
SplitLaneHandler = require('./cmd/SplitLaneHandler'),
|
|
ResizeLaneHandler = require('./cmd/ResizeLaneHandler'),
|
|
UpdateFlowNodeRefsHandler = require('./cmd/UpdateFlowNodeRefsHandler'),
|
|
IdClaimHandler = require('./cmd/IdClaimHandler');
|
|
|
|
|
|
/**
|
|
* BPMN 2.0 modeling features activator
|
|
*
|
|
* @param {EventBus} eventBus
|
|
* @param {ElementFactory} elementFactory
|
|
* @param {CommandStack} commandStack
|
|
* @param {BpmnRules} bpmnRules
|
|
*/
|
|
function Modeling(eventBus, elementFactory, commandStack, bpmnRules) {
|
|
BaseModeling.call(this, eventBus, elementFactory, commandStack);
|
|
|
|
this._bpmnRules = bpmnRules;
|
|
}
|
|
|
|
inherits(Modeling, BaseModeling);
|
|
|
|
Modeling.$inject = [ 'eventBus', 'elementFactory', 'commandStack', 'bpmnRules' ];
|
|
|
|
module.exports = Modeling;
|
|
|
|
|
|
Modeling.prototype.getHandlers = function() {
|
|
var handlers = BaseModeling.prototype.getHandlers.call(this);
|
|
|
|
handlers['element.updateProperties'] = UpdatePropertiesHandler;
|
|
handlers['canvas.updateRoot'] = UpdateCanvasRootHandler;
|
|
handlers['lane.add'] = AddLaneHandler;
|
|
handlers['lane.resize'] = ResizeLaneHandler;
|
|
handlers['lane.split'] = SplitLaneHandler;
|
|
handlers['lane.updateRefs'] = UpdateFlowNodeRefsHandler;
|
|
handlers['id.updateClaim'] = IdClaimHandler;
|
|
|
|
return handlers;
|
|
};
|
|
|
|
|
|
Modeling.prototype.updateLabel = function(element, newLabel) {
|
|
this._commandStack.execute('element.updateLabel', {
|
|
element: element,
|
|
newLabel: newLabel
|
|
});
|
|
};
|
|
|
|
|
|
Modeling.prototype.connect = function(source, target, attrs) {
|
|
|
|
var bpmnRules = this._bpmnRules;
|
|
|
|
if (!attrs) {
|
|
attrs = bpmnRules.canConnect(source, target) || { type: 'bpmn:Association' };
|
|
}
|
|
|
|
return this.createConnection(source, target, attrs, source.parent);
|
|
};
|
|
|
|
|
|
Modeling.prototype.updateProperties = function(element, properties) {
|
|
this._commandStack.execute('element.updateProperties', {
|
|
element: element,
|
|
properties: properties
|
|
});
|
|
};
|
|
|
|
Modeling.prototype.resizeLane = function(laneShape, newBounds, balanced) {
|
|
this._commandStack.execute('lane.resize', {
|
|
shape: laneShape,
|
|
newBounds: newBounds,
|
|
balanced: balanced
|
|
});
|
|
};
|
|
|
|
Modeling.prototype.addLane = function(targetLaneShape, location) {
|
|
var context = {
|
|
shape: targetLaneShape,
|
|
location: location
|
|
};
|
|
|
|
this._commandStack.execute('lane.add', context);
|
|
|
|
return context.newLane;
|
|
};
|
|
|
|
Modeling.prototype.splitLane = function(targetLane, count) {
|
|
this._commandStack.execute('lane.split', {
|
|
shape: targetLane,
|
|
count: count
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Transform the current diagram into a collaboration.
|
|
*
|
|
* @return {djs.model.Root} the new root element
|
|
*/
|
|
Modeling.prototype.makeCollaboration = function() {
|
|
|
|
var collaborationElement = this._create('root', {
|
|
type: 'bpmn:Collaboration'
|
|
});
|
|
|
|
var context = {
|
|
newRoot: collaborationElement
|
|
};
|
|
|
|
this._commandStack.execute('canvas.updateRoot', context);
|
|
|
|
return collaborationElement;
|
|
};
|
|
|
|
Modeling.prototype.updateLaneRefs = function(flowNodeShapes, laneShapes) {
|
|
|
|
this._commandStack.execute('lane.updateRefs', {
|
|
flowNodeShapes: flowNodeShapes,
|
|
laneShapes: laneShapes
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Transform the current diagram into a process.
|
|
*
|
|
* @return {djs.model.Root} the new root element
|
|
*/
|
|
Modeling.prototype.makeProcess = function() {
|
|
|
|
var processElement = this._create('root', {
|
|
type: 'bpmn:Process'
|
|
});
|
|
|
|
var context = {
|
|
newRoot: processElement
|
|
};
|
|
|
|
this._commandStack.execute('canvas.updateRoot', context);
|
|
};
|
|
|
|
|
|
Modeling.prototype.claimId = function(id, moddleElement) {
|
|
this._commandStack.execute('id.updateClaim', {
|
|
id: id,
|
|
element: moddleElement,
|
|
claiming: true
|
|
});
|
|
};
|
|
|
|
|
|
Modeling.prototype.unclaimId = function(id, moddleElement) {
|
|
this._commandStack.execute('id.updateClaim', {
|
|
id: id,
|
|
element: moddleElement
|
|
});
|
|
};
|