You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
273 lines
10 KiB
273 lines
10 KiB
"use strict";
|
|
|
|
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = exports.ListConsumer = exports.ListContext = void 0;
|
|
|
|
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
|
|
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
|
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
|
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
|
|
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
|
|
|
var React = _interopRequireWildcard(require("react"));
|
|
|
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
|
|
var _spin = _interopRequireDefault(require("../spin"));
|
|
|
|
var _useBreakpoint = _interopRequireDefault(require("../grid/hooks/useBreakpoint"));
|
|
|
|
var _responsiveObserve = require("../_util/responsiveObserve");
|
|
|
|
var _configProvider = require("../config-provider");
|
|
|
|
var _pagination = _interopRequireDefault(require("../pagination"));
|
|
|
|
var _grid = require("../grid");
|
|
|
|
var _Item = _interopRequireDefault(require("./Item"));
|
|
|
|
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 ListContext = /*#__PURE__*/React.createContext({});
|
|
exports.ListContext = ListContext;
|
|
var ListConsumer = ListContext.Consumer;
|
|
exports.ListConsumer = ListConsumer;
|
|
|
|
function List(_a) {
|
|
var _classNames;
|
|
|
|
var _a$pagination = _a.pagination,
|
|
pagination = _a$pagination === void 0 ? false : _a$pagination,
|
|
customizePrefixCls = _a.prefixCls,
|
|
_a$bordered = _a.bordered,
|
|
bordered = _a$bordered === void 0 ? false : _a$bordered,
|
|
_a$split = _a.split,
|
|
split = _a$split === void 0 ? true : _a$split,
|
|
className = _a.className,
|
|
children = _a.children,
|
|
itemLayout = _a.itemLayout,
|
|
loadMore = _a.loadMore,
|
|
grid = _a.grid,
|
|
_a$dataSource = _a.dataSource,
|
|
dataSource = _a$dataSource === void 0 ? [] : _a$dataSource,
|
|
size = _a.size,
|
|
header = _a.header,
|
|
footer = _a.footer,
|
|
_a$loading = _a.loading,
|
|
loading = _a$loading === void 0 ? false : _a$loading,
|
|
rowKey = _a.rowKey,
|
|
renderItem = _a.renderItem,
|
|
locale = _a.locale,
|
|
rest = __rest(_a, ["pagination", "prefixCls", "bordered", "split", "className", "children", "itemLayout", "loadMore", "grid", "dataSource", "size", "header", "footer", "loading", "rowKey", "renderItem", "locale"]);
|
|
|
|
var paginationObj = pagination && (0, _typeof2["default"])(pagination) === 'object' ? pagination : {};
|
|
|
|
var _React$useState = React.useState(paginationObj.defaultCurrent || 1),
|
|
_React$useState2 = (0, _slicedToArray2["default"])(_React$useState, 2),
|
|
paginationCurrent = _React$useState2[0],
|
|
setPaginationCurrent = _React$useState2[1];
|
|
|
|
var _React$useState3 = React.useState(paginationObj.defaultPageSize || 10),
|
|
_React$useState4 = (0, _slicedToArray2["default"])(_React$useState3, 2),
|
|
paginationSize = _React$useState4[0],
|
|
setPaginationSize = _React$useState4[1];
|
|
|
|
var _React$useContext = React.useContext(_configProvider.ConfigContext),
|
|
getPrefixCls = _React$useContext.getPrefixCls,
|
|
renderEmpty = _React$useContext.renderEmpty,
|
|
direction = _React$useContext.direction;
|
|
|
|
var defaultPaginationProps = {
|
|
current: 1,
|
|
total: 0
|
|
};
|
|
var keys = {};
|
|
|
|
var triggerPaginationEvent = function triggerPaginationEvent(eventName) {
|
|
return function (page, pageSize) {
|
|
setPaginationCurrent(page);
|
|
setPaginationSize(pageSize);
|
|
|
|
if (pagination && pagination[eventName]) {
|
|
pagination[eventName](page, pageSize);
|
|
}
|
|
};
|
|
};
|
|
|
|
var onPaginationChange = triggerPaginationEvent('onChange');
|
|
var onPaginationShowSizeChange = triggerPaginationEvent('onShowSizeChange');
|
|
|
|
var renderInnerItem = function renderInnerItem(item, index) {
|
|
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);
|
|
}
|
|
|
|
keys[index] = key;
|
|
return renderItem(item, index);
|
|
};
|
|
|
|
var isSomethingAfterLastItem = function isSomethingAfterLastItem() {
|
|
return !!(loadMore || pagination || footer);
|
|
};
|
|
|
|
var renderEmptyFunc = function renderEmptyFunc(prefixCls, renderEmptyHandler) {
|
|
return /*#__PURE__*/React.createElement("div", {
|
|
className: "".concat(prefixCls, "-empty-text")
|
|
}, locale && locale.emptyText || renderEmptyHandler('List'));
|
|
};
|
|
|
|
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 = {}, (0, _defineProperty2["default"])(_classNames, "".concat(prefixCls, "-vertical"), itemLayout === 'vertical'), (0, _defineProperty2["default"])(_classNames, "".concat(prefixCls, "-").concat(sizeCls), sizeCls), (0, _defineProperty2["default"])(_classNames, "".concat(prefixCls, "-split"), split), (0, _defineProperty2["default"])(_classNames, "".concat(prefixCls, "-bordered"), bordered), (0, _defineProperty2["default"])(_classNames, "".concat(prefixCls, "-loading"), isLoading), (0, _defineProperty2["default"])(_classNames, "".concat(prefixCls, "-grid"), grid), (0, _defineProperty2["default"])(_classNames, "".concat(prefixCls, "-something-after-last-item"), isSomethingAfterLastItem()), (0, _defineProperty2["default"])(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _classNames));
|
|
var paginationProps = (0, _extends2["default"])((0, _extends2["default"])((0, _extends2["default"])({}, 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"], (0, _extends2["default"])({}, paginationProps, {
|
|
onChange: onPaginationChange,
|
|
onShowSizeChange: onPaginationShowSizeChange
|
|
}))) : null;
|
|
var splitDataSource = (0, _toConsumableArray2["default"])(dataSource);
|
|
|
|
if (pagination) {
|
|
if (dataSource.length > (paginationProps.current - 1) * paginationProps.pageSize) {
|
|
splitDataSource = (0, _toConsumableArray2["default"])(dataSource).splice((paginationProps.current - 1) * paginationProps.pageSize, paginationProps.pageSize);
|
|
}
|
|
}
|
|
|
|
var screens = (0, _useBreakpoint["default"])();
|
|
var currentBreakpoint = React.useMemo(function () {
|
|
for (var i = 0; i < _responsiveObserve.responsiveArray.length; i += 1) {
|
|
var breakpoint = _responsiveObserve.responsiveArray[i];
|
|
|
|
if (screens[breakpoint]) {
|
|
return breakpoint;
|
|
}
|
|
}
|
|
|
|
return undefined;
|
|
}, [screens]);
|
|
var colStyle = React.useMemo(function () {
|
|
if (!grid) {
|
|
return undefined;
|
|
}
|
|
|
|
var columnCount = currentBreakpoint && grid[currentBreakpoint] ? grid[currentBreakpoint] : grid.column;
|
|
|
|
if (columnCount) {
|
|
return {
|
|
width: "".concat(100 / columnCount, "%"),
|
|
maxWidth: "".concat(100 / columnCount, "%")
|
|
};
|
|
}
|
|
}, [grid === null || grid === void 0 ? void 0 : grid.column, currentBreakpoint]);
|
|
var childrenContent = isLoading && /*#__PURE__*/React.createElement("div", {
|
|
style: {
|
|
minHeight: 53
|
|
}
|
|
});
|
|
|
|
if (splitDataSource.length > 0) {
|
|
var items = splitDataSource.map(function (item, index) {
|
|
return renderInnerItem(item, index);
|
|
});
|
|
var childrenList = React.Children.map(items, function (child, index) {
|
|
return /*#__PURE__*/React.createElement("div", {
|
|
key: keys[index],
|
|
style: colStyle
|
|
}, child);
|
|
});
|
|
childrenContent = grid ? /*#__PURE__*/React.createElement(_grid.Row, {
|
|
gutter: grid.gutter
|
|
}, childrenList) : /*#__PURE__*/React.createElement("ul", {
|
|
className: "".concat(prefixCls, "-items")
|
|
}, items);
|
|
} else if (!children && !isLoading) {
|
|
childrenContent = renderEmptyFunc(prefixCls, renderEmpty);
|
|
}
|
|
|
|
var paginationPosition = paginationProps.position || 'bottom';
|
|
return /*#__PURE__*/React.createElement(ListContext.Provider, {
|
|
value: {
|
|
grid: grid,
|
|
itemLayout: itemLayout
|
|
}
|
|
}, /*#__PURE__*/React.createElement("div", (0, _extends2["default"])({
|
|
className: classString
|
|
}, rest), (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));
|
|
}
|
|
|
|
List.Item = _Item["default"];
|
|
var _default = List;
|
|
exports["default"] = _default; |