@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
89 lines • 5.05 kB
JavaScript
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;
};
/* eslint-disable no-console */
import React, { useMemo, useState } from 'react';
import { Button, Form, Input } from 'antd';
import { RightOutlined } from '@ant-design/icons';
import { cssPrefixCls } from '../utils';
import TreeOptionSetModal from './compontens/TreeOptionSetModal';
import "./index.css";
var TreeOptionSetItem = function TreeOptionSetItem(props) {
// console.log('TreeOptionSetItemProps', props);
var value = props.value,
onChange = props.onChange,
propKey = props.propKey,
selectedComp = props.selectedComp,
wrapRef = props.wrapRef;
var _useState = useState(false),
_useState2 = _slicedToArray(_useState, 2),
isTreeOptionSetModalVisible = _useState2[0],
setTreeOptionSetModalVisible = _useState2[1];
var currentValue = useMemo(function () {
if ((selectedComp === null || selectedComp === void 0 ? void 0 : selectedComp.type) === 'Cascader') {
return value === null || value === void 0 ? void 0 : value.data;
}
return value;
}, [value]);
return /*#__PURE__*/React.createElement("div", {
className: "container"
}, /*#__PURE__*/React.createElement(Input, {
readOnly: true,
size: "small",
placeholder: "\u8BF7\u9009\u62E9",
suffix: /*#__PURE__*/React.createElement(Button, {
type: "link",
size: "small",
onClick: function onClick() {
return setTreeOptionSetModalVisible(true);
}
}, /*#__PURE__*/React.createElement(RightOutlined, null)),
className: currentValue ? 'clearable' : 'com',
value: currentValue && Array.isArray(currentValue) && currentValue.length > 0 ? '自定义数据' : ''
}), /*#__PURE__*/React.createElement(TreeOptionSetModal, {
visible: isTreeOptionSetModalVisible,
onCancel: function onCancel() {
setTreeOptionSetModalVisible(false);
},
value: value,
onChange: onChange,
propKey: propKey,
selectedComp: selectedComp,
wrapRef: wrapRef
}));
};
var TreeOptionSet = function TreeOptionSet(props) {
// console.log('TreeOptionSet', props);
var label = props.label,
name = props.name,
required = props.required,
rules = props.rules,
selectedComp = props.selectedComp,
other = __rest(props, ["label", "name", "required", "rules", "selectedComp"]);
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(TreeOptionSetItem, Object.assign({
selectedComp: selectedComp
}, other))));
};
export default TreeOptionSet;