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.

51 lines
1.1 KiB

import React, { Component, PropTypes } from 'react';
9 years ago
import Icon from '../icon';
9 years ago
function noop() {
}
class Search extends Component {
constructor(props) {
super(props);
}
9 years ago
handleChange(e) {
this.props.onChange(e);
}
handleClear(e) {
e.preventDefault();
this.props.handleClear(e);
}
render() {
const { placeholder, value, prefixCls } = this.props;
return (
<div>
<input placeholder={placeholder} className={ prefixCls + ' ant-input' } value={ value } ref="input"
onChange={this.handleChange.bind(this)}/>
{ value && value.length > 0 ?
<a href="#" className={ prefixCls + '-action' } onClick={this.handleClear.bind(this)}>
<Icon type="cross-circle" />
</a>
: <span className={ prefixCls + '-action' }><Icon type="search" /></span>
}
</div>
);
9 years ago
}
}
Search.defaultProps = {
placeholder: '请输入搜索内容',
9 years ago
onChange: noop,
handleClear: noop,
9 years ago
};
Search.propTypes = {
9 years ago
prefixCls: PropTypes.string,
placeholder: PropTypes.string,
onChange: PropTypes.func,
handleClear: PropTypes.func,
9 years ago
};
export default Search;