UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

82 lines (66 loc) 2.56 kB
import _extends from "@babel/runtime/helpers/extends"; import _defineProperty from "@babel/runtime/helpers/defineProperty"; import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties"; import _classCallCheck from "@babel/runtime/helpers/classCallCheck"; import _createClass from "@babel/runtime/helpers/createClass"; import _inherits from "@babel/runtime/helpers/inherits"; import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn"; import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf"; function _createSuper(Derived) { function isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } return function () { var Super = _getPrototypeOf(Derived), result; if (isNativeReflectConstruct()) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } import React, { Component } from 'react'; import classNames from 'classnames'; var LazyRenderBox = /*#__PURE__*/ function (_Component) { _inherits(LazyRenderBox, _Component); var _super = _createSuper(LazyRenderBox); function LazyRenderBox() { _classCallCheck(this, LazyRenderBox); return _super.apply(this, arguments); } _createClass(LazyRenderBox, [{ key: "shouldComponentUpdate", value: function shouldComponentUpdate(nextProps) { return !!nextProps.hiddenClassName || !nextProps.hidden; } }, { key: "render", value: function render() { var _this$props = this.props, hiddenClassName = _this$props.hiddenClassName, hidden = _this$props.hidden, className = _this$props.className, otherProps = _objectWithoutProperties(_this$props, ["hiddenClassName", "hidden", "className"]); var classString = classNames(className, _defineProperty({}, hiddenClassName, hiddenClassName && hidden)); return React.createElement("div", _extends({ className: classString }, otherProps)); } }]); return LazyRenderBox; }(Component); export { LazyRenderBox as default }; //# sourceMappingURL=LazyRenderBox.js.map