|
|
|
import * as React from 'react';
|
|
|
|
import * as ReactDOM from 'react-dom';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import Animate from 'rc-animate';
|
|
|
|
import PureRenderMixin from 'rc-util/lib/PureRenderMixin';
|
|
|
|
import Checkbox from '../checkbox';
|
|
|
|
import { TransferItem } from './index';
|
|
|
|
import Search from './search';
|
|
|
|
import Item from './item';
|
|
|
|
import triggerEvent from '../_util/triggerEvent';
|
|
|
|
|
|
|
|
function noop() {}
|
|
|
|
|
|
|
|
function isRenderResultPlainObject(result: any) {
|
|
|
|
return (
|
|
|
|
result &&
|
|
|
|
!React.isValidElement(result) &&
|
|
|
|
Object.prototype.toString.call(result) === '[object Object]'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface TransferListProps {
|
|
|
|
prefixCls: string;
|
|
|
|
titleText: string;
|
|
|
|
dataSource: TransferItem[];
|
|
|
|
filter: string;
|
|
|
|
filterOption?: (filterText: any, item: any) => boolean;
|
|
|
|
style?: React.CSSProperties;
|
|
|
|
checkedKeys: string[];
|
|
|
|
handleFilter: (e: any) => void;
|
|
|
|
handleSelect: (selectedItem: any, checked: boolean) => void;
|
|
|
|
handleSelectAll: (dataSource: any[], checkAll: boolean) => void;
|
|
|
|
handleClear: () => void;
|
|
|
|
render?: (item: any) => any;
|
|
|
|
showSearch?: boolean;
|
|
|
|
searchPlaceholder: string;
|
|
|
|
notFoundContent: React.ReactNode;
|
|
|
|
itemUnit: string;
|
|
|
|
itemsUnit: string;
|
|
|
|
body?: (props: TransferListProps) => React.ReactNode;
|
|
|
|
footer?: (props: TransferListProps) => React.ReactNode;
|
|
|
|
lazy?: boolean | {};
|
|
|
|
onScroll: Function;
|
|
|
|
disabled?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class TransferList extends React.Component<TransferListProps, any> {
|
|
|
|
static defaultProps = {
|
|
|
|
dataSource: [],
|
|
|
|
titleText: '',
|
|
|
|
showSearch: false,
|
|
|
|
render: noop,
|
|
|
|
lazy: {},
|
|
|
|
};
|
|
|
|
|
|
|
|
timer: number;
|
|
|
|
triggerScrollTimer: number;
|
|
|
|
notFoundNode: HTMLDivElement;
|
|
|
|
|
|
|
|
constructor(props: TransferListProps) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
mounted: false,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
this.timer = window.setTimeout(() => {
|
|
|
|
this.setState({
|
|
|
|
mounted: true,
|
|
|
|
});
|
|
|
|
}, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
clearTimeout(this.timer);
|
|
|
|
clearTimeout(this.triggerScrollTimer);
|
|
|
|
}
|
|
|
|
|
|
|
|
shouldComponentUpdate(...args: any[]) {
|
|
|
|
return PureRenderMixin.shouldComponentUpdate.apply(this, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
getCheckStatus(filteredDataSource: TransferItem[]) {
|
|
|
|
const { checkedKeys } = this.props;
|
|
|
|
if (checkedKeys.length === 0) {
|
|
|
|
return 'none';
|
|
|
|
} else if (filteredDataSource.every(item => checkedKeys.indexOf(item.key) >= 0)) {
|
|
|
|
return 'all';
|
|
|
|
}
|
|
|
|
return 'part';
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSelect = (selectedItem: TransferItem) => {
|
|
|
|
const { checkedKeys } = this.props;
|
|
|
|
const result = checkedKeys.some(key => key === selectedItem.key);
|
|
|
|
this.props.handleSelect(selectedItem, !result);
|
|