SourceTermAnalysisSystem_vue/node_modules/@antv/x6/lib/registry/attr/align.js
2026-05-15 10:22:44 +08:00

44 lines
1.7 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.resetOffset = exports.yAlign = exports.xAlign = void 0;
const x6_common_1 = require("@antv/x6-common");
const x6_geometry_1 = require("@antv/x6-geometry");
// `x-align` when set to `middle` causes centering of the subelement around its new x coordinate.
// `x-align` when set to `right` uses the x coordinate as referenced to the right of the bbox.
exports.xAlign = {
offset: offsetWrapper('x', 'width', 'right'),
};
// `y-align` when set to `middle` causes centering of the subelement around its new y coordinate.
// `y-align` when set to `bottom` uses the y coordinate as referenced to the bottom of the bbox.
exports.yAlign = {
offset: offsetWrapper('y', 'height', 'bottom'),
};
exports.resetOffset = {
offset(val, { refBBox }) {
return val ? { x: -refBBox.x, y: -refBBox.y } : { x: 0, y: 0 };
},
};
function offsetWrapper(axis, dimension, corner) {
return (value, { refBBox }) => {
const point = new x6_geometry_1.Point();
let delta;
if (value === 'middle') {
delta = refBBox[dimension] / 2;
}
else if (value === corner) {
delta = refBBox[dimension];
}
else if (typeof value === 'number' && Number.isFinite(value)) {
delta = value > -1 && value < 1 ? -refBBox[dimension] * value : -value;
}
else if (x6_common_1.NumberExt.isPercentage(value)) {
delta = (refBBox[dimension] * parseFloat(value)) / 100;
}
else {
delta = 0;
}
point[axis] = -(refBBox[axis] + delta);
return point;
};
}
//# sourceMappingURL=align.js.map