UNPKG

react-admin-kit

Version:

A react based UI components for admin system

206 lines (204 loc) 12.1 kB
var _excluded = ["labelKey", "valueKey", "type", "loadFunction", "nodeDisabled", "style", "value", "onChange", "queryParams", "noCache"]; function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; } function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } 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, _toPropertyKey(descriptor.key), descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); 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 } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); } function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { 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; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } 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 { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); } function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } import { TreeSelect } from 'antd'; import { isEqual } from 'lodash-es'; import { Component } from 'react'; import { getGlobal, setGlobal } from "../utils"; import { normalizeTreeSelect, withDisabled } from "../utils/tree"; 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, _this$props2$valueKey = _this$props2.valueKey, valueKey = _this$props2$valueKey === void 0 ? 'id' : _this$props2$valueKey, _this$props2$labelKey = _this$props2.labelKey, labelKey = _this$props2$labelKey === void 0 ? 'name' : _this$props2$labelKey, 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, normalizeTreeSelect(res, { titleKey: labelKey, valueKey: valueKey }))); if (onLoad) { onLoad(normalizeTreeSelect(res, { titleKey: labelKey, valueKey: valueKey })); } 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, _this$props3$valueKey = _this$props3.valueKey, valueKey = _this$props3$valueKey === void 0 ? 'id' : _this$props3$valueKey, _this$props3$labelKey = _this$props3.labelKey, labelKey = _this$props3$labelKey === void 0 ? 'name' : _this$props3$labelKey, onLoad = _this$props3.onLoad; _this.setState({ loading: true }); loadFunction(queryParams).then(function (res) { _this.setState({ dataSource: normalizeTreeSelect(res, { titleKey: labelKey, valueKey: valueKey }) }); if (onLoad) { onLoad(normalizeTreeSelect(res, { titleKey: labelKey, valueKey: valueKey })); } }).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 _this$props4 = this.props, labelKey = _this$props4.labelKey, valueKey = _this$props4.valueKey, type = _this$props4.type, loadFunction = _this$props4.loadFunction, nodeDisabled = _this$props4.nodeDisabled, _this$props4$style = _this$props4.style, style = _this$props4$style === void 0 ? {} : _this$props4$style, value = _this$props4.value, _onChange = _this$props4.onChange, queryParams = _this$props4.queryParams, noCache = _this$props4.noCache, rest = _objectWithoutProperties(_this$props4, _excluded); return /*#__PURE__*/_jsx(TreeSelect, _objectSpread(_objectSpread({ showSearch: true, treeNodeFilterProp: "title", allowClear: true, placeholder: "\u8BF7\u9009\u62E9" }, rest), {}, { style: _objectSpread({ width: '100%' }, style), loading: this.state.loading, value: value, onChange: function onChange(val, label, extra) { if (_onChange) _onChange(val, label, extra); }, treeData: withDisabled(this.state.dataSource || [], nodeDisabled) })); } }]); return BaseTreeSelect; }(Component); export default BaseTreeSelect;