ant-design/components/transfer/search.jsx

44 lines
1.0 KiB
React
Raw Normal View History

2015-11-26 16:07:11 +08:00
import React, { Component, PropTypes } from 'react';
2015-12-23 23:12:20 +08:00
import Icon from '../icon';
2015-11-25 23:17:06 +08:00
function noop() {
}
2015-11-26 16:07:11 +08:00
class Search extends Component {
constructor(props) {
super(props);
}
2015-11-25 23:17:06 +08:00
2015-11-26 16:07:11 +08:00
handleChange(e) {
this.props.onChange(e);
}
render() {
2015-12-16 23:02:49 +08:00
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="javascirpt:;" className={ prefixCls + '-action' } onClick={this.props.handleClear}>
<Icon type="cross-circle" />
</a>
: <span className={ prefixCls + '-action' }><Icon type="search" /></span>
}
</div>
);
2015-11-25 23:17:06 +08:00
}
}
2015-11-26 16:07:11 +08:00
Search.defaultProps = {
placeholder: '请输入搜索内容',
2015-11-25 23:17:06 +08:00
onChange: noop,
};
2015-11-26 16:07:11 +08:00
Search.propTypes = {
2015-11-25 23:17:06 +08:00
prefixCls: PropTypes.string,
2015-11-26 16:07:11 +08:00
placeholder: PropTypes.string,
onChange: PropTypes.func
2015-11-25 23:17:06 +08:00
};
2015-11-26 16:07:11 +08:00
export default Search;