@arco-design/web-react
Version:
Arco Design React UI Library.
91 lines (90 loc) • 4.05 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import React, { cloneElement, isValidElement } from 'react';
import ResizeObserver from 'resize-observer-polyfill';
import lodashThrottle from 'lodash/throttle';
import { callbackOriginRef, findDOMNode } from '../_util/react-dom';
import { supportRef } from './is';
var ResizeObserverComponent = /** @class */ (function (_super) {
__extends(ResizeObserverComponent, _super);
function ResizeObserverComponent() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.getRootElement = function () {
var getTargetDOMNode = _this.props.getTargetDOMNode;
return findDOMNode((getTargetDOMNode === null || getTargetDOMNode === void 0 ? void 0 : getTargetDOMNode()) || _this.rootDOMRef, _this);
};
_this.getRootDOMNode = function () {
return _this.getRootElement();
};
_this.componentWillUnmount = function () {
if (_this.resizeObserver) {
_this.destroyResizeObserver();
}
};
_this.createResizeObserver = function () {
var _a = _this.props.throttle, throttle = _a === void 0 ? true : _a;
var onResize = function (entry) {
var _a, _b;
(_b = (_a = _this.props).onResize) === null || _b === void 0 ? void 0 : _b.call(_a, entry);
};
var resizeHandler = throttle ? lodashThrottle(onResize) : onResize;
var firstExec = true; // 首次监听时,立即执行一次 onResize,之前行为保持一致,避免布局类组件出现闪动的情况
_this.resizeObserver = new ResizeObserver(function (entry) {
if (firstExec) {
firstExec = false;
onResize(entry);
}
resizeHandler(entry);
});
var targetNode = _this.getRootElement();
targetNode && _this.resizeObserver.observe(targetNode);
};
_this.destroyResizeObserver = function () {
_this.resizeObserver && _this.resizeObserver.disconnect();
_this.resizeObserver = null;
};
return _this;
}
ResizeObserverComponent.prototype.componentDidMount = function () {
if (!React.isValidElement(this.props.children)) {
console.warn('The children of ResizeObserver is invalid.');
}
else {
this.createResizeObserver();
}
};
ResizeObserverComponent.prototype.componentDidUpdate = function () {
if (!this.resizeObserver && this.getRootElement()) {
this.createResizeObserver();
}
};
ResizeObserverComponent.prototype.render = function () {
var _this = this;
var children = this.props.children;
if (supportRef(children) && isValidElement(children) && !this.props.getTargetDOMNode) {
return cloneElement(children, {
ref: function (node) {
_this.rootDOMRef = node;
callbackOriginRef(children, node);
},
});
}
this.rootDOMRef = null;
return this.props.children;
};
return ResizeObserverComponent;
}(React.Component));
export default ResizeObserverComponent;