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.

158 lines
4.5 KiB

9 years ago
import React, { Component, PropTypes } from 'react';
import Checkbox from '../checkbox';
import Search from './search';
9 years ago
import classNames from 'classnames';
import Animate from 'rc-animate';
9 years ago
9 years ago
function noop() {
}
class TransferList extends Component {
constructor(props) {
super(props);
this.state = {
mounted: false,
};
}
componentDidMount() {
setTimeout(() => {
this.setState({
mounted: true,
});
}, 0);
9 years ago
}
handleSelectALl() {
this.props.handleSelectAll();
9 years ago
}
9 years ago
handleSelect(selectedItem) {
9 years ago
const { checkedKeys } = this.props;
const result = checkedKeys.some((key) => key === selectedItem.key);
this.props.handleSelect(selectedItem, !result);
9 years ago
}
handleFilter(e) {
this.props.handleFilter(e);
}
9 years ago
handleClear() {
this.props.handleClear();
}
9 years ago
renderCheckbox(props) {
const { prefixCls } = props;
9 years ago
const checkboxCls = classNames({
9 years ago
[`${prefixCls}-checkbox`]: true,
9 years ago
[`${prefixCls}-checkbox-indeterminate`]: props.checkPart,
[`${prefixCls}-checkbox-checked`]: (!props.checkPart) && props.checked,
[`${prefixCls}-checkbox-disabled`]: !!props.disabled,
});
9 years ago
let customEle = null;
if (typeof props.checkable !== 'boolean') {
customEle = props.checkable;
}
return (
<span ref="checkbox"
className={checkboxCls}
onClick={(!props.disabled) && this.handleSelectALl.bind(this)}>
{customEle}
</span>
);
9 years ago
}
9 years ago
matchFilter(text, filterText) {
const regex = new RegExp(filterText);
return text.match(regex);
}
9 years ago
render() {
const { prefixCls, dataSource, titleText, filter, checkedKeys,
checkStatus, body, footer, showSearch } = this.props;
9 years ago
9 years ago
// Custom Layout
const footerDom = footer({ ...this.props });
const bodyDom = body({ ...this.props });
9 years ago
9 years ago
const listCls = classNames({
[prefixCls]: true,
[`${prefixCls}-with-footer`]: !!footerDom,
9 years ago
});
const showItems = dataSource.filter((item) => {
const itemText = this.props.render(item);
const filterResult = this.matchFilter(itemText, filter);
return !!filterResult;
}).map((item) => {
const renderedText = this.props.render(item);
return (
<li onClick={this.handleSelect.bind(this, item)} key={item.key} title={renderedText}>
<Checkbox checked={checkedKeys.some(key => key === item.key)} />
{renderedText}
</li>
);
});
return (
<div className={listCls} {...this.props}>
<div className={`${prefixCls}-header`}>
{this.renderCheckbox({
prefixCls: 'ant-transfer',
checked: checkStatus === 'all',
checkPart: checkStatus === 'part',
checkable: <span className={'ant-transfer-checkbox-inner'}></span>
})}<span className={`${prefixCls}-header-selected`}><span>{(checkedKeys.length > 0 ? `${checkedKeys.length}/` : '') + dataSource.length} </span>
<span className={`${prefixCls}-header-title`}>{titleText}</span></span>
</div>
{ bodyDom ||
<div className={ showSearch ? `${prefixCls}-body ${prefixCls}-body-with-search` : `${prefixCls}-body`}>
{ showSearch ? <div className={`${prefixCls}-body-search-wrapper`}>
<Search prefixCls={`${prefixCls}-search`} onChange={this.handleFilter.bind(this)} handleClear={this.handleClear.bind(this)} value={filter} />
</div> : null }
<Animate component="ul"
transitionName={this.state.mounted ? `${prefixCls}-highlight` : ''}
transitionLeave={false}>
{showItems.length > 0 ? showItems : <div className={`${prefixCls}-body-not-found`}>Not Found</div>}
</Animate>
</div>}
{ footerDom ? <div className={`${prefixCls}-footer`}>
{ footerDom }
9 years ago
</div> : null }
</div>
);
9 years ago
}
}
TransferList.defaultProps = {
dataSource: [],
titleText: '',
9 years ago
showSearch: false,
searchPlaceholder: '',
9 years ago
handleFilter: noop,
handleSelect: noop,
9 years ago
handleSelectAll: noop,
render: noop,
// advanced
9 years ago
body: noop,
footer: noop,
9 years ago
};
TransferList.propTypes = {
prefixCls: PropTypes.string,
dataSource: PropTypes.array,
showSearch: PropTypes.bool,
9 years ago
searchPlaceholder: PropTypes.string,
titleText: PropTypes.string,
9 years ago
style: PropTypes.object,
handleFilter: PropTypes.func,
9 years ago
handleSelect: PropTypes.func,
handleSelectAll: PropTypes.func,
render: PropTypes.func,
9 years ago
body: PropTypes.func,
footer: PropTypes.func,
9 years ago
};
export default TransferList;