@antv/g2
Version:
the Grammar of Graphics in Javascript
68 lines • 2.62 kB
JavaScript
;
/**
* @file utils of label
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.checkShapeOverlap = exports.getOverlapArea = exports.getlLabelBackgroundInfo = exports.findLabelTextShape = void 0;
var util_1 = require("@antv/util");
var transform_1 = require("../../../util/transform");
/**
* 查找 Label Group 中的文本 shape 对象
* @param label
*/
function findLabelTextShape(label) {
return label.find(function (el) { return el.get('type') === 'text'; });
}
exports.findLabelTextShape = findLabelTextShape;
/**
* 获取标签背景信息: box (无旋转) + rotation (旋转角度)
*/
function getlLabelBackgroundInfo(labelGroup, labelItem, padding) {
if (padding === void 0) { padding = [0, 0, 0, 0]; }
var content = labelGroup.getChildren()[0];
if (content) {
var labelShape = content.clone();
// revert rotate
if (labelItem.rotate) {
transform_1.rotate(labelShape, -labelItem.rotate);
}
// use `getCanvasBBox`, because if Shape is been translated, `getBBox` is not the actual box position
var _a = labelShape.getCanvasBBox(), x = _a.x, y = _a.y, width = _a.width, height = _a.height;
labelShape.destroy();
var boxPadding = padding;
if (util_1.isNil(boxPadding)) {
boxPadding = [2, 2, 2, 2];
}
else if (util_1.isNumber(boxPadding)) {
boxPadding = new Array(4).fill(boxPadding);
}
return {
x: x - boxPadding[3],
y: y - boxPadding[0],
width: width + boxPadding[1] + boxPadding[3],
height: height + boxPadding[0] + boxPadding[2],
rotation: labelItem.rotate || 0,
};
}
}
exports.getlLabelBackgroundInfo = getlLabelBackgroundInfo;
/**
* 计算两个矩形之间的堆叠区域面积
*/
function getOverlapArea(a, b, margin) {
if (margin === void 0) { margin = 0; }
var xOverlap = Math.max(0, Math.min(a.x + a.width + margin, b.x + b.width + margin) - Math.max(a.x - margin, b.x - margin));
var yOverlap = Math.max(0, Math.min(a.y + a.height + margin, b.y + b.height + margin) - Math.max(a.y - margin, b.y - margin));
return xOverlap * yOverlap;
}
exports.getOverlapArea = getOverlapArea;
/** 检测是否和已布局的堆叠 */
function checkShapeOverlap(cur, dones) {
var box = cur.getBBox();
return util_1.some(dones, function (done) {
var target = done.getBBox();
return getOverlapArea(box, target, 2) > 0;
});
}
exports.checkShapeOverlap = checkShapeOverlap;
//# sourceMappingURL=index.js.map