2016-09-19 17:52:20 +08:00
|
|
|
import React from 'react';
|
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';
|
2016-10-28 13:56:23 +08:00
|
|
|
import PureRenderMixin from 'rc-util/lib/PureRenderMixin';
|
2016-06-22 13:18:43 +08:00
|
|
|
import assign from 'object-assign';
|
2016-07-01 20:52:17 +08:00
|
|
|
import { TransferItem } from './index';
|
2016-11-04 16:52:57 +08:00
|
|
|
import Item from './item';
|
2015-12-24 17:44:54 +08:00
|
|
|
|
2015-11-25 23:17:06 +08:00
|
|
|
function noop() {
|
|
|
|
}
|
|
|
|
|
2016-07-07 20:25:03 +08:00
|
|
|
export interface TransferListProps {
|
2016-10-24 16:30:38 +08:00
|
|
|
prefixCls: string;
|
2016-09-19 17:52:20 +08:00
|
|
|
dataSource: TransferItem[];
|
2016-08-08 14:42:29 +08:00
|
|
|
filter?: string;
|
2016-07-13 11:14:24 +08:00
|
|
|
showSearch?: boolean;
|
|
|
|
searchPlaceholder?: string;
|
|
|
|
titleText?: string;
|
|
|
|
style?: React.CSSProperties;
|
2016-10-24 16:30:38 +08:00
|
|
|
handleFilter: (e: any) => void;
|
|
|
|
handleSelect: (selectedItem: any, checked: boolean) => void;
|
|
|
|
handleSelectAll: (dataSource: any[], checkAll: boolean) => void;
|
|
|
|
handleClear: () => void;
|
2016-08-08 15:00:35 +08:00
|
|
|
render?: (item: any) => any;
|
2016-08-08 14:42:29 +08:00
|
|
|
body?: (props: any) => any;
|
|
|
|
footer?: (props: any) => void;
|
2016-10-24 16:30:38 +08:00
|
|
|
checkedKeys: string[];
|
2016-07-13 11:14:24 +08:00
|
|
|
checkStatus?: boolean;
|
|
|
|
position?: string;
|
|
|
|
notFoundContent?: React.ReactNode | string;
|
2016-08-08 14:42:29 +08:00
|
|
|
filterOption: (filterText: any, item: any) => boolean;
|
2016-11-03 16:05:59 +08:00
|
|
|
lazy?: {};
|
2016-08-08 14:42:29 +08:00
|
|
|
}
|
|
|
|
|
2016-10-08 10:42:13 +08:00
|
|
|
export interface TransferListContext {
|
2016-08-08 14:42:29 +08:00
|
|
|
antLocale?: {
|
|
|
|
Transfer?: any,
|
|
|
|
};
|
2016-07-01 20:52:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default class TransferList extends React.Component<TransferListProps, any> {
|
2016-03-29 14:01:10 +08:00
|
|
|
static defaultProps = {
|
|
|
|
dataSource: [],
|
|
|
|
titleText: '',
|
|
|
|
showSearch: false,
|
|
|
|
render: noop,
|
2016-05-12 11:09:27 +08:00
|
|
|
};
|
2016-03-29 14:01:10 +08:00
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
antLocale: React.PropTypes.object,
|
2016-05-12 11:09:27 +08:00
|
|
|
};
|
2015-11-25 23:17:06 +08:00
|
|
|
|
2016-10-08 10:42:13 +08:00
|
|
|
context: TransferListContext;
|
|
|
|
timer: number;
|
2016-08-08 14:42:29 +08:00
|
|
|
|
2015-11-25 23:17:06 +08:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2015-12-29 15:48:22 +08:00
|
|
|
this.state = {
|
|
|
|
mounted: false,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2016-06-28 20:01:02 +08:00
|
|
|
this.timer = setTimeout(() => {
|
2015-12-29 15:48:22 +08:00
|
|
|
this.setState({
|
|
|
|
mounted: true,
|
|
|
|
});
|
|
|
|
}, 0);
|
2015-11-25 23:17:06 +08:00
|
|
|
}
|
|
|
|
|
2016-06-28 20:01:02 +08:00
|
|
|
componentWillUnmount() {
|
|
|
|
clearTimeout(this.timer);
|
|
|
|
}
|
|
|
|
|
2016-06-21 17:41:39 +08:00
|
|
|
shouldComponentUpdate(...args) {
|
|
|
|
return PureRenderMixin.shouldComponentUpdate.apply(this, args);
|
|
|
|
}
|
|
|
|
|
2016-07-15 15:07:31 +08:00
|
|
|
getCheckStatus(filteredDataSource) {
|
|
|
|
const { checkedKeys } = this.props;
|
|
|
|
if (checkedKeys.length === 0) {
|
|
|
|
return 'none';
|
|
|
|
} else if (filteredDataSource.every(item => checkedKeys.indexOf(item.key) >= 0)) {
|
|
|
|
return 'all';
|
|
|
|
}
|
|
|
|
return 'part';
|
2015-11-25 23:17:06 +08:00
|
|
|
}
|
|
|
|
|
2016-03-23 19:50:44 +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
|
|
|
}
|
|
|
|
|
2016-03-23 19:50:44 +08:00
|
|
|
handleFilter = (e) => {
|
2015-11-26 16:07:11 +08:00
|
|
|
this.props.handleFilter(e);
|
|
|
|
}
|
|
|
|
|
2016-03-23 19:50:44 +08:00
|
|
|
handleClear = () => {
|
2015-12-17 16:08:16 +08:00
|
|
|
this.props.handleClear();
|
|
|
|
}
|
|
|
|
|
2016-07-15 15:07:31 +08:00
|
|
|
renderCheckbox({ prefixCls, filteredDataSource, checked, checkPart, disabled, checkable }) {
|
|
|
|
const checkAll = (!checkPart) && checked;
|
|
|
|
|
2015-12-24 17:44:54 +08:00
|
|
|
const checkboxCls = classNames({
|
2015-11-25 23:17:06 +08:00
|
|
|
[`${prefixCls}-checkbox`]: true,
|
2016-07-15 15:07:31 +08:00
|
|
|
[`${prefixCls}-checkbox-indeterminate`]: checkPart,
|
|
|
|
[`${prefixCls}-checkbox-checked`]: checkAll,
|
|
|
|
[`${prefixCls}-checkbox-disabled`]: disabled,
|
2015-12-24 17:44:54 +08:00
|
|
|
});
|
2016-07-15 15:07:31 +08:00
|
|
|
|
2016-01-07 14:21:29 +08:00
|
|
|
return (
|
2016-07-15 15:07:31 +08:00
|
|
|
<span
|
|
|
|
ref="checkbox"
|
2016-01-07 17:46:46 +08:00
|
|
|
className={checkboxCls}
|
2016-07-15 15:07:31 +08:00
|
|
|
onClick={() => this.props.handleSelectAll(filteredDataSource, checkAll)}
|
2016-06-06 13:54:10 +08:00
|
|
|
>
|
2016-07-15 15:07:31 +08:00
|
|
|
{(typeof checkable !== 'boolean') ? checkable : null}
|
2016-01-07 14:21:29 +08:00
|
|
|
</span>
|
|
|
|
);
|
2015-11-25 23:17:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2016-11-04 16:52:57 +08:00
|
|
|
const { prefixCls, dataSource, titleText, filter, checkedKeys, lazy, filterOption,
|
2016-10-24 16:30:38 +08:00
|
|
|
body = noop, footer = noop, showSearch, render = noop, style } = this.props;
|
2016-03-07 14:52:14 +08:00
|
|
|
|
2016-07-08 17:17:57 +08:00
|
|
|
let { searchPlaceholder, notFoundContent } = this.props;
|
2015-11-25 23:17:06 +08:00
|
|
|
|
2015-12-16 23:02:49 +08:00
|
|
|
// Custom Layout
|
2016-06-22 13:18:43 +08:00
|
|
|
const footerDom = footer(assign({}, this.props));
|
|
|
|
const bodyDom = body(assign({}, this.props));
|
2015-12-15 17:08:34 +08:00
|
|
|
|
2015-12-24 17:44:54 +08:00
|
|
|
const listCls = classNames({
|
|
|
|
[prefixCls]: true,
|
2016-02-17 18:04:42 +08:00
|
|
|
[`${prefixCls}-with-footer`]: !!footerDom,
|
2015-12-24 17:44:54 +08:00
|
|
|
});
|
|
|
|
|
2016-10-24 16:30:38 +08:00
|
|
|
const filteredDataSource: TransferItem[] = [];
|
2016-07-15 15:07:31 +08:00
|
|
|
|
2016-09-19 17:52:20 +08:00
|
|
|
const showItems = dataSource.map((item) => {
|
|
|
|
if (!item.disabled) {
|
|
|
|
filteredDataSource.push(item);
|
2016-07-07 18:42:59 +08:00
|
|
|
}
|
2016-11-04 16:52:57 +08:00
|
|
|
const checked = checkedKeys.indexOf(item.key) >= 0;
|
2016-02-22 10:52:30 +08:00
|
|
|
return (
|
2016-11-04 16:52:57 +08:00
|
|
|
<Item
|
|
|
|
key={item.key}
|
|
|
|
item={item}
|
|
|
|
lazy={lazy}
|
|
|
|
render={render}
|
|
|
|
filter={filter}
|
|
|
|
filterOption={filterOption}
|
|
|
|
checked={checked}
|
|
|
|
prefixCls={prefixCls}
|
|
|
|
onClick={this.handleSelect}
|
|
|
|
/>
|
2016-02-22 10:52:30 +08:00
|
|
|
);
|
2016-09-19 17:52:20 +08:00
|
|
|
});
|
2016-01-13 16:28:36 +08:00
|
|
|
|
2016-11-09 20:30:31 +08:00
|
|
|
let unit = '';
|
2016-09-19 17:52:20 +08:00
|
|
|
const antLocale = this.context.antLocale;
|
|
|
|
if (antLocale && antLocale.Transfer) {
|
|
|
|
const transferLocale = antLocale.Transfer;
|
|
|
|
unit = dataSource.length > 1 ? transferLocale.itemsUnit : transferLocale.itemUnit;
|
|
|
|
searchPlaceholder = searchPlaceholder || transferLocale.searchPlaceholder;
|
|
|
|
notFoundContent = notFoundContent || transferLocale.notFoundContent;
|
2016-03-07 14:52:14 +08:00
|
|
|
}
|
|
|
|
|
2016-07-15 15:07:31 +08:00
|
|
|
const checkStatus = this.getCheckStatus(filteredDataSource);
|
2016-09-14 16:18:33 +08:00
|
|
|
const outerPrefixCls = prefixCls.replace('-list', '');
|
2016-11-28 19:14:43 +08:00
|
|
|
const search = showSearch ? (
|
|
|
|
<div className={`${prefixCls}-body-search-wrapper`}>
|
|
|
|
<Search
|
|
|
|
prefixCls={`${prefixCls}-search`}
|
|
|
|
onChange={this.handleFilter}
|
|
|
|
handleClear={this.handleClear}
|
|
|
|
placeholder={searchPlaceholder || 'Search'}
|
|
|
|
value={filter}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
) : null;
|
2016-07-15 15:07:31 +08:00
|
|
|
|
2016-11-25 12:03:39 +08:00
|
|
|
const listBody = bodyDom || (
|
|
|
|
<div className={showSearch ? `${prefixCls}-body ${prefixCls}-body-with-search` : `${prefixCls}-body`}>
|
2016-11-28 19:14:43 +08:00
|
|
|
{search}
|
2016-11-25 12:03:39 +08:00
|
|
|
<Animate
|
|
|
|
component="ul"
|
|
|
|
className={`${prefixCls}-content`}
|
|
|
|
transitionName={this.state.mounted ? `${prefixCls}-content-item-highlight` : ''}
|
|
|
|
transitionLeave={false}
|
|
|
|
>
|
|
|
|
{showItems}
|
|
|
|
</Animate>
|
|
|
|
<div className={`${prefixCls}-body-not-found`}>
|
|
|
|
{notFoundContent || 'Not Found'}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
const listFooter = footerDom ? (
|
|
|
|
<div className={`${prefixCls}-footer`}>
|
|
|
|
{footerDom}
|
|
|
|
</div>
|
|
|
|
) : null;
|
|
|
|
|
2016-11-28 19:14:43 +08:00
|
|
|
const renderedCheckbox = this.renderCheckbox({
|
|
|
|
prefixCls: outerPrefixCls,
|
|
|
|
checked: checkStatus === 'all',
|
|
|
|
checkPart: checkStatus === 'part',
|
|
|
|
checkable: <span className={`${outerPrefixCls}-checkbox-inner`} />,
|
|
|
|
filteredDataSource,
|
|
|
|
disabled: false,
|
|
|
|
});
|
|
|
|
|
2016-01-07 14:21:29 +08:00
|
|
|
return (
|
2016-07-08 17:17:57 +08:00
|
|
|
<div className={listCls} style={style}>
|
2016-01-07 14:21:29 +08:00
|
|
|
<div className={`${prefixCls}-header`}>
|
2016-11-28 19:14:43 +08:00
|
|
|
{renderedCheckbox}
|
2016-03-07 14:52:14 +08:00
|
|
|
<span className={`${prefixCls}-header-selected`}>
|
|
|
|
<span>
|
|
|
|
{(checkedKeys.length > 0 ? `${checkedKeys.length}/` : '') + dataSource.length} {unit}
|
|
|
|
</span>
|
|
|
|
<span className={`${prefixCls}-header-title`}>
|
|
|
|
{titleText}
|
|
|
|
</span>
|
|
|
|
</span>
|
2016-01-07 14:21:29 +08:00
|
|
|
</div>
|
2016-11-25 12:03:39 +08:00
|
|
|
{listBody}
|
|
|
|
{listFooter}
|
2016-01-07 14:21:29 +08:00
|
|
|
</div>
|
|
|
|
);
|
2015-11-25 23:17:06 +08:00
|
|
|
}
|
|
|
|
}
|