ant-design/components/input/Search.tsx

61 lines
1.5 KiB
TypeScript
Raw Normal View History

import 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 {
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 = {
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();
}
saveInput = (node) => {
this.input = node;
}
render() {
const { className, prefixCls, size, enterButton, ...others } = this.props;
delete (others as any).onSearch;
const searchSuffix = enterButton
? (
<Button
className={`${prefixCls}-button`}
type="primary"
size={size}
onClick={this.onSearch}
>
{enterButton === true ? <Icon type="search" /> : enterButton}
</Button>
) : <Icon className={`${prefixCls}-icon`} type="search" />;
const inputClassName = classNames(prefixCls, className, {
[`${prefixCls}-enter-button`]: !!enterButton,
});
return (
2017-01-05 15:53:04 +08:00
<Input
onPressEnter={this.onSearch}
{...others}
size={size}
className={inputClassName}
2017-05-22 14:44:58 +08:00
suffix={searchSuffix}
ref={this.saveInput}
2017-01-05 15:53:04 +08:00
/>
);
}
}