Browse Source

refactor(search): use context (#27657)

* refactor(search): use context

* Update Search.tsx
pull/27802/head
Tom Xu 4 years ago
committed by GitHub
parent
commit
ef77539920
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 207
      components/input/Search.tsx

207
components/input/Search.tsx

@ -4,8 +4,8 @@ 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 SizeContext from '../config-provider/SizeContext';
import { ConfigContext } from '../config-provider';
import { cloneElement } from '../_util/reactNode';
export interface SearchProps extends InputProps {
@ -22,10 +22,29 @@ export interface SearchProps extends InputProps {
}
const Search = React.forwardRef<Input, SearchProps>((props, ref) => {
const {
prefixCls: customizePrefixCls,
inputPrefixCls: customizeInputPrefixCls,
className,
size: customizeSize,
suffix,
enterButton = false,
addonAfter,
loading,
disabled,
onSearch: customOnSearch,
onChange: customOnChange,
...restProps
} = props;
const { getPrefixCls, direction } = React.useContext(ConfigContext);
const contextSize = React.useContext(SizeContext);
const size = customizeSize || contextSize;
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);
}
@ -41,121 +60,89 @@ const Search = React.forwardRef<Input, SearchProps>((props, ref) => {
};
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>
const prefixCls = getPrefixCls('input-search', customizePrefixCls);
const inputPrefixCls = getPrefixCls('input', customizeInputPrefixCls);
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>
);
};
return <ConfigConsumer>{renderSearch}</ConfigConsumer>;
}
if (addonAfter) {
button = [
button,
cloneElement(addonAfter, {
key: 'addonAfter',
}),
];
}
const cls = classNames(
prefixCls,
{
[`${prefixCls}-rtl`]: direction === 'rtl',
[`${prefixCls}-${size}`]: !!size,
[`${prefixCls}-with-button`]: !!enterButton,
},
className,
);
return (
<Input
ref={composeRef<Input>(inputRef, ref)}
onPressEnter={onSearch}
{...restProps}
size={size}
prefixCls={inputPrefixCls}
addonAfter={button}
suffix={suffix}
onChange={onChange}
className={cls}
disabled={disabled}
/>
);
});
Search.defaultProps = {
enterButton: false,
};
Search.displayName = 'Search';
export default Search;

Loading…
Cancel
Save