You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
4.7 KiB
134 lines
4.7 KiB
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
|
|
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 * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import { composeRef } from "rc-util/es/ref";
|
|
import SearchOutlined from "@ant-design/icons/es/icons/SearchOutlined";
|
|
import Input from './Input';
|
|
import Button from '../button';
|
|
import SizeContext from '../config-provider/SizeContext';
|
|
import { ConfigContext } from '../config-provider';
|
|
import { cloneElement } from '../_util/reactNode';
|
|
var Search = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
var _classNames;
|
|
|
|
var customizePrefixCls = props.prefixCls,
|
|
customizeInputPrefixCls = props.inputPrefixCls,
|
|
className = props.className,
|
|
customizeSize = props.size,
|
|
suffix = props.suffix,
|
|
_props$enterButton = props.enterButton,
|
|
enterButton = _props$enterButton === void 0 ? false : _props$enterButton,
|
|
addonAfter = props.addonAfter,
|
|
loading = props.loading,
|
|
disabled = props.disabled,
|
|
customOnSearch = props.onSearch,
|
|
customOnChange = props.onChange,
|
|
restProps = __rest(props, ["prefixCls", "inputPrefixCls", "className", "size", "suffix", "enterButton", "addonAfter", "loading", "disabled", "onSearch", "onChange"]);
|
|
|
|
var _React$useContext = React.useContext(ConfigContext),
|
|
getPrefixCls = _React$useContext.getPrefixCls,
|
|
direction = _React$useContext.direction;
|
|
|
|
var contextSize = React.useContext(SizeContext);
|
|
var size = customizeSize || contextSize;
|
|
var inputRef = React.useRef(null);
|
|
|
|
var onChange = function onChange(e) {
|
|
if (e && e.target && e.type === 'click' && customOnSearch) {
|
|
customOnSearch(e.target.value, e);
|
|
}
|
|
|
|
if (customOnChange) {
|
|
customOnChange(e);
|
|
}
|
|
};
|
|
|
|
var onMouseDown = function onMouseDown(e) {
|
|
var _a;
|
|
|
|
if (document.activeElement === ((_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.input)) {
|
|
e.preventDefault();
|
|
}
|
|
};
|
|
|
|
var onSearch = function onSearch(e) {
|
|
var _a;
|
|
|
|
if (customOnSearch) {
|
|
customOnSearch((_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.input.value, e);
|
|
}
|
|
};
|
|
|
|
var prefixCls = getPrefixCls('input-search', customizePrefixCls);
|
|
var inputPrefixCls = getPrefixCls('input', customizeInputPrefixCls);
|
|
var searchIcon = typeof enterButton === 'boolean' ? /*#__PURE__*/React.createElement(SearchOutlined, null) : null;
|
|
var btnClassName = "".concat(prefixCls, "-button");
|
|
var button;
|
|
var enterButtonAsElement = enterButton || {};
|
|
var isAntdButton = enterButtonAsElement.type && enterButtonAsElement.type.__ANT_BUTTON === true;
|
|
|
|
if (isAntdButton || enterButtonAsElement.type === 'button') {
|
|
button = cloneElement(enterButtonAsElement, _extends({
|
|
onMouseDown: onMouseDown,
|
|
onClick: function onClick(e) {
|
|
var _a, _b;
|
|
|
|
(_b = (_a = enterButtonAsElement === null || enterButtonAsElement === void 0 ? void 0 : enterButtonAsElement.props) === null || _a === void 0 ? void 0 : _a.onClick) === null || _b === void 0 ? void 0 : _b.call(_a, e);
|
|
onSearch(e);
|
|
},
|
|
key: 'enterButton'
|
|
}, isAntdButton ? {
|
|
className: btnClassName,
|
|
size: size
|
|
} : {}));
|
|
} else {
|
|
button = /*#__PURE__*/React.createElement(Button, {
|
|
className: btnClassName,
|
|
type: enterButton ? 'primary' : undefined,
|
|
size: size,
|
|
disabled: disabled,
|
|
key: "enterButton",
|
|
onMouseDown: onMouseDown,
|
|
onClick: onSearch,
|
|
loading: loading,
|
|
icon: searchIcon
|
|
}, enterButton);
|
|
}
|
|
|
|
if (addonAfter) {
|
|
button = [button, cloneElement(addonAfter, {
|
|
key: 'addonAfter'
|
|
})];
|
|
}
|
|
|
|
var cls = classNames(prefixCls, (_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _defineProperty(_classNames, "".concat(prefixCls, "-").concat(size), !!size), _defineProperty(_classNames, "".concat(prefixCls, "-with-button"), !!enterButton), _classNames), className);
|
|
return /*#__PURE__*/React.createElement(Input, _extends({
|
|
ref: composeRef(inputRef, ref),
|
|
onPressEnter: onSearch
|
|
}, restProps, {
|
|
size: size,
|
|
prefixCls: inputPrefixCls,
|
|
addonAfter: button,
|
|
suffix: suffix,
|
|
onChange: onChange,
|
|
className: cls,
|
|
disabled: disabled
|
|
}));
|
|
});
|
|
Search.displayName = 'Search';
|
|
export default Search; |