react-json-schema-editor-antd
Version:
Json Schema Editor
77 lines (76 loc) • 3.86 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; }
import { Flex, Input } from 'antd';
import cn from 'classnames';
import React, { memo, useState } from 'react';
import { useTranslation } from 'react-i18next';
var Description = function Description(props) {
var _useTranslation = useTranslation(),
t = _useTranslation.t;
var isHidden = props.isHidden,
isRepeat = props.isRepeat,
isTypeDisabled = props.isTypeDisabled,
schemaDescription = props.schemaDescription,
setSchemaDescription = props.setSchemaDescription,
updateSchema = props.updateSchema,
namePath = props.namePath;
// 新增:用于控制 mock 显示/编辑状态
var _useState = useState(false),
_useState2 = _slicedToArray(_useState, 2),
isDescHovered = _useState2[0],
setIsDescHovered = _useState2[1];
var _useState3 = useState(false),
_useState4 = _slicedToArray(_useState3, 2),
isDescFocused = _useState4[0],
setIsDescFocused = _useState4[1];
return /*#__PURE__*/React.createElement(Flex, {
flex: '80px',
onMouseEnter: function onMouseEnter() {
return setIsDescHovered(true);
},
onMouseLeave: function onMouseLeave() {
if (!isDescFocused) {
setIsDescHovered(false);
}
}
}, isDescHovered || isDescFocused ? /*#__PURE__*/React.createElement(Input, {
className: cn('schema-desc-input', {
'is-hidden': isHidden,
'is-repeat': isRepeat
}),
style: {
paddingRight: 0,
paddingLeft: '6px'
},
disabled: isTypeDisabled,
placeholder: t('desc'),
value: schemaDescription,
onBlur: function onBlur() {
if (updateSchema) {
updateSchema(namePath.concat('description'), schemaDescription);
}
setIsDescFocused(false);
},
onFocus: function onFocus() {
return setIsDescFocused(true);
},
onChange: function onChange(description) {
return setSchemaDescription(description.target.value);
}
}) : /*#__PURE__*/React.createElement("div", {
className: cn('ant-input schema-desc-input-div', {
'schema-input-div': true,
'is-hidden': isHidden,
'is-repeat': isRepeat,
'is-desc': !schemaDescription
}),
onClick: function onClick() {
setIsDescFocused(true);
}
}, schemaDescription || t('desc')));
};
export default /*#__PURE__*/memo(Description);