ant-design/components/input/Search.tsx

67 lines
1.8 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-11-21 19:51:31 +08:00
saveInput = (node: Input) => {
this.input = node;
}
render() {
2017-11-06 10:35:41 +08:00
const { className, prefixCls, inputPrefixCls, size, enterButton, suffix, ...others } = this.props;
delete (others as any).onSearch;
2017-11-06 10:35:41 +08:00
const buttonOrIcon = enterButton
? (
<Button
className={`${prefixCls}-button`}
type="primary"
size={size}
onClick={this.onSearch}
2017-11-07 10:48:05 +08:00
key="enterButton"
>
{enterButton === true ? <Icon type="search" /> : enterButton}
</Button>
2017-11-07 10:48:05 +08:00
) : <Icon className={`${prefixCls}-icon`} type="search" key="searchIcon" />;
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
/>
);
}
}