react-admin-kit
Version:
A react based UI components for admin system
192 lines (189 loc) • 8.18 kB
JavaScript
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
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 _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", "queryParams", "noCache", "showSearch", "optionFilterProp", "filterOption", "allowClear"];
var BaseSelect = /*#__PURE__*/function (_Component) {
(0, _inherits2.default)(BaseSelect, _Component);
var _super = (0, _createSuper2.default)(BaseSelect);
function BaseSelect(props) {
var _this;
(0, _classCallCheck2.default)(this, BaseSelect);
_this = _super.call(this, props);
(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
});
if (_this.props.onLoad) {
_this.props.onLoad((0, _utils.getGlobal)(_.SelectName, _this.props.type) || [], (0, _utils.getGlobal)(_.SelectTotalName, _this.props.type) || 0);
}
(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;
// 如果同时有多个请求, 后面的请求return掉
if ((0, _utils.getGlobal)(_.SelectStatusName, type)) {
_this.setState({
loading: true
});
return;
}
// 如果window.selectData中有数据则不请求后台
// 同时对于依赖参数变化的请求不缓存
if ((0, _utils.getGlobal)(_.SelectName, type)) {
if (onLoad) {
onLoad((0, _utils.getGlobal)(_.SelectName, type) || []);
}
return;
}
(0, _utils.setGlobal)(_.SelectStatusName, (0, _defineProperty2.default)({}, type, true));
_this.setState({
loading: true
});
loadFunction({}).then(function (res) {
(0, _utils.setGlobal)(_.SelectName, (0, _defineProperty2.default)({}, type, res.data));
(0, _utils.setGlobal)(_.SelectTotalName, (0, _defineProperty2.default)({}, type, res.total));
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
});
});
});
_this.state = {
loading: false,
dataSource: (0, _utils.getGlobal)(_.SelectName, props.type) || []
};
return _this;
}
(0, _createClass2.default)(BaseSelect, [{
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 _this2 = this;
var _this$props4 = this.props,
type = _this$props4.type,
loadFunction = _this$props4.loadFunction,
queryParams = _this$props4.queryParams,
noCache = _this$props4.noCache,
_this$props4$showSear = _this$props4.showSearch,
showSearch = _this$props4$showSear === void 0 ? true : _this$props4$showSear,
_this$props4$optionFi = _this$props4.optionFilterProp,
optionFilterProp = _this$props4$optionFi === void 0 ? 'label' : _this$props4$optionFi,
_this$props4$filterOp = _this$props4.filterOption,
filterOption = _this$props4$filterOp === void 0 ? function (inputValue, option) {
var _ref = _this2.props.fieldNames || {},
_ref$value = _ref.value,
value = _ref$value === void 0 ? 'value' : _ref$value,
_ref$label = _ref.label,
label = _ref$label === void 0 ? 'label' : _ref$label;
if (option) {
var valueStr = (option[value] || '').toString().toLowerCase();
var labelStr = (option[label] || '').toString().toLowerCase();
return valueStr.includes(inputValue.toLowerCase()) || labelStr.includes(inputValue.toLowerCase());
} else {
return false;
}
} : _this$props4$filterOp,
_this$props4$allowCle = _this$props4.allowClear,
allowClear = _this$props4$allowCle === void 0 ? true : _this$props4$allowCle,
rest = (0, _objectWithoutProperties2.default)(_this$props4, _excluded);
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_antd.Select, (0, _objectSpread2.default)((0, _objectSpread2.default)({}, rest), {}, {
loading: this.state.loading,
options: this.state.dataSource
// 搜索部分
,
showSearch: showSearch,
optionFilterProp: optionFilterProp,
filterOption: filterOption,
allowClear: allowClear
}));
}
}]);
return BaseSelect;
}(_react.Component);
var _default = exports.default = BaseSelect;