66 lines
2.3 KiB
JavaScript
66 lines
2.3 KiB
JavaScript
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); }
|
|
|
|
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); }
|
|
|
|
function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object(arr) || Object.prototype.toString.call(arr) === "[object Arguments]")) { return; } var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
|
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
|
|
import ResizeObserver from 'resize-observer-polyfill';
|
|
import contains from "rc-util/es/Dom/contains";
|
|
export function isSamePoint(prev, next) {
|
|
if (prev === next) return true;
|
|
if (!prev || !next) return false;
|
|
|
|
if ('pageX' in next && 'pageY' in next) {
|
|
return prev.pageX === next.pageX && prev.pageY === next.pageY;
|
|
}
|
|
|
|
if ('clientX' in next && 'clientY' in next) {
|
|
return prev.clientX === next.clientX && prev.clientY === next.clientY;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
export function restoreFocus(activeElement, container) {
|
|
// Focus back if is in the container
|
|
if (activeElement !== document.activeElement && contains(container, activeElement)) {
|
|
activeElement.focus();
|
|
}
|
|
}
|
|
export function monitorResize(element, callback) {
|
|
var prevWidth = null;
|
|
var prevHeight = null;
|
|
|
|
function onResize(_ref) {
|
|
var _ref2 = _slicedToArray(_ref, 1),
|
|
target = _ref2[0].target;
|
|
|
|
var _target$getBoundingCl = target.getBoundingClientRect(),
|
|
width = _target$getBoundingCl.width,
|
|
height = _target$getBoundingCl.height;
|
|
|
|
var fixedWidth = Math.floor(width);
|
|
var fixedHeight = Math.floor(height);
|
|
|
|
if (prevWidth !== fixedWidth || prevHeight !== fixedHeight) {
|
|
callback({
|
|
width: fixedWidth,
|
|
height: fixedHeight
|
|
});
|
|
}
|
|
|
|
prevWidth = fixedWidth;
|
|
prevHeight = fixedHeight;
|
|
}
|
|
|
|
var resizeObserver = new ResizeObserver(onResize);
|
|
|
|
if (element) {
|
|
resizeObserver.observe(element);
|
|
}
|
|
|
|
return function () {
|
|
resizeObserver.disconnect();
|
|
};
|
|
} |