You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
987 B
42 lines
987 B
3 years ago
|
import inherits from 'inherits-browser';
|
||
|
|
||
|
import { is } from '../../../util/ModelUtil';
|
||
|
|
||
|
import CommandInterceptor from 'diagram-js/lib/command/CommandInterceptor';
|
||
|
|
||
|
|
||
|
export default function AppendBehavior(eventBus, elementFactory, bpmnRules) {
|
||
|
|
||
|
CommandInterceptor.call(this, eventBus);
|
||
|
|
||
|
// assign correct shape position unless already set
|
||
|
|
||
|
this.preExecute('shape.append', function(context) {
|
||
|
|
||
|
var source = context.source,
|
||
|
shape = context.shape;
|
||
|
|
||
|
if (!context.position) {
|
||
|
|
||
|
if (is(shape, 'bpmn:TextAnnotation')) {
|
||
|
context.position = {
|
||
|
x: source.x + source.width / 2 + 75,
|
||
|
y: source.y - (50) - shape.height / 2
|
||
|
};
|
||
|
} else {
|
||
|
context.position = {
|
||
|
x: source.x + source.width + 80 + shape.width / 2,
|
||
|
y: source.y + source.height / 2
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}, true);
|
||
|
}
|
||
|
|
||
|
inherits(AppendBehavior, CommandInterceptor);
|
||
|
|
||
|
AppendBehavior.$inject = [
|
||
|
'eventBus',
|
||
|
'elementFactory',
|
||
|
'bpmnRules'
|
||
|
];
|