You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.8 KiB

import React from 'react';
import classNames from 'classnames';
7 years ago
import Input, { InputProps } from './Input';
import Icon from '../icon';
import Button from '../button';
7 years ago
export interface SearchProps extends InputProps {
inputPrefixCls?: string;
onSearch?: (value: string) => any;
enterButton?: boolean | React.ReactNode;
}
8 years ago
export default class Search extends React.Component<SearchProps, any> {
static defaultProps = {
inputPrefixCls: 'ant-input',
prefixCls: 'ant-input-search',
enterButton: false,
};
private input: Input;
onSearch = () => {
const { onSearch } = this.props;
if (onSearch) {
onSearch(this.input.input.value);
}
this.input.focus();
}
saveInput = (node) => {
this.input = node;
}
render() {
const { className, prefixCls, inputPrefixCls, size, enterButton, suffix, ...others } = this.props;
delete (others as any).onSearch;
const buttonOrIcon = enterButton
? (
<Button
className={`${prefixCls}-button`}
type="primary"
size={size}
onClick={this.onSearch}
7 years ago
key="enterButton"
>
{enterButton === true ? <Icon type="search" /> : enterButton}
</Button>
7 years ago
) : <Icon className={`${prefixCls}-icon`} type="search" key="searchIcon" />;
const searchSuffix = suffix ? [suffix, buttonOrIcon] : buttonOrIcon;
const inputClassName = classNames(prefixCls, className, {
[`${prefixCls}-enter-button`]: !!enterButton,
[`${prefixCls}-${size}`]: !!size,
});
return (
<Input
onPressEnter={this.onSearch}
{...others}
size={size}
className={inputClassName}
prefixCls={inputPrefixCls}
suffix={searchSuffix}
ref={this.saveInput}
/>
);
}
}