2014-07-18 12:39:15 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-02-02 13:46:21 +00:00
|
|
|
var assign = require('lodash/object/assign');
|
2014-07-18 12:39:15 +00:00
|
|
|
|
2015-09-08 12:38:50 +00:00
|
|
|
var is = require('./ModelUtil').is;
|
2014-07-18 12:39:15 +00:00
|
|
|
|
2014-08-03 12:30:53 +00:00
|
|
|
var DEFAULT_LABEL_SIZE = module.exports.DEFAULT_LABEL_SIZE = {
|
|
|
|
width: 90,
|
2014-09-15 12:41:26 +00:00
|
|
|
height: 20
|
2014-08-03 12:30:53 +00:00
|
|
|
};
|
|
|
|
|
2016-04-20 13:40:40 +00:00
|
|
|
var FLOW_LABEL_INDENT = module.exports.FLOW_LABEL_INDENT = 15;
|
|
|
|
|
2014-08-03 12:30:53 +00:00
|
|
|
|
2014-07-18 12:39:15 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the given semantic has an external label
|
|
|
|
*
|
|
|
|
* @param {BpmnElement} semantic
|
|
|
|
* @return {Boolean} true if has label
|
|
|
|
*/
|
|
|
|
module.exports.hasExternalLabel = function(semantic) {
|
2015-09-08 12:38:50 +00:00
|
|
|
return is(semantic, 'bpmn:Event') ||
|
|
|
|
is(semantic, 'bpmn:Gateway') ||
|
|
|
|
is(semantic, 'bpmn:DataStoreReference') ||
|
|
|
|
is(semantic, 'bpmn:DataObjectReference') ||
|
|
|
|
is(semantic, 'bpmn:SequenceFlow') ||
|
|
|
|
is(semantic, 'bpmn:MessageFlow');
|
2014-07-18 12:39:15 +00:00
|
|
|
};
|
|
|
|
|
2016-04-19 14:50:42 +00:00
|
|
|
/**
|
|
|
|
* Get the position for sequence flow labels
|
|
|
|
*
|
|
|
|
* @param {Array<Point>} waypoints
|
|
|
|
* @return {Point} the label position
|
|
|
|
*/
|
|
|
|
function getFlowLabelPosition(waypoints) {
|
|
|
|
|
|
|
|
// get the waypoints mid
|
|
|
|
var mid = waypoints.length / 2 - 1;
|
|
|
|
|
|
|
|
var first = waypoints[Math.floor(mid)];
|
|
|
|
var second = waypoints[Math.ceil(mid + 0.01)];
|
|
|
|
|
|
|
|
// get position
|
|
|
|
var position = getWaypointsMid(waypoints);
|
|
|
|
|
|
|
|
// calculate angle
|
|
|
|
var angle = Math.atan( (second.y - first.y) / (second.x - first.x) );
|
|
|
|
|
|
|
|
var x = position.x,
|
|
|
|
y = position.y;
|
|
|
|
|
|
|
|
if ( Math.abs(angle) < Math.PI / 2 ) {
|
2016-04-20 13:40:40 +00:00
|
|
|
y -= FLOW_LABEL_INDENT;
|
2016-04-19 14:50:42 +00:00
|
|
|
} else {
|
2016-04-20 13:40:40 +00:00
|
|
|
x += FLOW_LABEL_INDENT;
|
2016-04-19 14:50:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return { x: x, y: y };
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports.getFlowLabelPosition = getFlowLabelPosition;
|
2014-07-18 12:39:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the middle of a number of waypoints
|
|
|
|
*
|
|
|
|
* @param {Array<Point>} waypoints
|
|
|
|
* @return {Point} the mid point
|
|
|
|
*/
|
2015-09-08 12:38:50 +00:00
|
|
|
function getWaypointsMid(waypoints) {
|
2014-07-18 12:39:15 +00:00
|
|
|
|
|
|
|
var mid = waypoints.length / 2 - 1;
|
|
|
|
|
|
|
|
var first = waypoints[Math.floor(mid)];
|
|
|
|
var second = waypoints[Math.ceil(mid + 0.01)];
|
|
|
|
|
|
|
|
return {
|
|
|
|
x: first.x + (second.x - first.x) / 2,
|
|
|
|
y: first.y + (second.y - first.y) / 2
|
|
|
|
};
|
2015-09-08 12:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports.getWaypointsMid = getWaypointsMid;
|
2014-07-18 12:39:15 +00:00
|
|
|
|
|
|
|
|
2015-09-08 12:38:50 +00:00
|
|
|
function getExternalLabelMid(element) {
|
2014-07-23 16:53:33 +00:00
|
|
|
|
|
|
|
if (element.waypoints) {
|
2016-04-19 14:50:42 +00:00
|
|
|
return getFlowLabelPosition(element.waypoints);
|
2014-07-23 16:53:33 +00:00
|
|
|
} else {
|
|
|
|
return {
|
|
|
|
x: element.x + element.width / 2,
|
2014-09-15 12:41:26 +00:00
|
|
|
y: element.y + element.height + DEFAULT_LABEL_SIZE.height / 2
|
2014-07-23 16:53:33 +00:00
|
|
|
};
|
|
|
|
}
|
2015-09-08 12:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports.getExternalLabelMid = getExternalLabelMid;
|
|
|
|
|
2014-07-23 16:53:33 +00:00
|
|
|
|
2014-07-18 12:39:15 +00:00
|
|
|
/**
|
|
|
|
* Returns the bounds of an elements label, parsed from the elements DI or
|
|
|
|
* generated from its bounds.
|
|
|
|
*
|
|
|
|
* @param {BpmnElement} semantic
|
|
|
|
* @param {djs.model.Base} element
|
|
|
|
*/
|
|
|
|
module.exports.getExternalLabelBounds = function(semantic, element) {
|
|
|
|
|
|
|
|
var mid,
|
|
|
|
size,
|
|
|
|
bounds,
|
|
|
|
di = semantic.di,
|
|
|
|
label = di.label;
|
|
|
|
|
|
|
|
if (label && label.bounds) {
|
|
|
|
bounds = label.bounds;
|
|
|
|
|
|
|
|
size = {
|
2014-09-15 12:41:26 +00:00
|
|
|
width: Math.max(DEFAULT_LABEL_SIZE.width, bounds.width),
|
2014-07-18 12:39:15 +00:00
|
|
|
height: bounds.height
|
|
|
|
};
|
|
|
|
|
|
|
|
mid = {
|
|
|
|
x: bounds.x + bounds.width / 2,
|
2014-10-30 11:07:28 +00:00
|
|
|
y: bounds.y + bounds.height / 2
|
2014-07-18 12:39:15 +00:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
|
2014-07-23 16:53:33 +00:00
|
|
|
mid = getExternalLabelMid(element);
|
2014-07-18 12:39:15 +00:00
|
|
|
|
2014-08-03 12:30:53 +00:00
|
|
|
size = DEFAULT_LABEL_SIZE;
|
2014-07-18 12:39:15 +00:00
|
|
|
}
|
|
|
|
|
2015-02-02 13:46:21 +00:00
|
|
|
return assign({
|
2014-07-18 12:39:15 +00:00
|
|
|
x: mid.x - size.width / 2,
|
2014-09-08 17:03:39 +00:00
|
|
|
y: mid.y - size.height / 2
|
2014-07-18 12:39:15 +00:00
|
|
|
}, size);
|
2015-09-02 13:13:18 +00:00
|
|
|
};
|