react-admin-kit
Version:
A react based UI components for admin system
198 lines (196 loc) • 7.85 kB
JavaScript
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
import _createClass from "@babel/runtime/helpers/esm/createClass";
import _assertThisInitialized from "@babel/runtime/helpers/esm/assertThisInitialized";
import _inherits from "@babel/runtime/helpers/esm/inherits";
import _createSuper from "@babel/runtime/helpers/esm/createSuper";
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
var _excluded = ["type", "loadFunction", "nodeDisabled", "queryParams", "noCache", "style", "value", "onChange", "showSearch", "treeNodeFilterProp", "filterTreeNode", "allowClear", "placeholder"];
import { TreeSelect } from 'antd';
import isEqual from 'lodash/isEqual';
import { Component } from 'react';
import { getGlobal, normalizeTree, setGlobal } from "../utils";
import { CacheName, CacheStatusName } from "./index";
import { jsx as _jsx } from "react/jsx-runtime";
var BaseTreeSelect = /*#__PURE__*/function (_Component) {
_inherits(BaseTreeSelect, _Component);
var _super = _createSuper(BaseTreeSelect);
function BaseTreeSelect(props) {
var _this;
_classCallCheck(this, BaseTreeSelect);
_this = _super.call(this, props);
_defineProperty(_assertThisInitialized(_this), "reRender", function (e) {
if (e.detail.type === _this.props.type && !_this.isNoCache()) {
_this.setState({
loading: false,
dataSource: getGlobal(CacheName, _this.props.type) || []
});
setGlobal(CacheStatusName, _defineProperty({}, _this.props.type, false));
if (_this.props.onLoad) {
_this.props.onLoad(getGlobal(CacheName, _this.props.type) || []);
}
}
});
// 判断是不是不要缓存
_defineProperty(_assertThisInitialized(_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;
});
_defineProperty(_assertThisInitialized(_this), "handleLoadData", function () {
if (_this.isNoCache()) {
_this.loadDataWithoutCache();
} else {
_this.loadDataForCache();
}
});
_defineProperty(_assertThisInitialized(_this), "loadDataForCache", function () {
var _this$props2 = _this.props,
type = _this$props2.type,
loadFunction = _this$props2.loadFunction,
onLoad = _this$props2.onLoad;
// 如果同时有多个请求, 后面的请求return掉
if (getGlobal(CacheStatusName, type)) {
_this.setState({
loading: true
});
return;
}
// 如果window.selectData中有数据则不请求后台
// 同时对于依赖参数变化的请求不缓存
if (getGlobal(CacheName, type)) {
if (onLoad) {
onLoad(getGlobal(CacheName, type));
}
return;
}
setGlobal(CacheStatusName, _defineProperty({}, type, true));
_this.setState({
loading: true
});
loadFunction({}).then(function (res) {
setGlobal(CacheName, _defineProperty({}, type, res));
var event = new CustomEvent('treeSelectGlobalUpdate', {
detail: {
type: type
}
});
document.dispatchEvent(event);
}).finally(function () {
_this.setState({
loading: false
});
});
});
_defineProperty(_assertThisInitialized(_this), "loadDataWithoutCache", function () {
var _this$props3 = _this.props,
loadFunction = _this$props3.loadFunction,
queryParams = _this$props3.queryParams,
onLoad = _this$props3.onLoad;
_this.setState({
loading: true
});
loadFunction(queryParams).then(function (res) {
_this.setState({
dataSource: res
});
if (onLoad) {
onLoad(res);
}
}).finally(function () {
_this.setState({
loading: false
});
});
});
_this.state = {
loading: false,
dataSource: getGlobal(CacheName, props.type) || []
};
return _this;
}
_createClass(BaseTreeSelect, [{
key: "componentDidMount",
value: function componentDidMount() {
this.handleLoadData();
document.addEventListener('treeSelectGlobalUpdate', this.reRender);
}
}, {
key: "componentWillUnmount",
value: function componentWillUnmount() {
document.removeEventListener('treeSelectGlobalUpdate', this.reRender);
}
}, {
key: "componentDidUpdate",
value: function componentDidUpdate(prevProps) {
if (!isEqual(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,
nodeDisabled = _this$props4.nodeDisabled,
queryParams = _this$props4.queryParams,
noCache = _this$props4.noCache,
_this$props4$style = _this$props4.style,
style = _this$props4$style === void 0 ? {} : _this$props4$style,
value = _this$props4.value,
_onChange = _this$props4.onChange,
_this$props4$showSear = _this$props4.showSearch,
showSearch = _this$props4$showSear === void 0 ? true : _this$props4$showSear,
_this$props4$treeNode = _this$props4.treeNodeFilterProp,
treeNodeFilterProp = _this$props4$treeNode === void 0 ? 'title' : _this$props4$treeNode,
_this$props4$filterTr = _this$props4.filterTreeNode,
filterTreeNode = _this$props4$filterTr === 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$filterTr,
_this$props4$allowCle = _this$props4.allowClear,
allowClear = _this$props4$allowCle === void 0 ? true : _this$props4$allowCle,
_this$props4$placehol = _this$props4.placeholder,
placeholder = _this$props4$placehol === void 0 ? '请选择' : _this$props4$placehol,
rest = _objectWithoutProperties(_this$props4, _excluded);
return /*#__PURE__*/_jsx(TreeSelect, _objectSpread(_objectSpread({}, rest), {}, {
showSearch: showSearch,
treeNodeFilterProp: treeNodeFilterProp,
filterTreeNode: filterTreeNode,
allowClear: allowClear,
placeholder: placeholder,
style: _objectSpread({
width: '100%'
}, style),
loading: this.state.loading,
value: value,
onChange: function onChange(val, label, extra) {
if (_onChange) _onChange(val, label, extra);
},
treeData: normalizeTree(this.state.dataSource || [], function (item) {
return nodeDisabled ? {
disabled: nodeDisabled(item)
} : {};
})
}));
}
}]);
return BaseTreeSelect;
}(Component);
export default BaseTreeSelect;