UNPKG

choerodon-ui

Version:

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

210 lines (175 loc) 7.73 kB
"use strict"; var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = void 0; var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck")); var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass")); var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized")); var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits")); var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn")); var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf")); var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty")); var _react = _interopRequireWildcard(require("react")); var _propTypes = _interopRequireDefault(require("prop-types")); var _miniStore = require("mini-store"); var _ExpandIcon = _interopRequireDefault(require("./ExpandIcon")); 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 = (0, _getPrototypeOf2["default"])(Derived), result; if (isNativeReflectConstruct()) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; } var ExpandableRow = /*#__PURE__*/ function (_Component) { (0, _inherits2["default"])(ExpandableRow, _Component); var _super = _createSuper(ExpandableRow); function ExpandableRow() { var _this; (0, _classCallCheck2["default"])(this, ExpandableRow); for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } _this = _super.call.apply(_super, [this].concat(args)); (0, _defineProperty2["default"])((0, _assertThisInitialized2["default"])(_this), "hasExpandIcon", function (columnIndex) { var expandRowByClick = _this.props.expandRowByClick; return !_this.expandIconAsCell && !expandRowByClick && columnIndex === _this.expandIconColumnIndex; }); (0, _defineProperty2["default"])((0, _assertThisInitialized2["default"])(_this), "handleExpandChange", function (record, event) { var _this$props = _this.props, onExpandedChange = _this$props.onExpandedChange, expanded = _this$props.expanded, rowKey = _this$props.rowKey; if (_this.expandable) { onExpandedChange(!expanded, record, event, rowKey); } }); (0, _defineProperty2["default"])((0, _assertThisInitialized2["default"])(_this), "handleRowClick", function (record, index, event) { var _this$props2 = _this.props, expandRowByClick = _this$props2.expandRowByClick, onRowClick = _this$props2.onRowClick; if (expandRowByClick) { _this.handleExpandChange(record, event); } if (onRowClick) { onRowClick(record, index, event); } }); (0, _defineProperty2["default"])((0, _assertThisInitialized2["default"])(_this), "renderExpandIcon", function () { var _this$props3 = _this.props, prefixCls = _this$props3.prefixCls, expanded = _this$props3.expanded, record = _this$props3.record, needIndentSpaced = _this$props3.needIndentSpaced; return _react["default"].createElement(_ExpandIcon["default"], { expandable: _this.expandable, prefixCls: prefixCls, onExpand: _this.handleExpandChange, needIndentSpaced: needIndentSpaced, expanded: expanded, record: record }); }); (0, _defineProperty2["default"])((0, _assertThisInitialized2["default"])(_this), "renderExpandIconCell", function (cells) { if (!_this.expandIconAsCell) { return; } var prefixCls = _this.props.prefixCls; cells.push(_react["default"].createElement("td", { className: "".concat(prefixCls, "-expand-icon-cell"), key: "rc-table-expand-icon-cell" }, _this.renderExpandIcon())); }); return _this; } (0, _createClass2["default"])(ExpandableRow, [{ key: "componentWillUnmount", value: function componentWillUnmount() { this.handleDestroy(); } }, { key: "handleDestroy", value: function handleDestroy() { var _this$props4 = this.props, onExpandedChange = _this$props4.onExpandedChange, rowKey = _this$props4.rowKey, record = _this$props4.record; if (this.expandable) { onExpandedChange(false, record, null, rowKey, true); } } }, { key: "render", value: function render() { var _this$props5 = this.props, childrenColumnName = _this$props5.childrenColumnName, expandedRowRender = _this$props5.expandedRowRender, indentSize = _this$props5.indentSize, record = _this$props5.record, fixed = _this$props5.fixed, expanded = _this$props5.expanded; this.expandIconAsCell = fixed !== 'right' ? this.props.expandIconAsCell : false; this.expandIconColumnIndex = fixed !== 'right' ? this.props.expandIconColumnIndex : -1; var childrenData = record[childrenColumnName]; this.expandable = !!(childrenData || expandedRowRender); var expandableRowProps = { indentSize: indentSize, // not used in TableRow, but it's required to re-render TableRow when `expanded` changes expanded: expanded, onRowClick: this.handleRowClick, hasExpandIcon: this.hasExpandIcon, renderExpandIcon: this.renderExpandIcon, renderExpandIconCell: this.renderExpandIconCell }; return this.props.children(expandableRowProps); } }]); return ExpandableRow; }(_react.Component); (0, _defineProperty2["default"])(ExpandableRow, "propTypes", { prefixCls: _propTypes["default"].string.isRequired, rowKey: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number]).isRequired, fixed: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].bool]), record: _propTypes["default"].object.isRequired, indentSize: _propTypes["default"].number, needIndentSpaced: _propTypes["default"].bool.isRequired, expandRowByClick: _propTypes["default"].bool, expanded: _propTypes["default"].bool.isRequired, expandIconAsCell: _propTypes["default"].bool, expandIconColumnIndex: _propTypes["default"].number, childrenColumnName: _propTypes["default"].string, expandedRowRender: _propTypes["default"].func, onExpandedChange: _propTypes["default"].func.isRequired, onRowClick: _propTypes["default"].func, children: _propTypes["default"].func.isRequired }); var _default = (0, _miniStore.connect)(function (_ref, _ref2) { var expandedRowKeys = _ref.expandedRowKeys; var rowKey = _ref2.rowKey; return { expanded: expandedRowKeys.includes(rowKey) }; })(ExpandableRow); exports["default"] = _default; //# sourceMappingURL=ExpandableRow.js.map