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.
136 lines
4.1 KiB
136 lines
4.1 KiB
import React, { Component, PropTypes } from 'react';
|
|
import Checkbox from '../checkbox';
|
|
import Search from './search.jsx';
|
|
import {classSet} from 'rc-util';
|
|
function noop() {
|
|
}
|
|
|
|
class TransferList extends Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
handleSelectALl() {
|
|
this.props.handleSelectAll();
|
|
}
|
|
|
|
handleSelect(selectedItem) {
|
|
const { checkedKeys } = this.props;
|
|
const result = checkedKeys.some((key) => key === selectedItem.key);
|
|
this.props.handleSelect(selectedItem, !result);
|
|
}
|
|
|
|
handleFilter(e) {
|
|
this.props.handleFilter(e);
|
|
}
|
|
|
|
handleClear() {
|
|
this.props.handleClear();
|
|
}
|
|
|
|
renderCheckbox(props) {
|
|
const { prefixCls } = props;
|
|
const checkboxCls = {
|
|
[`${prefixCls}-checkbox`]: true,
|
|
};
|
|
if (props.checkPart) {
|
|
checkboxCls[`${prefixCls}-checkbox-indeterminate`] = true;
|
|
} else if (props.checked) {
|
|
checkboxCls[`${prefixCls}-checkbox-checked`] = true;
|
|
}
|
|
let customEle = null;
|
|
if (typeof props.checkable !== 'boolean') {
|
|
customEle = props.checkable;
|
|
}
|
|
if (props.disabled) {
|
|
checkboxCls[`${prefixCls}-checkbox-disabled`] = true;
|
|
return <span ref="checkbox" className={classSet(checkboxCls)}>{customEle}</span>;
|
|
}
|
|
return (<span ref="checkbox" className={classSet(checkboxCls)} onClick={this.handleSelectALl.bind(this)}>{customEle}</span>);
|
|
}
|
|
|
|
matchFilter(text, filterText) {
|
|
const regex = new RegExp(filterText);
|
|
return text.match(regex);
|
|
}
|
|
|
|
render() {
|
|
let self = this;
|
|
const { prefixCls, dataSource, title, filter, width, checkedKeys, checkStatus, body, footer, showSearch } = this.props;
|
|
|
|
// Custom Layout
|
|
const footerDom = footer({...this.props});
|
|
const bodyDom = body({...this.props});
|
|
|
|
return (<div className={prefixCls} {...this.props} style={{width: width}}>
|
|
<div className={`${prefixCls}-header`}>
|
|
{this.renderCheckbox({
|
|
prefixCls: 'ant-tree',
|
|
checked: checkStatus === 'all',
|
|
checkPart: checkStatus === 'part',
|
|
checkable: <span className={`ant-tree-checkbox-inner`}></span>
|
|
})} { (checkedKeys.length > 0 ? checkedKeys.length + '/' : '') + dataSource.length} 条
|
|
<span className={`${prefixCls}-header-title`}>{title}</span>
|
|
</div>
|
|
{ bodyDom ? bodyDom :
|
|
<div className={ showSearch ? `${prefixCls}-body ${prefixCls}-body-with-search` : `${prefixCls}-body`}>
|
|
{ showSearch ? <div className={`${prefixCls}-body-search-wrapper`}>
|
|
<Search className={`${prefixCls}-body-search-bar`} onChange={this.handleFilter.bind(this)} handleClear={this.handleClear.bind(this)} value={filter} />
|
|
</div> : null }
|
|
<ul>
|
|
{ dataSource.length > 0 ?
|
|
dataSource.map((item)=> {
|
|
// apply filter
|
|
const itemText = self.props.render(item);
|
|
const filterResult = self.matchFilter(itemText, filter);
|
|
|
|
if ( filterResult ) {
|
|
return <li onClick={this.handleSelect.bind(this, item)} key={item.key}>
|
|
<Checkbox checked={checkedKeys.some((key) => key === item.key)} />
|
|
{ self.props.render(item) }
|
|
</li>;
|
|
}
|
|
}) : <div className={`${prefixCls}-body-not-found`}>
|
|
Not Found
|
|
</div>
|
|
}
|
|
</ul>
|
|
</div>}
|
|
{ footerDom ? <div className={`${prefixCls}-footer`}>
|
|
{ footerDom }
|
|
</div> : null }
|
|
</div>);
|
|
}
|
|
}
|
|
|
|
TransferList.defaultProps = {
|
|
prefixCls: 'ant-transfer-list',
|
|
dataSource: [],
|
|
showSearch: false,
|
|
searchPlaceholder: '',
|
|
width: 160,
|
|
handleFilter: noop,
|
|
handleSelect: noop,
|
|
handleSelectAll: noop,
|
|
render: noop,
|
|
//advanced
|
|
body: noop,
|
|
footer: noop,
|
|
};
|
|
|
|
TransferList.propTypes = {
|
|
prefixCls: PropTypes.string,
|
|
dataSource: PropTypes.array,
|
|
showSearch: PropTypes.bool,
|
|
searchPlaceholder: PropTypes.string,
|
|
width: PropTypes.number,
|
|
handleFilter: PropTypes.func,
|
|
handleSelect: PropTypes.func,
|
|
handleSelectAll: PropTypes.func,
|
|
render: PropTypes.func,
|
|
body: PropTypes.func,
|
|
footer: PropTypes.func,
|
|
};
|
|
|
|
export default TransferList;
|
|
|