2016-11-24 14:03:57 +08:00
|
|
|
import React from 'react';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import Input from './Input';
|
|
|
|
import Icon from '../icon';
|
|
|
|
|
|
|
|
export interface SearchProps {
|
|
|
|
className?: string;
|
|
|
|
placeholder?: string;
|
|
|
|
prefixCls?: string;
|
|
|
|
style?: React.CSSProperties;
|
|
|
|
defaultValue?: any;
|
|
|
|
value?: any;
|
|
|
|
onChange?: React.FormEventHandler<any>;
|
2016-11-24 14:56:08 +08:00
|
|
|
onSearch?: (value: string) => any;
|
|
|
|
size?: 'large' | 'default' | 'small';
|
|
|
|
disabled?: boolean;
|
|
|
|
readOnly?: boolean;
|
2016-11-24 14:03:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default class Search extends React.Component<SearchProps, any> {
|
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-input-search',
|
2016-11-24 14:56:08 +08:00
|
|
|
onSearch() {},
|
2016-11-24 14:03:57 +08:00
|
|
|
};
|
2016-11-24 14:56:08 +08:00
|
|
|
input: any;
|
2016-11-24 14:03:57 +08:00
|
|
|
onSearch = () => {
|
2016-11-24 14:56:08 +08:00
|
|
|
const { onSearch } = this.props;
|
|
|
|
if (onSearch) {
|
|
|
|
onSearch(this.input.refs.input.value);
|
2016-11-24 14:03:57 +08:00
|
|
|
}
|
2016-11-24 14:56:08 +08:00
|
|
|
this.input.refs.input.focus();
|
2016-11-24 14:03:57 +08:00
|
|
|
}
|
|
|
|
render() {
|
2016-12-19 15:19:15 +08:00
|
|
|
const { className, prefixCls, style, ...others } = this.props;
|
2016-11-24 14:56:08 +08:00
|
|
|
delete others.onSearch;
|
2016-11-24 14:03:57 +08:00
|
|
|
const wrapperCls = classNames({
|
|
|
|
[`${prefixCls}-wrapper`]: true,
|
2016-11-30 10:20:23 +08:00
|
|
|
}, className);
|
2016-11-24 14:03:57 +08:00
|
|
|
return (
|
2016-11-24 14:56:08 +08:00
|
|
|
<div className={wrapperCls} style={style}>
|
2016-11-24 14:03:57 +08:00
|
|
|
<Input
|
|
|
|
className={prefixCls}
|
|
|
|
onPressEnter={this.onSearch}
|
2016-11-24 14:56:08 +08:00
|
|
|
ref={node => this.input = node}
|
|
|
|
{...others}
|
|
|
|
/>
|
|
|
|
<Icon
|
|
|
|
className={`${prefixCls}-icon`}
|
|
|
|
onClick={this.onSearch}
|
|
|
|
type="search"
|
2016-11-24 14:03:57 +08:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|