ant-design/components/input/Search.tsx

93 lines
2.4 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';
2017-07-14 17:47:11 +08:00
export interface SearchProps extends InputProps {
inputPrefixCls?: string;
2016-11-24 14:56:08 +08:00
onSearch?: (value: string) => any;
enterButton?: boolean | React.ReactNode;
}
2017-05-16 12:02:52 +08:00
export default class Search extends React.Component<SearchProps, any> {
static defaultProps = {
inputPrefixCls: 'ant-input',
prefixCls: 'ant-input-search',
enterButton: false,
};
2017-09-17 15:48:44 +08:00
private input: Input;
onSearch = () => {
2016-11-24 14:56:08 +08:00
const { onSearch } = this.props;
if (onSearch) {
onSearch(this.input.input.value);
}
2017-05-22 14:44:58 +08:00
this.input.focus();
}
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;
}
getButtonOrIcon() {
const { enterButton, prefixCls, size, disabled } = this.props;
if (!enterButton) {
return <Icon className={`${prefixCls}-icon`} type="search" key="searchIcon" />;
}
const enterButtonAsElement = enterButton as React.ReactElement<any>;
if (enterButtonAsElement.type === Button || enterButtonAsElement.type === 'button') {
return React.cloneElement(enterButtonAsElement, enterButtonAsElement.type === Button ? {
className: `${prefixCls}-button`,
size,
onClick: this.onSearch,
} : {
onClick: this.onSearch,
});
}
return (
<Button
className={`${prefixCls}-button`}
type="primary"
size={size}
disabled={disabled}
onClick={this.onSearch}
key="enterButton"
>
{enterButton === true ? <Icon type="search" /> : enterButton}
</Button>
);
}
render() {
const { className, prefixCls, inputPrefixCls, size, suffix, enterButton, ...others } = this.props;
delete (others as any).onSearch;
const buttonOrIcon = this.getButtonOrIcon();
2017-11-06 10:35:41 +08:00
const searchSuffix = suffix ? [suffix, buttonOrIcon] : buttonOrIcon;
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
/>
);
}
}