ant-design/components/input/Search.tsx
二货机器人 c373710ce2
chore: Adjust collapse arrow position align with first line (#27363)
* fix: border style of Input.Search when allowClear (#27325)

* fix: border style of Input.Search when allowClear

* fix css

* update

* change name

* docs: 4.7.3 changelog (#27350)

* docs: 4.7.3 changelog

* docs: Patch 27325

* chore: improve useCombinedRefs (#27352)

* docs: 📝 update introduce

* chore: fix API table border

* chore: Adjust collapse arrow position align with first line

Co-authored-by: xrk <xrkffgg@gmail.com>
Co-authored-by: Tom Xu <ycxzhkx@gmail.com>
Co-authored-by: afc163 <afc163@gmail.com>
2020-10-26 10:56:09 +08:00

162 lines
4.5 KiB
TypeScript

import * as React from 'react';
import classNames from 'classnames';
import { composeRef } from 'rc-util/lib/ref';
import SearchOutlined from '@ant-design/icons/SearchOutlined';
import Input, { InputProps } from './Input';
import Button from '../button';
import SizeContext, { SizeType } from '../config-provider/SizeContext';
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
import { cloneElement } from '../_util/reactNode';
export interface SearchProps extends InputProps {
inputPrefixCls?: string;
onSearch?: (
value: string,
event?:
| React.ChangeEvent<HTMLInputElement>
| React.MouseEvent<HTMLElement>
| React.KeyboardEvent<HTMLInputElement>,
) => void;
enterButton?: React.ReactNode;
loading?: boolean;
}
const Search = React.forwardRef<Input, SearchProps>((props, ref) => {
const inputRef = React.useRef<Input>(null);
const onChange = (e: React.ChangeEvent<HTMLInputElement>) => {
const { onChange: customOnChange, onSearch: customOnSearch } = props;
if (e && e.target && e.type === 'click' && customOnSearch) {
customOnSearch((e as React.ChangeEvent<HTMLInputElement>).target.value, e);
}
if (customOnChange) {
customOnChange(e);
}
};
const onMouseDown: React.MouseEventHandler<HTMLElement> = e => {
if (document.activeElement === inputRef.current?.input) {
e.preventDefault();
}
};
const onSearch = (e: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLInputElement>) => {
const { onSearch: customOnSearch } = props;
if (customOnSearch) {
customOnSearch(inputRef.current?.input.value!, e);
}
};
const renderAddonAfter = (prefixCls: string, size: SizeType) => {
const { enterButton, disabled, addonAfter, loading } = props;
const searchIcon =
typeof enterButton === 'boolean' || typeof enterButton === 'undefined' ? (
<SearchOutlined />
) : null;
const btnClassName = `${prefixCls}-button`;
let button: React.ReactNode;
const enterButtonAsElement = enterButton as React.ReactElement;
const isAntdButton =
enterButtonAsElement.type &&
(enterButtonAsElement.type as typeof Button).__ANT_BUTTON === true;
if (isAntdButton || enterButtonAsElement.type === 'button') {
button = cloneElement(enterButtonAsElement, {
onMouseDown,
onClick: onSearch,
key: 'enterButton',
...(isAntdButton
? {
className: btnClassName,
size,
}
: {}),
});
} else {
button = (
<Button
className={btnClassName}
type={enterButton ? 'primary' : undefined}
size={size}
disabled={disabled}
key="enterButton"
onMouseDown={onMouseDown}
onClick={onSearch}
loading={loading}
icon={searchIcon}
>
{enterButton}
</Button>
);
}
if (addonAfter) {
return [
button,
cloneElement(addonAfter, {
key: 'addonAfter',
}),
];
}
return button;
};
const renderSearch = ({ getPrefixCls, direction }: ConfigConsumerProps) => {
const {
prefixCls: customizePrefixCls,
inputPrefixCls: customizeInputPrefixCls,
className,
size: customizeSize,
suffix,
enterButton,
...restProps
} = props;
delete (restProps as any).onSearch;
delete (restProps as any).loading;
const prefixCls = getPrefixCls('input-search', customizePrefixCls);
const inputPrefixCls = getPrefixCls('input', customizeInputPrefixCls);
const getClassName = (size: SizeType) =>
classNames(
prefixCls,
{
[`${prefixCls}-rtl`]: direction === 'rtl',
[`${prefixCls}-${size}`]: !!size,
[`${prefixCls}-with-button`]: !!enterButton,
},
className,
);
return (
<SizeContext.Consumer>
{size => (
<Input
ref={composeRef<Input>(inputRef, ref)}
onPressEnter={onSearch}
{...restProps}
size={customizeSize || size}
prefixCls={inputPrefixCls}
addonAfter={renderAddonAfter(prefixCls, customizeSize || size)}
suffix={suffix}
onChange={onChange}
className={getClassName(customizeSize || size)}
/>
)}
</SizeContext.Consumer>
);
};
return <ConfigConsumer>{renderSearch}</ConfigConsumer>;
});
Search.defaultProps = {
enterButton: false,
};
Search.displayName = 'Search';
export default Search;