devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
502 lines (494 loc) • 18.8 kB
JavaScript
/**
* DevExtreme (esm/viz/series/points/label.js)
* Version: 21.1.4
* Build date: Mon Jun 21 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import formatHelper from "../../../format_helper";
import {
degreesToRadians as _degreesToRadians,
patchFontOptions as _patchFontOptions,
getCosAndSin as _getCosAndSin,
rotateBBox as _rotateBBox
} from "../../core/utils";
import {
each
} from "../../../core/utils/iterator";
import {
extend
} from "../../../core/utils/extend";
var _format = formatHelper.format;
var _math = Math;
var _round = _math.round;
var _floor = _math.floor;
var _abs = _math.abs;
var CONNECTOR_LENGTH = 12;
var LABEL_BACKGROUND_PADDING_X = 8;
var LABEL_BACKGROUND_PADDING_Y = 4;
function getClosestCoord(point, coords) {
var closestDistance = 1 / 0;
var closestCoord;
each(coords, (function(_, coord) {
var x = point[0] - coord[0];
var y = point[1] - coord[1];
var distance = x * x + y * y;
if (distance < closestDistance) {
closestDistance = distance;
closestCoord = coord
}
}));
return [_floor(closestCoord[0]), _floor(closestCoord[1])]
}
function getCrossCoord(rect, coord, indexOffset) {
return (coord - rect[0 + indexOffset]) / (rect[2 + indexOffset] - rect[0 + indexOffset]) * (rect[3 - indexOffset] - rect[1 - indexOffset]) + rect[1 - indexOffset]
}
var barPointStrategy = {
isLabelInside: function(labelPoint, figure) {
var xc = labelPoint.x + labelPoint.width / 2;
var yc = labelPoint.y + labelPoint.height / 2;
return figure.x <= xc && xc <= figure.x + figure.width && figure.y <= yc && yc <= figure.y + figure.height
},
prepareLabelPoints: function(bBox, rotatedBBox, isHorizontal, angle, figureCenter) {
var x1 = rotatedBBox.x;
var xc = x1 + rotatedBBox.width / 2;
var x2 = x1 + rotatedBBox.width - 1;
var y1 = rotatedBBox.y;
var yc = y1 + rotatedBBox.height / 2;
var y2 = y1 + rotatedBBox.height - 1;
var labelPoints;
var isRectangular = _abs(angle) % 90 === 0;
if (figureCenter[0] > x1 && figureCenter[0] < x2) {
if (isRectangular) {
labelPoints = [
[figureCenter[0], _abs(figureCenter[1] - y1) < _abs(figureCenter[1] - y2) ? y1 : y2]
]
} else {
labelPoints = [
[figureCenter[0], getCrossCoord([x1, y1, x2, y2], figureCenter[0], 0)]
]
}
} else if (figureCenter[1] > y1 && figureCenter[1] < y2) {
if (isRectangular) {
labelPoints = [
[_abs(figureCenter[0] - x1) < _abs(figureCenter[0] - x2) ? x1 : x2, figureCenter[1]]
]
} else {
labelPoints = [
[getCrossCoord([x1, y1, x2, y2], figureCenter[1], 1), figureCenter[1]]
]
}
} else if (isRectangular) {
labelPoints = [
[x1, y1],
[isHorizontal ? x1 : xc, isHorizontal ? yc : y1],
[x2, y1],
[x1, y2],
[isHorizontal ? x2 : xc, isHorizontal ? yc : y2],
[x2, y2]
]
} else {
labelPoints = [
[xc, yc]
]
}
return labelPoints
},
isHorizontal: function(bBox, figure) {
return bBox.x > figure.x + figure.width || bBox.x + bBox.width < figure.x
},
getFigureCenter: function(figure) {
return [_floor(figure.x + figure.width / 2), _floor(figure.y + figure.height / 2)]
},
findFigurePoint: function(figure, labelPoint) {
var figureCenter = barPointStrategy.getFigureCenter(figure);
var point = getClosestCoord(labelPoint, [
[figure.x, figureCenter[1]],
[figureCenter[0], figure.y + figure.height],
[figure.x + figure.width, figureCenter[1]],
[figureCenter[0], figure.y]
]);
return point
},
adjustPoints: function(points) {
var lineIsVertical = _abs(points[1] - points[3]) <= 1;
var lineIsHorizontal = _abs(points[0] - points[2]) <= 1;
if (lineIsHorizontal) {
points[0] = points[2]
}
if (lineIsVertical) {
points[1] = points[3]
}
return points
}
};
var symbolPointStrategy = {
isLabelInside: function() {
return false
},
prepareLabelPoints: barPointStrategy.prepareLabelPoints,
isHorizontal: function(bBox, figure) {
return bBox.x > figure.x + figure.r || bBox.x + bBox.width < figure.x - figure.r
},
getFigureCenter: function(figure) {
return [figure.x, figure.y]
},
findFigurePoint: function(figure, labelPoint) {
var angle = Math.atan2(figure.y - labelPoint[1], labelPoint[0] - figure.x);
return [_round(figure.x + figure.r * Math.cos(angle)), _round(figure.y - figure.r * Math.sin(angle))]
},
adjustPoints: barPointStrategy.adjustPoints
};
var piePointStrategy = {
isLabelInside: function(_0, _1, isOutside) {
return !isOutside
},
prepareLabelPoints: function(bBox, rotatedBBox, isHorizontal, angle) {
var xl = bBox.x;
var xr = xl + bBox.width;
var xc = xl + _round(bBox.width / 2);
var yt = bBox.y;
var yb = yt + bBox.height;
var yc = yt + _round(bBox.height / 2);
var points = [
[
[xl, yt],
[xr, yt]
],
[
[xr, yt],
[xr, yb]
],
[
[xr, yb],
[xl, yb]
],
[
[xl, yb],
[xl, yt]
]
];
var cosSin = _getCosAndSin(angle);
if (0 === angle) {
points = isHorizontal ? [
[xl, yc],
[xr, yc]
] : [
[xc, yt],
[xc, yb]
]
} else {
points = points.map((function(pair) {
return pair.map((function(point) {
return [_round((point[0] - xc) * cosSin.cos + (point[1] - yc) * cosSin.sin + xc), _round(-(point[0] - xc) * cosSin.sin + (point[1] - yc) * cosSin.cos + yc)]
}))
})).reduce((function(r, pair) {
var point1x = pair[0][0];
var point1y = pair[0][1];
var point2x = pair[1][0];
var point2y = pair[1][1];
if (isHorizontal) {
if (point1y >= yc && yc >= point2y || point1y <= yc && yc <= point2y) {
r.push([(yc - point1y) * (point2x - point1x) / (point2y - point1y) + point1x, yc])
}
} else if (point1x >= xc && xc >= point2x || point1x <= xc && xc <= point2x) {
r.push([xc, (xc - point1x) * (point2y - point1y) / (point2x - point1x) + point1y])
}
return r
}), [])
}
return points
},
isHorizontal: function(bBox, figure) {
return bBox.x > figure.x || figure.x > bBox.x + bBox.width
},
getFigureCenter: symbolPointStrategy.getFigureCenter,
findFigurePoint: function(figure, labelPoint, isHorizontal) {
if (!isHorizontal) {
return [figure.x, figure.y]
}
var labelX = labelPoint[0];
var x = _round(figure.x + (figure.y - labelPoint[1]) / Math.tan(_degreesToRadians(figure.angle)));
var points = [figure.x, figure.y, x, labelPoint[1]];
if (!(figure.x <= x && x <= labelX) && !(labelX <= x && x <= figure.x)) {
if (_abs(figure.x - labelX) < CONNECTOR_LENGTH) {
points = [figure.x, figure.y]
} else if (figure.x <= labelX) {
points[2] = figure.x + CONNECTOR_LENGTH
} else {
points[2] = figure.x - CONNECTOR_LENGTH
}
}
return points
},
adjustPoints: function(points) {
return points
}
};
function selectStrategy(figure) {
return void 0 !== figure.angle && piePointStrategy || void 0 !== figure.r && symbolPointStrategy || barPointStrategy
}
function disposeItem(obj, field) {
obj[field] && obj[field].dispose();
obj[field] = null
}
function checkBackground(background) {
return background && (background.fill && "none" !== background.fill || background["stroke-width"] > 0 && background.stroke && "none" !== background.stroke)
}
function checkConnector(connector) {
return connector && connector["stroke-width"] > 0 && connector.stroke && "none" !== connector.stroke
}
function formatText(data, options) {
var format = options.format;
data.valueText = _format(data.value, format);
data.argumentText = _format(data.argument, options.argumentFormat);
if (void 0 !== data.percent) {
data.percentText = _format(data.percent, {
type: "percent",
precision: format && format.percentPrecision
})
}
if (void 0 !== data.total) {
data.totalText = _format(data.total, format)
}
if (void 0 !== data.openValue) {
data.openValueText = _format(data.openValue, format)
}
if (void 0 !== data.closeValue) {
data.closeValueText = _format(data.closeValue, format)
}
if (void 0 !== data.lowValue) {
data.lowValueText = _format(data.lowValue, format)
}
if (void 0 !== data.highValue) {
data.highValueText = _format(data.highValue, format)
}
if (void 0 !== data.reductionValue) {
data.reductionValueText = _format(data.reductionValue, format)
}
return options.customizeText ? options.customizeText.call(data, data) : data.valueText
}
export function Label(renderSettings) {
this._renderer = renderSettings.renderer;
this._container = renderSettings.labelsGroup;
this._point = renderSettings.point;
this._strategy = renderSettings.strategy;
this._rowCount = 1
}
Label.prototype = {
constructor: Label,
setColor: function(color) {
this._color = color
},
setOptions: function(options) {
this._options = options
},
setData: function(data) {
this._data = data
},
setDataField: function(fieldName, fieldValue) {
this._data = this._data || {};
this._data[fieldName] = fieldValue
},
getData: function() {
return this._data
},
setFigureToDrawConnector: function(figure) {
this._figure = figure
},
dispose: function() {
disposeItem(this, "_group");
this._data = this._options = this._textContent = this._visible = this._insideGroup = this._text = this._background = this._connector = this._figure = null
},
_setVisibility: function(value, state) {
this._group && this._group.attr({
visibility: value
});
this._visible = state
},
isVisible: function() {
return this._visible
},
hide: function(holdInvisible) {
this._holdVisibility = !!holdInvisible;
this._hide()
},
_hide: function() {
this._setVisibility("hidden", false)
},
show: function(holdVisible) {
var correctPosition = !this._drawn;
if (this._point.hasValue()) {
this._holdVisibility = !!holdVisible;
this._show();
correctPosition && this._point.correctLabelPosition(this)
}
},
_show: function() {
var renderer = this._renderer;
var container = this._container;
var options = this._options || {};
var text = this._textContent = formatText(this._data, this._options) || null;
if (text) {
if (!this._group) {
this._group = renderer.g().append(container);
this._insideGroup = renderer.g().append(this._group);
this._text = renderer.text("", 0, 0).append(this._insideGroup)
}
this._text.css(options.attributes ? _patchFontOptions(options.attributes.font) : {});
if (checkBackground(options.background)) {
this._background = this._background || renderer.rect().append(this._insideGroup).toBackground();
this._background.attr(options.background);
this._color && this._background.attr({
fill: this._color
})
} else {
disposeItem(this, "_background")
}
if (checkConnector(options.connector)) {
this._connector = this._connector || renderer.path([], "line").sharp().append(this._group).toBackground();
this._connector.attr(options.connector);
this._color && this._connector.attr({
stroke: this._color
})
} else {
disposeItem(this, "_connector")
}
this._text.attr({
text: text,
align: options.textAlignment,
class: options.cssClass
});
this._updateBackground(this._text.getBBox());
this._setVisibility("visible", true);
this._drawn = true
} else {
this._hide()
}
},
_getLabelVisibility: function(isVisible) {
return this._holdVisibility ? this.isVisible() : isVisible
},
draw: function(isVisible) {
if (this._getLabelVisibility(isVisible)) {
this._show();
this._point && this._point.correctLabelPosition(this)
} else {
this._drawn = false;
this._hide()
}
return this
},
_updateBackground: function(bBox) {
if (this._background) {
bBox.x -= LABEL_BACKGROUND_PADDING_X;
bBox.y -= LABEL_BACKGROUND_PADDING_Y;
bBox.width += 2 * LABEL_BACKGROUND_PADDING_X;
bBox.height += 2 * LABEL_BACKGROUND_PADDING_Y;
this._background.attr(bBox)
}
this._bBoxWithoutRotation = extend({}, bBox);
var rotationAngle = this._options.rotationAngle || 0;
this._insideGroup.rotate(rotationAngle, bBox.x + bBox.width / 2, bBox.y + bBox.height / 2);
bBox = _rotateBBox(bBox, [bBox.x + bBox.width / 2, bBox.y + bBox.height / 2], -rotationAngle);
this._bBox = bBox
},
getFigureCenter() {
var figure = this._figure;
var strategy = this._strategy || selectStrategy(figure);
return strategy.getFigureCenter(figure)
},
_getConnectorPoints: function() {
var figure = this._figure;
var options = this._options;
var strategy = this._strategy || selectStrategy(figure);
var bBox = this._shiftBBox(this._bBoxWithoutRotation);
var rotatedBBox = this.getBoundingRect();
var labelPoint;
var points = [];
var isHorizontal;
if (!strategy.isLabelInside(bBox, figure, "inside" !== options.position)) {
isHorizontal = strategy.isHorizontal(bBox, figure);
var figureCenter = this.getFigureCenter();
points = strategy.prepareLabelPoints(bBox, rotatedBBox, isHorizontal, -options.rotationAngle || 0, figureCenter);
labelPoint = getClosestCoord(figureCenter, points);
points = strategy.findFigurePoint(figure, labelPoint, isHorizontal);
points = points.concat(labelPoint)
}
return strategy.adjustPoints(points)
},
fit: function(maxWidth) {
var padding = this._background ? 2 * LABEL_BACKGROUND_PADDING_X : 0;
var rowCountChanged = false;
if (this._text) {
var result = this._text.setMaxSize(maxWidth - padding, void 0, this._options);
var rowCount = result.rowCount;
if (0 === rowCount) {
rowCount = 1
}
if (rowCount !== this._rowCount) {
rowCountChanged = true;
this._rowCount = rowCount
}
result.textIsEmpty && disposeItem(this, "_background")
}
this._updateBackground(this._text.getBBox());
return rowCountChanged
},
resetEllipsis: function() {
this._text && this._text.restoreText();
this._updateBackground(this._text.getBBox())
},
setTrackerData: function(point) {
this._text.data({
"chart-data-point": point
});
this._background && this._background.data({
"chart-data-point": point
})
},
hideInsideLabel: function(coords) {
return this._point.hideInsideLabel(this, coords)
},
getPoint() {
return this._point
},
shift: function(x, y) {
if (this._textContent) {
this._insideGroup.attr({
translateX: this._x = _round(x - this._bBox.x),
translateY: this._y = _round(y - this._bBox.y)
});
if (this._connector) {
this._connector.attr({
points: this._getConnectorPoints()
})
}
}
return this
},
getBoundingRect: function() {
return this._shiftBBox(this._bBox)
},
_shiftBBox: function(bBox) {
return this._textContent ? {
x: bBox.x + this._x,
y: bBox.y + this._y,
width: bBox.width,
height: bBox.height
} : {}
},
getLayoutOptions: function() {
var options = this._options;
return {
alignment: options.alignment,
background: checkBackground(options.background),
horizontalOffset: options.horizontalOffset,
verticalOffset: options.verticalOffset,
radialOffset: options.radialOffset,
position: options.position,
connectorOffset: (checkConnector(options.connector) ? CONNECTOR_LENGTH : 0) + (checkBackground(options.background) ? LABEL_BACKGROUND_PADDING_X : 0)
}
}
};