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.
66 lines
1.8 KiB
66 lines
1.8 KiB
import React from 'react';
|
|
import classNames from 'classnames';
|
|
import Input, { InputProps } from './Input';
|
|
import Icon from '../icon';
|
|
import Button from '../button';
|
|
|
|
export interface SearchProps extends InputProps {
|
|
inputPrefixCls?: string;
|
|
onSearch?: (value: string) => any;
|
|
enterButton?: boolean | React.ReactNode;
|
|
}
|
|
|
|
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}
|
|
key="enterButton"
|
|
>
|
|
{enterButton === true ? <Icon type="search" /> : enterButton}
|
|
</Button>
|
|
) : <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}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|