ant-design/components/transfer/search.jsx

41 lines
1.0 KiB
React
Raw Normal View History

2015-11-26 16:07:11 +08:00
import React, { Component, PropTypes } from 'react';
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;
2015-12-17 16:08:16 +08:00
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}><i className="anticon anticon-cross-circle"></i></a>
: <span className={ prefixCls + '-action' }><i className="anticon anticon-search"></i></span>
}
</div>;
2015-11-25 23:17:06 +08:00
}
}
2015-11-26 16:07:11 +08:00
Search.defaultProps = {
2015-12-16 23:02:49 +08:00
prefixCls: 'ant-transfer-list-search',
2015-11-26 16:07:11 +08:00
placeholder: '请输入搜索内容',
2015-11-25 23:17:06 +08:00
onChange: noop,
onDelete: 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;