UNPKG

form-render

Version:

通过 JSON Schema 生成标准 Form,常用于自定义搭建配置界面生成

62 lines 3.26 kB
import "antd/es/popover/style"; import _Popover from "antd/es/popover"; function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _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(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } } function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; } 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(r) { if (Array.isArray(r)) return r; } import { __rest } from "tslib"; import React, { useState, useRef } from 'react'; var TableCell = function TableCell(props) { var renderCore = props.renderCore, schema = props.schema, dataIndex = props.dataIndex, otherProps = __rest(props, ["renderCore", "schema", "dataIndex"]); var _useState = useState(null), _useState2 = _slicedToArray(_useState, 2), errorMsg = _useState2[0], setErrorMsg = _useState2[1]; var _useState3 = useState(), _useState4 = _slicedToArray(_useState3, 2), visible = _useState4[0], setVisible = _useState4[1]; var mouseRef = useRef(null); var onStatusChange = function onStatusChange(_, errors) { var message = errors[0] || null; setErrorMsg(message); if (mouseRef.current && message) { setVisible(true); } }; if (!schema.properties[dataIndex].onStatusChange) { schema.properties[dataIndex].onStatusChange = onStatusChange; } var popoverVisible = visible && errorMsg; var popoverProps = { open: popoverVisible }; if (window.antdVersion === 'v4') { popoverProps = { visible: popoverVisible }; } return /*#__PURE__*/React.createElement("div", { className: 'fr-table-cell-content', onMouseEnter: function onMouseEnter() { mouseRef.current = true; setVisible(true); }, onMouseLeave: function onMouseLeave() { mouseRef.current = false; setVisible(false); } }, /*#__PURE__*/React.createElement(_Popover, Object.assign({ overlayClassName: 'fr-popover-error', content: errorMsg, placement: 'topRight' }, popoverProps), renderCore(Object.assign(Object.assign({}, otherProps), { schema: schema })))); }; export default TableCell;