ant-design/components/transfer/list.jsx

156 lines
4.5 KiB
React
Raw Normal View History

2015-11-25 23:17:06 +08:00
import React, { Component, PropTypes } from 'react';
import Checkbox from '../checkbox';
2015-12-25 17:53:35 +08:00
import Search from './search';
2015-12-24 17:44:54 +08:00
import classNames from 'classnames';
2015-12-29 15:48:22 +08:00
import Animate from 'rc-animate';
2015-12-24 17:44:54 +08:00
2015-11-25 23:17:06 +08:00
function noop() {
}
class TransferList extends Component {
constructor(props) {
super(props);
2015-12-29 15:48:22 +08:00
this.state = {
mounted: false,
};
}
componentDidMount() {
setTimeout(() => {
this.setState({
mounted: true,
});
}, 0);
2015-11-25 23:17:06 +08:00
}
handleSelectALl() {
2015-12-23 19:41:56 +08:00
this.props.handleSelectAll();
2015-11-25 23:17:06 +08:00
}
2015-12-16 23:02:49 +08:00
handleSelect(selectedItem) {
2015-12-21 15:29:02 +08:00
const { checkedKeys } = this.props;
const result = checkedKeys.some((key) => key === selectedItem.key);
this.props.handleSelect(selectedItem, !result);
2015-11-25 23:17:06 +08:00
}
2015-11-26 16:07:11 +08:00
handleFilter(e) {
this.props.handleFilter(e);
}
2015-12-17 16:08:16 +08:00
handleClear() {
this.props.handleClear();
}
2015-11-25 23:17:06 +08:00
renderCheckbox(props) {
const { prefixCls } = props;
2015-12-24 17:44:54 +08:00
const checkboxCls = classNames({
2015-11-25 23:17:06 +08:00
[`${prefixCls}-checkbox`]: true,
2015-12-24 17:44:54 +08:00
[`${prefixCls}-checkbox-indeterminate`]: props.checkPart,
[`${prefixCls}-checkbox-checked`]: (!props.checkPart) && props.checked,
[`${prefixCls}-checkbox-disabled`]: !!props.disabled,
});
2015-11-25 23:17:06 +08:00
let customEle = null;
if (typeof props.checkable !== 'boolean') {
customEle = props.checkable;
}
2015-12-24 17:44:54 +08:00
return <span ref="checkbox"
className={checkboxCls}
onClick={(!props.disabled) && this.handleSelectALl.bind(this)}>
{customEle}
</span>;
2015-11-25 23:17:06 +08:00
}
2015-12-21 15:29:02 +08:00
matchFilter(text, filterText) {
const regex = new RegExp(filterText);
return text.match(regex);
}
2015-11-25 23:17:06 +08:00
render() {
2015-12-24 17:44:54 +08:00
const { prefixCls, dataSource, titleText, filter, checkedKeys, checkStatus, body, footer, showSearch } = this.props;
2015-11-25 23:17:06 +08:00
2015-12-16 23:02:49 +08:00
// Custom Layout
2015-12-23 19:41:56 +08:00
const footerDom = footer({...this.props});
const bodyDom = body({...this.props});
2015-12-15 17:08:34 +08:00
2015-12-24 17:44:54 +08:00
const listCls = classNames({
[prefixCls]: true,
[prefixCls + '-with-footer']: !!footerDom,
});
return <div className={listCls} {...this.props}>
2015-12-21 15:29:02 +08:00
<div className={`${prefixCls}-header`}>
2015-11-25 23:17:06 +08:00
{this.renderCheckbox({
2015-12-23 22:59:42 +08:00
prefixCls: 'ant-transfer',
2015-12-23 19:41:56 +08:00
checked: checkStatus === 'all',
checkPart: checkStatus === 'part',
2015-12-23 22:59:42 +08:00
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>
2015-12-21 15:29:02 +08:00
</div>
{ bodyDom ? bodyDom :
2015-12-24 17:44:54 +08:00
<div className={ showSearch ? `${prefixCls}-body ${prefixCls}-body-with-search` : `${prefixCls}-body`}>
2015-12-21 15:29:02 +08:00
{ showSearch ? <div className={`${prefixCls}-body-search-wrapper`}>
2015-12-24 17:44:54 +08:00
<Search prefixCls={`${prefixCls}-search`} onChange={this.handleFilter.bind(this)} handleClear={this.handleClear.bind(this)} value={filter} />
2015-12-21 15:29:02 +08:00
</div> : null }
2015-12-29 15:48:22 +08:00
<Animate component="ul"
transitionName={this.state.mounted ? `${prefixCls}-highlight` : ''}
transitionLeave={false}>
{dataSource.length > 0 ?
2015-12-24 17:44:54 +08:00
dataSource.map((item) => {
2015-12-21 15:29:02 +08:00
// apply filter
2015-12-24 17:44:54 +08:00
const itemText = this.props.render(item);
const filterResult = this.matchFilter(itemText, filter);
2015-12-21 15:29:02 +08:00
2015-12-24 17:44:54 +08:00
const renderedText = this.props.render(item);
2015-12-23 22:59:42 +08:00
2015-12-29 15:48:22 +08:00
if (filterResult) {
return (
<li onClick={this.handleSelect.bind(this, item)} key={item.key} title={renderedText}>
<Checkbox checked={checkedKeys.some(key => key === item.key)} />
{renderedText}
</li>
);
2015-12-21 15:29:02 +08:00
}
2015-12-29 15:48:22 +08:00
}) : <div className={`${prefixCls}-body-not-found`}>Not Found</div>
}
</Animate>
2015-12-16 23:02:49 +08:00
</div>}
2015-12-15 17:08:34 +08:00
{ footerDom ? <div className={`${prefixCls}-footer`}>
{ footerDom }
2015-11-26 16:07:11 +08:00
</div> : null }
2015-12-24 17:44:54 +08:00
</div>;
2015-11-25 23:17:06 +08:00
}
}
TransferList.defaultProps = {
dataSource: [],
2015-12-23 22:59:42 +08:00
titleText: '',
2015-12-21 15:29:02 +08:00
showSearch: false,
searchPlaceholder: '',
2015-12-15 17:08:34 +08:00
handleFilter: noop,
handleSelect: noop,
2015-12-21 15:29:02 +08:00
handleSelectAll: noop,
render: noop,
2015-12-15 17:08:34 +08:00
//advanced
2015-12-16 23:02:49 +08:00
body: noop,
2015-12-23 19:50:44 +08:00
footer: noop,
2015-11-25 23:17:06 +08:00
};
TransferList.propTypes = {
prefixCls: PropTypes.string,
dataSource: PropTypes.array,
2015-12-23 19:50:44 +08:00
showSearch: PropTypes.bool,
2015-11-25 23:17:06 +08:00
searchPlaceholder: PropTypes.string,
2015-12-23 22:59:42 +08:00
titleText: PropTypes.string,
2015-12-24 17:44:54 +08:00
style: PropTypes.object,
2015-11-26 16:07:11 +08:00
handleFilter: PropTypes.func,
2015-11-25 23:17:06 +08:00
handleSelect: PropTypes.func,
handleSelectAll: PropTypes.func,
2015-12-23 19:50:44 +08:00
render: PropTypes.func,
2015-12-21 15:29:02 +08:00
body: PropTypes.func,
footer: PropTypes.func,
2015-11-25 23:17:06 +08:00
};
export default TransferList;