123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- import {
- pick,
- assign,
- filter,
- forEach,
- isArray,
- isUndefined,
- has
- } from 'min-dash';
- import {
- is,
- getBusinessObject
- } from '../../util/ModelUtil';
- import {
- isAny
- } from '../modeling/util/ModelingUtil';
- import {
- isExpanded,
- isEventSubProcess
- } from '../../util/DiUtil';
- import { getPropertyNames } from '../copy-paste/ModdleCopy';
- function copyProperties(source, target, properties) {
- if (!isArray(properties)) {
- properties = [ properties ];
- }
- forEach(properties, function(property) {
- if (!isUndefined(source[property])) {
- target[property] = source[property];
- }
- });
- }
- var CUSTOM_PROPERTIES = [
- 'cancelActivity',
- 'instantiate',
- 'eventGatewayType',
- 'triggeredByEvent',
- 'isInterrupting'
- ];
- function toggeling(element, target) {
- var oldCollapsed = (
- element && has(element, 'collapsed') ? element.collapsed : !isExpanded(element)
- );
- var targetCollapsed;
- if (target && (has(target, 'collapsed') || has(target, 'isExpanded'))) {
- // property is explicitly set so use it
- targetCollapsed = (
- has(target, 'collapsed') ? target.collapsed : !target.isExpanded
- );
- } else {
- // keep old state
- targetCollapsed = oldCollapsed;
- }
- if (oldCollapsed !== targetCollapsed) {
- element.collapsed = oldCollapsed;
- return true;
- }
- return false;
- }
- /**
- * This module takes care of replacing BPMN elements
- */
- export default function BpmnReplace(
- bpmnFactory,
- elementFactory,
- moddleCopy,
- modeling,
- replace,
- selection
- ) {
- /**
- * Prepares a new business object for the replacement element
- * and triggers the replace operation.
- *
- * @param {djs.model.Base} element
- * @param {Object} target
- * @param {Object} [hints]
- *
- * @return {djs.model.Base} the newly created element
- */
- function replaceElement(element, target, hints) {
- hints = hints || {};
- var type = target.type,
- oldBusinessObject = element.businessObject;
- if (isSubProcess(oldBusinessObject)) {
- if (type === 'bpmn:SubProcess') {
- if (toggeling(element, target)) {
- // expanding or collapsing process
- modeling.toggleCollapse(element);
- return element;
- }
- }
- }
- var newBusinessObject = bpmnFactory.create(type);
- var newElement = {
- type: type,
- businessObject: newBusinessObject
- };
- var elementProps = getPropertyNames(oldBusinessObject.$descriptor),
- newElementProps = getPropertyNames(newBusinessObject.$descriptor, true),
- copyProps = intersection(elementProps, newElementProps);
- // initialize special properties defined in target definition
- assign(newBusinessObject, pick(target, CUSTOM_PROPERTIES));
- var properties = filter(copyProps, function(propertyName) {
- // copying event definitions, unless we replace
- if (propertyName === 'eventDefinitions') {
- return hasEventDefinition(element, target.eventDefinitionType);
- }
- // retain loop characteristics if the target element
- // is not an event sub process
- if (propertyName === 'loopCharacteristics') {
- return !isEventSubProcess(newBusinessObject);
- }
- // so the applied properties from 'target' don't get lost
- if (newBusinessObject.hasOwnProperty(propertyName)) {
- return false;
- }
- if (propertyName === 'processRef' && target.isExpanded === false) {
- return false;
- }
- if (propertyName === 'triggeredByEvent') {
- return false;
- }
- return true;
- });
- newBusinessObject = moddleCopy.copyElement(
- oldBusinessObject,
- newBusinessObject,
- properties
- );
- // initialize custom BPMN extensions
- if (target.eventDefinitionType) {
- // only initialize with new eventDefinition
- // if we did not set an event definition yet,
- // i.e. because we copied it
- if (!hasEventDefinition(newBusinessObject, target.eventDefinitionType)) {
- newElement.eventDefinitionType = target.eventDefinitionType;
- newElement.eventDefinitionAttrs = target.eventDefinitionAttrs;
- }
- }
- if (is(oldBusinessObject, 'bpmn:Activity')) {
- if (isSubProcess(oldBusinessObject)) {
- // no toggeling, so keep old state
- newElement.isExpanded = isExpanded(oldBusinessObject);
- }
- // else if property is explicitly set, use it
- else if (target && has(target, 'isExpanded')) {
- newElement.isExpanded = target.isExpanded;
- }
- // TODO: need also to respect min/max Size
- // copy size, from an expanded subprocess to an expanded alternative subprocess
- // except bpmn:Task, because Task is always expanded
- if ((isExpanded(oldBusinessObject) && !is(oldBusinessObject, 'bpmn:Task')) && newElement.isExpanded) {
- newElement.width = element.width;
- newElement.height = element.height;
- }
- }
- // remove children if not expanding sub process
- if (isSubProcess(oldBusinessObject) && !isSubProcess(newBusinessObject)) {
- hints.moveChildren = false;
- }
- // transform collapsed/expanded pools
- if (is(oldBusinessObject, 'bpmn:Participant')) {
- // create expanded pool
- if (target.isExpanded === true) {
- newBusinessObject.processRef = bpmnFactory.create('bpmn:Process');
- } else {
- // remove children when transforming to collapsed pool
- hints.moveChildren = false;
- }
- // apply same width and default height
- newElement.width = element.width;
- newElement.height = elementFactory._getDefaultSize(newBusinessObject).height;
- }
- newBusinessObject.name = oldBusinessObject.name;
- // retain default flow's reference between inclusive <-> exclusive gateways and activities
- if (
- isAny(oldBusinessObject, [
- 'bpmn:ExclusiveGateway',
- 'bpmn:InclusiveGateway',
- 'bpmn:Activity'
- ]) &&
- isAny(newBusinessObject, [
- 'bpmn:ExclusiveGateway',
- 'bpmn:InclusiveGateway',
- 'bpmn:Activity'
- ])
- ) {
- newBusinessObject.default = oldBusinessObject.default;
- }
- if (
- target.host &&
- !is(oldBusinessObject, 'bpmn:BoundaryEvent') &&
- is(newBusinessObject, 'bpmn:BoundaryEvent')
- ) {
- newElement.host = target.host;
- }
- newElement.di = {};
- // fill and stroke will be set to DI
- copyProperties(oldBusinessObject.di, newElement.di, [
- 'fill',
- 'stroke'
- ]);
- newElement = replace.replaceElement(element, newElement, hints);
- if (hints.select !== false) {
- selection.select(newElement);
- }
- return newElement;
- }
- this.replaceElement = replaceElement;
- }
- BpmnReplace.$inject = [
- 'bpmnFactory',
- 'elementFactory',
- 'moddleCopy',
- 'modeling',
- 'replace',
- 'selection'
- ];
- function isSubProcess(bo) {
- return is(bo, 'bpmn:SubProcess');
- }
- function hasEventDefinition(element, type) {
- var bo = getBusinessObject(element);
- return type && bo.get('eventDefinitions').some(function(definition) {
- return is(definition, type);
- });
- }
- /**
- * Compute intersection between two arrays.
- */
- function intersection(a1, a2) {
- return a1.filter(function(el) {
- return a2.indexOf(el) !== -1;
- });
- }
|