UNPKG

@wufengteam/inputs

Version:

平台提供的右侧属性编辑器,需要在主工程中注册

106 lines 5.96 kB
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } } function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } var __rest = this && this.__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; }; import React, { useState } from 'react'; import { Button, Form, Input } from 'antd'; import { RightOutlined } from '@ant-design/icons'; import { cssPrefixCls } from '../utils'; import OptionSetModal from './components/OptionSetModal'; import "./index.css"; var OptionSetItem = function OptionSetItem(props) { // eslint-disable-next-line no-console // console.log('OptionSetItemProps', props); var onChange = props.onChange, _props$optionData = props.optionData, optionData = _props$optionData === void 0 ? {} : _props$optionData, wrapRef = props.wrapRef; var extraData = optionData.extraData, data = optionData.data; var _useState = useState(false), _useState2 = _slicedToArray(_useState, 2), visible = _useState2[0], setVisible = _useState2[1]; return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Input, { readOnly: true, size: "small", placeholder: "\u8BF7\u8BBE\u7F6E", suffix: /*#__PURE__*/React.createElement(Button, { type: "link", size: "small", onClick: function onClick() { return setVisible(true); } }, /*#__PURE__*/React.createElement(RightOutlined, null)), className: extraData ? 'clearable' : 'com', // 适配导入无extraData数据的情况加data兼容 value: extraData || data ? '自定义数据' : '' }), /*#__PURE__*/React.createElement(OptionSetModal, Object.assign({}, props, { optionData: optionData, visible: visible, wrapRef: wrapRef, title: "\u9009\u9879\u8BBE\u7F6E", onChange: onChange, onCancel: function onCancel() { return setVisible(false); } }))); }; var OptionSet = function OptionSet(props) { var _a, _b; // eslint-disable-next-line no-console // console.log('OptionSetProps', props); var label = props.label, name = props.name, required = props.required, rules = props.rules, selectedComp = props.selectedComp, filedIndex = props.filedIndex, other = __rest(props, ["label", "name", "required", "rules", "selectedComp", "filedIndex"]); // 选项数据 var optionData = {}; /** * 从selectedComp中取staticData解决value第一次为undefined的问题; * 同时在子表组件中使用选项设置控件获取staticData不一样,这里做了硬编码的兼容 */ if ((selectedComp === null || selectedComp === void 0 ? void 0 : selectedComp.compName) === 'EditableTable') { var tableItem = (_a = selectedComp === null || selectedComp === void 0 ? void 0 : selectedComp.props) === null || _a === void 0 ? void 0 : _a.tableItem; if (Array.isArray(tableItem) && tableItem.length > 0) { tableItem.find(function (item, index) { var _a, _b; if (((_a = item.props) === null || _a === void 0 ? void 0 : _a.staticData) && index === filedIndex) { optionData = (_b = item.props) === null || _b === void 0 ? void 0 : _b.staticData; return true; } return false; }); } } else { optionData = ((_b = selectedComp === null || selectedComp === void 0 ? void 0 : selectedComp.props) === null || _b === void 0 ? void 0 : _b.staticData) || {}; } return /*#__PURE__*/React.createElement("div", { className: "".concat(cssPrefixCls, "-static-data-box") }, /*#__PURE__*/React.createElement(Form.Item, { label: (selectedComp === null || selectedComp === void 0 ? void 0 : selectedComp.compName) === 'EditableTable' && required ? ( /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", null, label), /*#__PURE__*/React.createElement("span", { style: { marginLeft: '1px' }, className: "editor-rightprops-required" }, "*"))) : ( /*#__PURE__*/React.createElement("span", null, label)), name: name, rules: rules }, /*#__PURE__*/React.createElement(OptionSetItem, Object.assign({}, other, { optionData: optionData })))); }; export default OptionSet;