react-admin-kit
Version:
A react based UI components for admin system
339 lines (331 loc) • 13.6 kB
JavaScript
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
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 _createSuper2 = _interopRequireDefault(require("@babel/runtime/helpers/createSuper"));
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
var _antd = require("antd");
var _debounce = _interopRequireDefault(require("lodash/debounce"));
var _isEqual = _interopRequireDefault(require("lodash/isEqual"));
var _react = require("react");
var _utils = require("../../utils");
var _ = require("..");
var _jsxRuntime = require("react/jsx-runtime");
var _excluded = ["type", "loadFunction", "onChange", "queryParams", "noCache", "showSearch", "optionFilterProp", "allowClear", "searchDebounceValue"];
/**
* 分页选择组件
*
*/
var BasePaginationSelect = /*#__PURE__*/function (_Component) {
(0, _inherits2.default)(BasePaginationSelect, _Component);
var _super = (0, _createSuper2.default)(BasePaginationSelect);
function BasePaginationSelect(props) {
var _this;
(0, _classCallCheck2.default)(this, BasePaginationSelect);
_this = _super.call(this, props);
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "isLoaded", void 0);
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "reRender", function (e) {
if (e.detail.type === _this.props.type && !_this.isNoCache()) {
_this.setState({
loading: false,
dataSource: (0, _utils.getGlobal)(_.SelectName, _this.props.type) || [],
total: (0, _utils.getGlobal)(_.SelectTotalName, _this.props.type) || 0,
current: (0, _utils.getGlobal)(_.SelectCurrentName, _this.props.type) || 1
});
if (_this.props.onLoad && !_this.isLoaded) {
_this.props.onLoad((0, _utils.getGlobal)(_.SelectName, _this.props.type) || [], (0, _utils.getGlobal)(_.SelectTotalName, _this.props.type) || 0);
_this.isLoaded = true;
}
(0, _utils.setGlobal)(_.SelectStatusName, (0, _defineProperty2.default)({}, _this.props.type, false));
}
});
// 判断是不是不要缓存
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "isNoCache", function () {
// queryParams为依赖列表, 依赖列表有值则不缓存
var _this$props = _this.props,
_this$props$queryPara = _this$props.queryParams,
queryParams = _this$props$queryPara === void 0 ? {} : _this$props$queryPara,
noCache = _this$props.noCache;
return Object.keys(queryParams).length > 0 || noCache;
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "handleLoadData", function () {
if (_this.isNoCache()) {
_this.loadDataWithoutCache();
} else {
_this.loadDataForCache();
}
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "loadDataForCache", function () {
var _this$props2 = _this.props,
type = _this$props2.type,
loadFunction = _this$props2.loadFunction,
onLoad = _this$props2.onLoad;
var current = _this.state.current;
// 如果同时有多个请求, 后面的请求return掉
if ((0, _utils.getGlobal)(_.SelectStatusName, type)) {
_this.setState({
loading: true
});
return;
}
// 如果window.selectData中有数据则不请求后台
// 同时对于依赖参数变化的请求不缓存
if ((0, _utils.getGlobal)(_.SelectName, type)) {
if (onLoad && !_this.isLoaded) {
onLoad((0, _utils.getGlobal)(_.SelectName, type) || [], (0, _utils.getGlobal)(_.SelectTotalName, type));
_this.isLoaded = true;
}
return;
}
(0, _utils.setGlobal)(_.SelectStatusName, (0, _defineProperty2.default)({}, type, true));
_this.setState({
loading: true
});
loadFunction({
current: current
}).then(function (res) {
(0, _utils.setGlobal)(_.SelectName, (0, _defineProperty2.default)({}, type, res.data));
(0, _utils.setGlobal)(_.SelectTotalName, (0, _defineProperty2.default)({}, type, res.total));
(0, _utils.setGlobal)(_.SelectCurrentName, (0, _defineProperty2.default)({}, type, current));
var event = new CustomEvent('selectGlobalUpdate', {
detail: {
type: type
}
});
document.dispatchEvent(event);
}).finally(function () {
_this.setState({
loading: false
});
});
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "loadDataWithoutCache", function () {
var _this$props3 = _this.props,
loadFunction = _this$props3.loadFunction,
_this$props3$queryPar = _this$props3.queryParams,
queryParams = _this$props3$queryPar === void 0 ? {} : _this$props3$queryPar,
onLoad = _this$props3.onLoad;
_this.setState({
loading: true
});
loadFunction(queryParams).then(function (res) {
_this.setState({
dataSource: res.data,
total: res.total
});
if (onLoad) {
onLoad(res.data, res.total);
}
}).finally(function () {
_this.setState({
loading: false
});
});
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "getTotal", function () {
if (_this.isNoCache()) {
return _this.state.total;
}
return (0, _utils.getGlobal)(_.SelectTotalName, _this.props.type);
});
// 恢复初始状态
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "reset", function () {
var type = _this.props.type;
_this.setState({
searchValue: undefined,
dataSource: (0, _utils.getGlobal)(_.SelectName, type) || [],
total: (0, _utils.getGlobal)(_.SelectTotalName, type),
current: (0, _utils.getGlobal)(_.SelectCurrentName, type) || 1
});
// bugfix: 针对没缓存的需要重新获取数据
if (_this.isNoCache()) {
_this.handleLoadData();
}
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "handleOnChange", function (val, option) {
var onChange = _this.props.onChange;
// 如果是点的clear
if (!val) {
_this.reset();
if (onChange) {
onChange(val, option);
}
return;
}
/**
* 0.1.21
* 2022-11-9
* 改进: 搜索后如果用户进行了选择, 搜索值要清空
*/
if (val && _this.state.searchValue) {
_this.reset();
}
if (onChange) {
onChange(val, option);
}
});
// 下一页
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "handleUpdateData", function () {
var _this$state = _this.state,
current = _this$state.current,
searchValue = _this$state.searchValue,
dataSource = _this$state.dataSource;
var _this$props4 = _this.props,
_this$props4$queryPar = _this$props4.queryParams,
queryParams = _this$props4$queryPar === void 0 ? {} : _this$props4$queryPar,
type = _this$props4.type;
_this.setState({
loading: true
});
_this.props.loadFunction((0, _objectSpread2.default)((0, _objectSpread2.default)({}, queryParams), {}, {
current: current,
searchValue: searchValue
})).then(function (res) {
_this.setState({
dataSource: dataSource.concat(res.data),
loading: false,
total: res.total
});
/**
* 非search的时候把返回的数据存到缓存
*/
if (!searchValue) {
(0, _utils.setGlobal)(_.SelectName, (0, _defineProperty2.default)({}, _this.props.type, dataSource.concat(res.data)));
(0, _utils.setGlobal)(_.SelectCurrentName, (0, _defineProperty2.default)({}, _this.props.type, current));
var event = new CustomEvent('selectGlobalUpdate', {
detail: {
type: type
}
});
document.dispatchEvent(event);
}
}).catch(function () {
_this.setState({
loading: false
});
});
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "handleSearchData", function () {
var searchValue = _this.state.searchValue;
var _this$props$queryPara2 = _this.props.queryParams,
queryParams = _this$props$queryPara2 === void 0 ? {} : _this$props$queryPara2;
_this.setState({
loading: true
});
_this.props.loadFunction((0, _objectSpread2.default)((0, _objectSpread2.default)({}, queryParams), {}, {
current: 1,
searchValue: searchValue
})).then(function (res) {
_this.setState({
dataSource: res.data,
loading: false,
total: res.total
});
}).catch(function () {
_this.setState({
loading: false
});
});
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "handlePopupScroll", function (e) {
e.persist();
var target = e.target;
var current = _this.state.current;
if (_this.toBottomNeedLoad(target)) {
_this.setState({
current: current + 1
}, _this.handleUpdateData);
}
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "toBottomNeedLoad", function (target) {
var _this$state2 = _this.state,
dataSource = _this$state2.dataSource,
loading = _this$state2.loading;
return !loading && _this.toBottom(target) && dataSource.length < _this.getTotal();
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "toBottom", function (target) {
return target.scrollTop + target.clientHeight + 10 > target.scrollHeight;
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "handleSearch", function (value) {
if (value) {
_this.setState({
searchValue: value,
current: 1
}, function () {
return _this.handleSearchData();
});
return;
}
// 没值的话恢复初始状态
_this.reset();
});
_this.state = {
dataSource: (0, _utils.getGlobal)(_.SelectName, props.type) || [],
total: (0, _utils.getGlobal)(_.SelectTotalName, props.type) || 0,
loading: false,
searchValue: '',
current: (0, _utils.getGlobal)(_.SelectCurrentName, props.type) || 1
};
_this.isLoaded = false;
return _this;
}
(0, _createClass2.default)(BasePaginationSelect, [{
key: "componentDidMount",
value: function componentDidMount() {
this.handleLoadData();
document.addEventListener('selectGlobalUpdate', this.reRender);
}
}, {
key: "componentWillUnmount",
value: function componentWillUnmount() {
document.removeEventListener('selectGlobalUpdate', this.reRender);
}
}, {
key: "componentDidUpdate",
value: function componentDidUpdate(prevProps) {
if (!(0, _isEqual.default)(prevProps.queryParams, this.props.queryParams)) {
this.handleLoadData();
}
}
}, {
key: "render",
value: function render() {
var _this$props5 = this.props,
type = _this$props5.type,
loadFunction = _this$props5.loadFunction,
onChange = _this$props5.onChange,
queryParams = _this$props5.queryParams,
noCache = _this$props5.noCache,
_this$props5$showSear = _this$props5.showSearch,
showSearch = _this$props5$showSear === void 0 ? true : _this$props5$showSear,
optionFilterProp = _this$props5.optionFilterProp,
_this$props5$allowCle = _this$props5.allowClear,
allowClear = _this$props5$allowCle === void 0 ? true : _this$props5$allowCle,
_this$props5$searchDe = _this$props5.searchDebounceValue,
searchDebounceValue = _this$props5$searchDe === void 0 ? 300 : _this$props5$searchDe,
rest = (0, _objectWithoutProperties2.default)(_this$props5, _excluded);
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_antd.Select, (0, _objectSpread2.default)((0, _objectSpread2.default)({}, rest), {}, {
loading: this.state.loading,
onChange: this.handleOnChange,
options: this.state.dataSource
// 搜索部分
,
showSearch: showSearch,
allowClear: allowClear && !this.state.loading,
filterOption: false,
onPopupScroll: this.handlePopupScroll,
onSearch: (0, _debounce.default)(this.handleSearch, searchDebounceValue)
}));
}
}]);
return BasePaginationSelect;
}(_react.Component);
var _default = exports.default = BasePaginationSelect;