41 lines
2.0 KiB
JavaScript
41 lines
2.0 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.getAlignFromPlacement = getAlignFromPlacement;
|
|
exports.getAlignPopupClassName = getAlignPopupClassName;
|
|
|
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
|
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(source, true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(source).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
|
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
|
|
function isPointsEq(a1, a2, isAlignPoint) {
|
|
if (isAlignPoint) {
|
|
return a1[0] === a2[0];
|
|
}
|
|
|
|
return a1[0] === a2[0] && a1[1] === a2[1];
|
|
}
|
|
|
|
function getAlignFromPlacement(builtinPlacements, placementStr, align) {
|
|
var baseAlign = builtinPlacements[placementStr] || {};
|
|
return _objectSpread({}, baseAlign, {}, align);
|
|
}
|
|
|
|
function getAlignPopupClassName(builtinPlacements, prefixCls, align, isAlignPoint) {
|
|
var points = align.points;
|
|
var placements = Object.keys(builtinPlacements);
|
|
|
|
for (var i = 0; i < placements.length; i += 1) {
|
|
var placement = placements[i];
|
|
|
|
if (isPointsEq(builtinPlacements[placement].points, points, isAlignPoint)) {
|
|
return "".concat(prefixCls, "-placement-").concat(placement);
|
|
}
|
|
}
|
|
|
|
return '';
|
|
} |