318 lines
15 KiB
JavaScript
318 lines
15 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = void 0;
|
|
|
|
var React = _interopRequireWildcard(require("react"));
|
|
|
|
var PropTypes = _interopRequireWildcard(require("prop-types"));
|
|
|
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
|
|
var _omit = _interopRequireDefault(require("omit.js"));
|
|
|
|
var _spin = _interopRequireDefault(require("../spin"));
|
|
|
|
var _configProvider = require("../config-provider");
|
|
|
|
var _pagination = _interopRequireDefault(require("../pagination"));
|
|
|
|
var _grid = require("../grid");
|
|
|
|
var _Item = _interopRequireDefault(require("./Item"));
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
|
|
|
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
|
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
|
|
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
|
|
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
|
|
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(n); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
|
|
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); }
|
|
|
|
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
|
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
|
|
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
|
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
|
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
|
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
|
|
function _createSuper(Derived) { 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); }; }
|
|
|
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
|
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
|
|
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; } }
|
|
|
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
|
|
var __rest = void 0 && (void 0).__rest || function (s, e) {
|
|
var t = {};
|
|
|
|
for (var p in s) {
|
|
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
}
|
|
|
|
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
|
}
|
|
return t;
|
|
};
|
|
|
|
var List = /*#__PURE__*/function (_React$Component) {
|
|
_inherits(List, _React$Component);
|
|
|
|
var _super = _createSuper(List);
|
|
|
|
function List(props) {
|
|
var _this;
|
|
|
|
_classCallCheck(this, List);
|
|
|
|
_this = _super.call(this, props);
|
|
_this.defaultPaginationProps = {
|
|
current: 1,
|
|
total: 0
|
|
};
|
|
_this.keys = {};
|
|
_this.onPaginationChange = _this.triggerPaginationEvent('onChange');
|
|
_this.onPaginationShowSizeChange = _this.triggerPaginationEvent('onShowSizeChange');
|
|
|
|
_this.renderItem = function (item, index) {
|
|
var _this$props = _this.props,
|
|
renderItem = _this$props.renderItem,
|
|
rowKey = _this$props.rowKey;
|
|
if (!renderItem) return null;
|
|
var key;
|
|
|
|
if (typeof rowKey === 'function') {
|
|
key = rowKey(item);
|
|
} else if (typeof rowKey === 'string') {
|
|
key = item[rowKey];
|
|
} else {
|
|
key = item.key;
|
|
}
|
|
|
|
if (!key) {
|
|
key = "list-item-".concat(index);
|
|
}
|
|
|
|
_this.keys[index] = key;
|
|
return renderItem(item, index);
|
|
};
|
|
|
|
_this.renderEmpty = function (prefixCls, renderEmpty) {
|
|
var locale = _this.props.locale;
|
|
return /*#__PURE__*/React.createElement("div", {
|
|
className: "".concat(prefixCls, "-empty-text")
|
|
}, locale && locale.emptyText || renderEmpty('List'));
|
|
};
|
|
|
|
_this.renderList = function (_ref) {
|
|
var _classNames;
|
|
|
|
var getPrefixCls = _ref.getPrefixCls,
|
|
renderEmpty = _ref.renderEmpty,
|
|
direction = _ref.direction;
|
|
var _this$state = _this.state,
|
|
paginationCurrent = _this$state.paginationCurrent,
|
|
paginationSize = _this$state.paginationSize;
|
|
|
|
var _a = _this.props,
|
|
customizePrefixCls = _a.prefixCls,
|
|
bordered = _a.bordered,
|
|
split = _a.split,
|
|
className = _a.className,
|
|
children = _a.children,
|
|
itemLayout = _a.itemLayout,
|
|
loadMore = _a.loadMore,
|
|
pagination = _a.pagination,
|
|
grid = _a.grid,
|
|
_a$dataSource = _a.dataSource,
|
|
dataSource = _a$dataSource === void 0 ? [] : _a$dataSource,
|
|
size = _a.size,
|
|
header = _a.header,
|
|
footer = _a.footer,
|
|
loading = _a.loading,
|
|
rest = __rest(_a, ["prefixCls", "bordered", "split", "className", "children", "itemLayout", "loadMore", "pagination", "grid", "dataSource", "size", "header", "footer", "loading"]);
|
|
|
|
var prefixCls = getPrefixCls('list', customizePrefixCls);
|
|
var loadingProp = loading;
|
|
|
|
if (typeof loadingProp === 'boolean') {
|
|
loadingProp = {
|
|
spinning: loadingProp
|
|
};
|
|
}
|
|
|
|
var isLoading = loadingProp && loadingProp.spinning; // large => lg
|
|
// small => sm
|
|
|
|
var sizeCls = '';
|
|
|
|
switch (size) {
|
|
case 'large':
|
|
sizeCls = 'lg';
|
|
break;
|
|
|
|
case 'small':
|
|
sizeCls = 'sm';
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
var classString = (0, _classnames["default"])(prefixCls, className, (_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-vertical"), itemLayout === 'vertical'), _defineProperty(_classNames, "".concat(prefixCls, "-").concat(sizeCls), sizeCls), _defineProperty(_classNames, "".concat(prefixCls, "-split"), split), _defineProperty(_classNames, "".concat(prefixCls, "-bordered"), bordered), _defineProperty(_classNames, "".concat(prefixCls, "-loading"), isLoading), _defineProperty(_classNames, "".concat(prefixCls, "-grid"), grid), _defineProperty(_classNames, "".concat(prefixCls, "-something-after-last-item"), _this.isSomethingAfterLastItem()), _defineProperty(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _classNames));
|
|
|
|
var paginationProps = _extends(_extends(_extends({}, _this.defaultPaginationProps), {
|
|
total: dataSource.length,
|
|
current: paginationCurrent,
|
|
pageSize: paginationSize
|
|
}), pagination || {});
|
|
|
|
var largestPage = Math.ceil(paginationProps.total / paginationProps.pageSize);
|
|
|
|
if (paginationProps.current > largestPage) {
|
|
paginationProps.current = largestPage;
|
|
}
|
|
|
|
var paginationContent = pagination ? /*#__PURE__*/React.createElement("div", {
|
|
className: "".concat(prefixCls, "-pagination")
|
|
}, /*#__PURE__*/React.createElement(_pagination["default"], _extends({}, paginationProps, {
|
|
onChange: _this.onPaginationChange,
|
|
onShowSizeChange: _this.onPaginationShowSizeChange
|
|
}))) : null;
|
|
|
|
var splitDataSource = _toConsumableArray(dataSource);
|
|
|
|
if (pagination) {
|
|
if (dataSource.length > (paginationProps.current - 1) * paginationProps.pageSize) {
|
|
splitDataSource = _toConsumableArray(dataSource).splice((paginationProps.current - 1) * paginationProps.pageSize, paginationProps.pageSize);
|
|
}
|
|
}
|
|
|
|
var childrenContent;
|
|
childrenContent = isLoading && /*#__PURE__*/React.createElement("div", {
|
|
style: {
|
|
minHeight: 53
|
|
}
|
|
});
|
|
|
|
if (splitDataSource.length > 0) {
|
|
var items = splitDataSource.map(function (item, index) {
|
|
return _this.renderItem(item, index);
|
|
});
|
|
var childrenList = [];
|
|
React.Children.forEach(items, function (child, index) {
|
|
childrenList.push(React.cloneElement(child, {
|
|
key: _this.keys[index]
|
|
}));
|
|
});
|
|
childrenContent = grid ? /*#__PURE__*/React.createElement(_grid.Row, {
|
|
gutter: grid.gutter
|
|
}, childrenList) : /*#__PURE__*/React.createElement("ul", {
|
|
className: "".concat(prefixCls, "-items")
|
|
}, childrenList);
|
|
} else if (!children && !isLoading) {
|
|
childrenContent = _this.renderEmpty(prefixCls, renderEmpty);
|
|
}
|
|
|
|
var paginationPosition = paginationProps.position || 'bottom';
|
|
return /*#__PURE__*/React.createElement("div", _extends({
|
|
className: classString
|
|
}, (0, _omit["default"])(rest, ['rowKey', 'renderItem', 'locale'])), (paginationPosition === 'top' || paginationPosition === 'both') && paginationContent, header && /*#__PURE__*/React.createElement("div", {
|
|
className: "".concat(prefixCls, "-header")
|
|
}, header), /*#__PURE__*/React.createElement(_spin["default"], loadingProp, childrenContent, children), footer && /*#__PURE__*/React.createElement("div", {
|
|
className: "".concat(prefixCls, "-footer")
|
|
}, footer), loadMore || (paginationPosition === 'bottom' || paginationPosition === 'both') && paginationContent);
|
|
};
|
|
|
|
var pagination = props.pagination;
|
|
var paginationObj = pagination && _typeof(pagination) === 'object' ? pagination : {};
|
|
_this.state = {
|
|
paginationCurrent: paginationObj.defaultCurrent || 1,
|
|
paginationSize: paginationObj.defaultPageSize || 10
|
|
};
|
|
return _this;
|
|
}
|
|
|
|
_createClass(List, [{
|
|
key: "getChildContext",
|
|
value: function getChildContext() {
|
|
return {
|
|
grid: this.props.grid,
|
|
itemLayout: this.props.itemLayout
|
|
};
|
|
}
|
|
}, {
|
|
key: "triggerPaginationEvent",
|
|
value: function triggerPaginationEvent(eventName) {
|
|
var _this2 = this;
|
|
|
|
return function (page, pageSize) {
|
|
var pagination = _this2.props.pagination;
|
|
|
|
_this2.setState({
|
|
paginationCurrent: page,
|
|
paginationSize: pageSize
|
|
});
|
|
|
|
if (pagination && pagination[eventName]) {
|
|
pagination[eventName](page, pageSize);
|
|
}
|
|
};
|
|
}
|
|
}, {
|
|
key: "isSomethingAfterLastItem",
|
|
value: function isSomethingAfterLastItem() {
|
|
var _this$props2 = this.props,
|
|
loadMore = _this$props2.loadMore,
|
|
pagination = _this$props2.pagination,
|
|
footer = _this$props2.footer;
|
|
return !!(loadMore || pagination || footer);
|
|
}
|
|
}, {
|
|
key: "render",
|
|
value: function render() {
|
|
return /*#__PURE__*/React.createElement(_configProvider.ConfigConsumer, null, this.renderList);
|
|
}
|
|
}]);
|
|
|
|
return List;
|
|
}(React.Component);
|
|
|
|
exports["default"] = List;
|
|
List.Item = _Item["default"];
|
|
List.childContextTypes = {
|
|
grid: PropTypes.any,
|
|
itemLayout: PropTypes.string
|
|
};
|
|
List.defaultProps = {
|
|
dataSource: [],
|
|
bordered: false,
|
|
split: true,
|
|
loading: false,
|
|
pagination: false
|
|
}; |