Latest updates from IceHrmPro
This commit is contained in:
32
web/node_modules/rc-trigger/es/utils/alignUtil.js
generated
vendored
Normal file
32
web/node_modules/rc-trigger/es/utils/alignUtil.js
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
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];
|
||||
}
|
||||
|
||||
export function getAlignFromPlacement(builtinPlacements, placementStr, align) {
|
||||
var baseAlign = builtinPlacements[placementStr] || {};
|
||||
return _objectSpread({}, baseAlign, {}, align);
|
||||
}
|
||||
export 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 '';
|
||||
}
|
||||
Reference in New Issue
Block a user