225 lines
11 KiB
JavaScript
225 lines
11 KiB
JavaScript
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
|
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
|
|
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, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); 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 } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
|
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
|
|
function _createSuper(Derived) { return function () { var Super = _getPrototypeOf(Derived), result; if (_isNativeReflectConstruct()) { 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; } 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 { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
|
|
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
|
|
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import CloseCircleFilled from '@ant-design/icons/CloseCircleFilled';
|
|
import { tuple } from '../_util/type';
|
|
import { getInputClassName } from './Input';
|
|
var ClearableInputType = tuple('text', 'input');
|
|
export function hasPrefixSuffix(props) {
|
|
return !!(props.prefix || props.suffix || props.allowClear);
|
|
}
|
|
|
|
var ClearableLabeledInput = /*#__PURE__*/function (_React$Component) {
|
|
_inherits(ClearableLabeledInput, _React$Component);
|
|
|
|
var _super = _createSuper(ClearableLabeledInput);
|
|
|
|
function ClearableLabeledInput() {
|
|
var _this;
|
|
|
|
_classCallCheck(this, ClearableLabeledInput);
|
|
|
|
_this = _super.apply(this, arguments);
|
|
/** @private Do not use out of this class. We do not promise this is always keep. */
|
|
|
|
_this.containerRef = React.createRef();
|
|
|
|
_this.onInputMouseUp = function (e) {
|
|
var _a;
|
|
|
|
if ((_a = _this.containerRef.current) === null || _a === void 0 ? void 0 : _a.contains(e.target)) {
|
|
var triggerFocus = _this.props.triggerFocus;
|
|
triggerFocus();
|
|
}
|
|
};
|
|
|
|
return _this;
|
|
}
|
|
|
|
_createClass(ClearableLabeledInput, [{
|
|
key: "renderClearIcon",
|
|
value: function renderClearIcon(prefixCls) {
|
|
var _this$props = this.props,
|
|
allowClear = _this$props.allowClear,
|
|
value = _this$props.value,
|
|
disabled = _this$props.disabled,
|
|
readOnly = _this$props.readOnly,
|
|
inputType = _this$props.inputType,
|
|
handleReset = _this$props.handleReset;
|
|
|
|
if (!allowClear) {
|
|
return null;
|
|
}
|
|
|
|
var needClear = !disabled && !readOnly && value;
|
|
var className = inputType === ClearableInputType[0] ? "".concat(prefixCls, "-textarea-clear-icon") : "".concat(prefixCls, "-clear-icon");
|
|
return /*#__PURE__*/React.createElement(CloseCircleFilled, {
|
|
onClick: handleReset,
|
|
className: classNames(className, _defineProperty({}, "".concat(className, "-hidden"), !needClear)),
|
|
role: "button"
|
|
});
|
|
}
|
|
}, {
|
|
key: "renderSuffix",
|
|
value: function renderSuffix(prefixCls) {
|
|
var _this$props2 = this.props,
|
|
suffix = _this$props2.suffix,
|
|
allowClear = _this$props2.allowClear;
|
|
|
|
if (suffix || allowClear) {
|
|
return /*#__PURE__*/React.createElement("span", {
|
|
className: "".concat(prefixCls, "-suffix")
|
|
}, this.renderClearIcon(prefixCls), suffix);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}, {
|
|
key: "renderLabeledIcon",
|
|
value: function renderLabeledIcon(prefixCls, element) {
|
|
var _classNames2;
|
|
|
|
var _this$props3 = this.props,
|
|
focused = _this$props3.focused,
|
|
value = _this$props3.value,
|
|
prefix = _this$props3.prefix,
|
|
className = _this$props3.className,
|
|
size = _this$props3.size,
|
|
suffix = _this$props3.suffix,
|
|
disabled = _this$props3.disabled,
|
|
allowClear = _this$props3.allowClear,
|
|
direction = _this$props3.direction,
|
|
style = _this$props3.style;
|
|
var suffixNode = this.renderSuffix(prefixCls);
|
|
|
|
if (!hasPrefixSuffix(this.props)) {
|
|
return React.cloneElement(element, {
|
|
value: value
|
|
});
|
|
}
|
|
|
|
var prefixNode = prefix ? /*#__PURE__*/React.createElement("span", {
|
|
className: "".concat(prefixCls, "-prefix")
|
|
}, prefix) : null;
|
|
var affixWrapperCls = classNames(className, "".concat(prefixCls, "-affix-wrapper"), (_classNames2 = {}, _defineProperty(_classNames2, "".concat(prefixCls, "-affix-wrapper-focused"), focused), _defineProperty(_classNames2, "".concat(prefixCls, "-affix-wrapper-disabled"), disabled), _defineProperty(_classNames2, "".concat(prefixCls, "-affix-wrapper-sm"), size === 'small'), _defineProperty(_classNames2, "".concat(prefixCls, "-affix-wrapper-lg"), size === 'large'), _defineProperty(_classNames2, "".concat(prefixCls, "-affix-wrapper-input-with-clear-btn"), suffix && allowClear && value), _defineProperty(_classNames2, "".concat(prefixCls, "-affix-wrapper-rtl"), direction === 'rtl'), _classNames2));
|
|
return /*#__PURE__*/React.createElement("span", {
|
|
ref: this.containerRef,
|
|
className: affixWrapperCls,
|
|
style: style,
|
|
onMouseUp: this.onInputMouseUp
|
|
}, prefixNode, React.cloneElement(element, {
|
|
style: null,
|
|
value: value,
|
|
className: getInputClassName(prefixCls, size, disabled)
|
|
}), suffixNode);
|
|
}
|
|
}, {
|
|
key: "renderInputWithLabel",
|
|
value: function renderInputWithLabel(prefixCls, labeledElement) {
|
|
var _classNames3, _classNames4;
|
|
|
|
var _this$props4 = this.props,
|
|
addonBefore = _this$props4.addonBefore,
|
|
addonAfter = _this$props4.addonAfter,
|
|
style = _this$props4.style,
|
|
size = _this$props4.size,
|
|
className = _this$props4.className,
|
|
direction = _this$props4.direction; // Not wrap when there is not addons
|
|
|
|
if (!addonBefore && !addonAfter) {
|
|
return labeledElement;
|
|
}
|
|
|
|
var wrapperClassName = "".concat(prefixCls, "-group");
|
|
var addonClassName = "".concat(wrapperClassName, "-addon");
|
|
var addonBeforeNode = addonBefore ? /*#__PURE__*/React.createElement("span", {
|
|
className: addonClassName
|
|
}, addonBefore) : null;
|
|
var addonAfterNode = addonAfter ? /*#__PURE__*/React.createElement("span", {
|
|
className: addonClassName
|
|
}, addonAfter) : null;
|
|
var mergedWrapperClassName = classNames("".concat(prefixCls, "-wrapper"), (_classNames3 = {}, _defineProperty(_classNames3, wrapperClassName, addonBefore || addonAfter), _defineProperty(_classNames3, "".concat(wrapperClassName, "-rtl"), direction === 'rtl'), _classNames3));
|
|
var mergedGroupClassName = classNames(className, "".concat(prefixCls, "-group-wrapper"), (_classNames4 = {}, _defineProperty(_classNames4, "".concat(prefixCls, "-group-wrapper-sm"), size === 'small'), _defineProperty(_classNames4, "".concat(prefixCls, "-group-wrapper-lg"), size === 'large'), _defineProperty(_classNames4, "".concat(prefixCls, "-group-wrapper-rtl"), direction === 'rtl'), _classNames4)); // Need another wrapper for changing display:table to display:inline-block
|
|
// and put style prop in wrapper
|
|
|
|
return /*#__PURE__*/React.createElement("span", {
|
|
className: mergedGroupClassName,
|
|
style: style
|
|
}, /*#__PURE__*/React.createElement("span", {
|
|
className: mergedWrapperClassName
|
|
}, addonBeforeNode, React.cloneElement(labeledElement, {
|
|
style: null
|
|
}), addonAfterNode));
|
|
}
|
|
}, {
|
|
key: "renderTextAreaWithClearIcon",
|
|
value: function renderTextAreaWithClearIcon(prefixCls, element) {
|
|
var _this$props5 = this.props,
|
|
value = _this$props5.value,
|
|
allowClear = _this$props5.allowClear,
|
|
className = _this$props5.className,
|
|
style = _this$props5.style;
|
|
|
|
if (!allowClear) {
|
|
return React.cloneElement(element, {
|
|
value: value
|
|
});
|
|
}
|
|
|
|
var affixWrapperCls = classNames(className, "".concat(prefixCls, "-affix-wrapper"), "".concat(prefixCls, "-affix-wrapper-textarea-with-clear-btn"));
|
|
return /*#__PURE__*/React.createElement("span", {
|
|
className: affixWrapperCls,
|
|
style: style
|
|
}, React.cloneElement(element, {
|
|
style: null,
|
|
value: value
|
|
}), this.renderClearIcon(prefixCls));
|
|
}
|
|
}, {
|
|
key: "renderClearableLabeledInput",
|
|
value: function renderClearableLabeledInput() {
|
|
var _this$props6 = this.props,
|
|
prefixCls = _this$props6.prefixCls,
|
|
inputType = _this$props6.inputType,
|
|
element = _this$props6.element;
|
|
|
|
if (inputType === ClearableInputType[0]) {
|
|
return this.renderTextAreaWithClearIcon(prefixCls, element);
|
|
}
|
|
|
|
return this.renderInputWithLabel(prefixCls, this.renderLabeledIcon(prefixCls, element));
|
|
}
|
|
}, {
|
|
key: "render",
|
|
value: function render() {
|
|
return this.renderClearableLabeledInput();
|
|
}
|
|
}]);
|
|
|
|
return ClearableLabeledInput;
|
|
}(React.Component);
|
|
|
|
export default ClearableLabeledInput; |