133 lines
3.2 KiB
JavaScript
133 lines
3.2 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
var scrollbarVerticalSize;
|
|
var scrollbarHorizontalSize; // Measure scrollbar width for padding body during modal show/hide
|
|
|
|
var scrollbarMeasure = {
|
|
position: 'absolute',
|
|
top: '-9999px',
|
|
width: '50px',
|
|
height: '50px'
|
|
}; // This const is used for colgroup.col internal props. And should not provides to user.
|
|
|
|
exports.INTERNAL_COL_DEFINE = 'RC_TABLE_INTERNAL_COL_DEFINE';
|
|
|
|
function measureScrollbar(_ref) {
|
|
var _ref$direction = _ref.direction,
|
|
direction = _ref$direction === void 0 ? 'vertical' : _ref$direction,
|
|
prefixCls = _ref.prefixCls;
|
|
|
|
if (typeof document === 'undefined' || typeof window === 'undefined') {
|
|
return 0;
|
|
}
|
|
|
|
var isVertical = direction === 'vertical';
|
|
|
|
if (isVertical && scrollbarVerticalSize) {
|
|
return scrollbarVerticalSize;
|
|
}
|
|
|
|
if (!isVertical && scrollbarHorizontalSize) {
|
|
return scrollbarHorizontalSize;
|
|
}
|
|
|
|
var scrollDiv = document.createElement('div');
|
|
Object.keys(scrollbarMeasure).forEach(function (scrollProp) {
|
|
scrollDiv.style[scrollProp] = scrollbarMeasure[scrollProp];
|
|
}); // apply hide scrollbar className ahead
|
|
|
|
scrollDiv.className = "".concat(prefixCls, "-hide-scrollbar scroll-div-append-to-body"); // Append related overflow style
|
|
|
|
if (isVertical) {
|
|
scrollDiv.style.overflowY = 'scroll';
|
|
} else {
|
|
scrollDiv.style.overflowX = 'scroll';
|
|
}
|
|
|
|
document.body.appendChild(scrollDiv);
|
|
var size = 0;
|
|
|
|
if (isVertical) {
|
|
size = scrollDiv.offsetWidth - scrollDiv.clientWidth;
|
|
scrollbarVerticalSize = size;
|
|
} else {
|
|
size = scrollDiv.offsetHeight - scrollDiv.clientHeight;
|
|
scrollbarHorizontalSize = size;
|
|
}
|
|
|
|
document.body.removeChild(scrollDiv);
|
|
return size;
|
|
}
|
|
|
|
exports.measureScrollbar = measureScrollbar;
|
|
|
|
function debounce(func, wait, immediate) {
|
|
var timeout;
|
|
|
|
function debounceFunc() {
|
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
args[_key] = arguments[_key];
|
|
}
|
|
|
|
var context = this; // https://fb.me/react-event-pooling
|
|
|
|
if (args[0] && args[0].persist) {
|
|
args[0].persist();
|
|
}
|
|
|
|
var later = function later() {
|
|
timeout = null;
|
|
|
|
if (!immediate) {
|
|
func.apply(context, args);
|
|
}
|
|
};
|
|
|
|
var callNow = immediate && !timeout;
|
|
clearTimeout(timeout);
|
|
timeout = setTimeout(later, wait);
|
|
|
|
if (callNow) {
|
|
func.apply(context, args);
|
|
}
|
|
}
|
|
|
|
debounceFunc.cancel = function cancel() {
|
|
if (timeout) {
|
|
clearTimeout(timeout);
|
|
timeout = null;
|
|
}
|
|
};
|
|
|
|
return debounceFunc;
|
|
}
|
|
|
|
exports.debounce = debounce;
|
|
|
|
function remove(array, item) {
|
|
var index = array.indexOf(item);
|
|
var front = array.slice(0, index);
|
|
var last = array.slice(index + 1, array.length);
|
|
return front.concat(last);
|
|
}
|
|
|
|
exports.remove = remove;
|
|
/**
|
|
* Returns only data- and aria- key/value pairs
|
|
* @param {object} props
|
|
*/
|
|
|
|
function getDataAndAriaProps(props) {
|
|
return Object.keys(props).reduce(function (memo, key) {
|
|
if (key.substr(0, 5) === 'data-' || key.substr(0, 5) === 'aria-') {
|
|
memo[key] = props[key];
|
|
}
|
|
|
|
return memo;
|
|
}, {});
|
|
}
|
|
|
|
exports.getDataAndAriaProps = getDataAndAriaProps; |