ant-design/components/input/Search.tsx

122 lines
3.3 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
import classNames from 'classnames';
2017-07-14 17:47:11 +08:00
import Input, { InputProps } from './Input';
import Icon from '../icon';
import Button from '../button';
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
2017-07-14 17:47:11 +08:00
export interface SearchProps extends InputProps {
inputPrefixCls?: string;
2018-12-07 20:02:01 +08:00
onSearch?: (
value: string,
event?: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLInputElement>,
) => any;
enterButton?: boolean | React.ReactNode;
}
2017-05-16 12:02:52 +08:00
export default class Search extends React.Component<SearchProps, any> {
static defaultProps = {
enterButton: false,
};
2017-09-17 15:48:44 +08:00
private input: Input;
onSearch = (e: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLInputElement>) => {
2016-11-24 14:56:08 +08:00
const { onSearch } = this.props;
if (onSearch) {
onSearch(this.input.input.value, e);
}
2017-05-22 14:44:58 +08:00
this.input.focus();
2018-12-07 20:02:01 +08:00
};
2017-12-01 19:39:32 +08:00
focus() {
this.input.focus();
}
blur() {
this.input.blur();
}
2017-11-21 19:51:31 +08:00
saveInput = (node: Input) => {
this.input = node;
2018-12-07 20:02:01 +08:00
};
getButtonOrIcon(prefixCls: string) {
const { enterButton, size, disabled } = this.props;
const enterButtonAsElement = enterButton as React.ReactElement<any>;
let node;
if (!enterButton) {
node = <Icon className={`${prefixCls}-icon`} type="search" key="searchIcon" />;
} else if (enterButtonAsElement.type === Button || enterButtonAsElement.type === 'button') {
2018-12-07 20:02:01 +08:00
node = React.cloneElement(
enterButtonAsElement,
enterButtonAsElement.type === Button
? {
className: `${prefixCls}-button`,
size,
}
: {},
);
} else {
node = (
<Button
className={`${prefixCls}-button`}
type="primary"
size={size}
disabled={disabled}
key="enterButton"
>
{enterButton === true ? <Icon type="search" /> : enterButton}
</Button>
);
}
return React.cloneElement(node, {
onClick: this.onSearch,
});
}
renderSearch = ({ getPrefixCls }: ConfigConsumerProps) => {
const {
2018-12-07 20:02:01 +08:00
prefixCls: customizePrefixCls,
inputPrefixCls: customizeInputPrefixCls,
className,
size,
suffix,
enterButton,
...others
} = this.props;
delete (others as any).onSearch;
const prefixCls = getPrefixCls('input-search', customizePrefixCls);
const inputPrefixCls = getPrefixCls('input', customizeInputPrefixCls);
const buttonOrIcon = this.getButtonOrIcon(prefixCls);
2018-11-15 13:46:56 +08:00
let searchSuffix = suffix ? [suffix, buttonOrIcon] : buttonOrIcon;
if (Array.isArray(searchSuffix)) {
2018-11-15 21:51:35 +08:00
searchSuffix = (searchSuffix as React.ReactElement<any>[]).map((item, index) => {
if (!React.isValidElement(item) || item.key) {
2018-11-15 13:46:56 +08:00
return item;
}
2018-12-07 20:02:01 +08:00
return React.cloneElement(item, { key: index });
2018-11-15 13:46:56 +08:00
});
}
const inputClassName = classNames(prefixCls, className, {
[`${prefixCls}-enter-button`]: !!enterButton,
[`${prefixCls}-${size}`]: !!size,
});
return (
2017-01-05 15:53:04 +08:00
<Input
onPressEnter={this.onSearch}
{...others}
size={size}
className={inputClassName}
prefixCls={inputPrefixCls}
2017-05-22 14:44:58 +08:00
suffix={searchSuffix}
ref={this.saveInput}
2017-01-05 15:53:04 +08:00
/>
);
2018-12-07 20:02:01 +08:00
};
render() {
2018-12-07 20:02:01 +08:00
return <ConfigConsumer>{this.renderSearch}</ConfigConsumer>;
}
}