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.

293 lines
7.9 KiB

import * as React from 'react';
import * as ReactDOM from 'react-dom';
9 years ago
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';
9 years ago
function isIEorEDGE() {
return (document as any).documentMode || /Edge/.test(navigator.userAgent);
}
6 years ago
function noop() {}
9 years ago
function isRenderResultPlainObject(result: any) {
6 years ago
return (
result &&
!React.isValidElement(result) &&
Object.prototype.toString.call(result) === '[object Object]'
);
}
9 years ago
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;
8 years ago
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;
fixIERepaintTimer: number;
notFoundNode: HTMLDivElement;
constructor(props: TransferListProps) {
9 years ago
super(props);
this.state = {
mounted: false,
};
}
componentDidMount() {
this.timer = window.setTimeout(() => {
this.setState({
mounted: true,
});
}, 0);
9 years ago
}
componentWillUnmount() {
clearTimeout(this.timer);
clearTimeout(this.triggerScrollTimer);
clearTimeout(this.fixIERepaintTimer);
}
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';
9 years ago
}
handleSelect = (selectedItem: TransferItem) => {
9 years ago
const { checkedKeys } = this.props;
6 years ago
const result = checkedKeys.some(key => key === selectedItem.key);
9 years ago
this.props.handleSelect(selectedItem, !result);
6 years ago
};
9 years ago
handleFilter = (e: React.ChangeEvent<HTMLInputElement>) => {
this.props.handleFilter(e);
if (!e.target.value) {
return;
}
// Manually trigger scroll event for lazy search bug
// https://github.com/ant-design/ant-design/issues/5631
this.triggerScrollTimer = window.setTimeout(() => {
const transferNode = ReactDOM.findDOMNode(this) as Element;
const listNode = transferNode.querySelectorAll('.ant-transfer-list-content')[0];
if (listNode) {
triggerEvent(listNode, 'scroll');
}
}, 0);
this.fixIERepaint();
6 years ago
};
handleClear = () => {
9 years ago
this.props.handleClear();
this.fixIERepaint();
6 years ago
};
9 years ago
matchFilter = (text: string, item: TransferItem) => {
const { filter, filterOption } = this.props;
if (filterOption) {
return filterOption(filter, item);
}
return text.indexOf(filter) >= 0;
6 years ago
};
renderItem = (item: TransferItem) => {
const { render = noop } = this.props;
const renderResult = render(item);
const isRenderResultPlain = isRenderResultPlainObject(renderResult);
return {
renderedText: isRenderResultPlain ? renderResult.value : renderResult,
renderedEl: isRenderResultPlain ? renderResult.label : renderResult,
};
6 years ago
};
saveNotFoundRef = (node: HTMLDivElement) => {
this.notFoundNode = node;
6 years ago
};
// Fix IE/Edge repaint
// https://github.com/ant-design/ant-design/issues/9697
// https://stackoverflow.com/q/27947912/3040605
fixIERepaint() {
if (!isIEorEDGE()) {
return;
}
this.fixIERepaintTimer = window.setTimeout(() => {
if (this.notFoundNode) {
this.notFoundNode.className = this.notFoundNode.className;
}
}, 0);
}
9 years ago
render() {
const {
6 years ago
prefixCls,
dataSource,
titleText,
checkedKeys,
lazy,
disabled,
body,
footer,
showSearch,
style,
filter,
searchPlaceholder,
notFoundContent,
itemUnit,
itemsUnit,
onScroll,
} = this.props;
9 years ago
// Custom Layout
const footerDom = footer && footer(this.props);
const bodyDom = body && body(this.props);
9 years ago
const listCls = classNames(prefixCls, {
[`${prefixCls}-with-footer`]: !!footerDom,
9 years ago
});
const filteredDataSource: TransferItem[] = [];
const totalDataSource: TransferItem[] = [];
6 years ago
const showItems = dataSource.map(item => {
const { renderedText, renderedEl } = this.renderItem(item);
if (filter && filter.trim() && !this.matchFilter(renderedText, item)) {
return null;
}
// all show items
totalDataSource.push(item);
if (!item.disabled) {
6 years ago
// response to checkAll items
filteredDataSource.push(item);
}
const checked = checkedKeys.indexOf(item.key) >= 0;
return (
<Item
disabled={disabled}
key={item.key}
item={item}
lazy={lazy}
renderedText={renderedText}
renderedEl={renderedEl}
checked={checked}
prefixCls={prefixCls}
onClick={this.handleSelect}
/>
);
});
const unit = dataSource.length > 1 ? itemsUnit : itemUnit;
8 years ago
const search = showSearch ? (
<div className={`${prefixCls}-body-search-wrapper`}>
<Search
prefixCls={`${prefixCls}-search`}
onChange={this.handleFilter}
handleClear={this.handleClear}
placeholder={searchPlaceholder}
8 years ago
value={filter}
disabled={disabled}
8 years ago
/>
</div>
) : null;
const listBody = bodyDom || (
6 years ago
<div
className={classNames(
showSearch ? `${prefixCls}-body ${prefixCls}-body-with-search` : `${prefixCls}-body`,
)}
>
8 years ago
{search}
<Animate
component="ul"
componentProps={{ onScroll }}
className={`${prefixCls}-content`}
transitionName={this.state.mounted ? `${prefixCls}-content-item-highlight` : ''}
transitionLeave={false}
>
{showItems}
</Animate>
<div className={`${prefixCls}-body-not-found`} ref={this.saveNotFoundRef}>
{notFoundContent}
</div>
</div>
);
6 years ago
const listFooter = footerDom ? <div className={`${prefixCls}-footer`}>{footerDom}</div> : null;
const checkStatus = this.getCheckStatus(filteredDataSource);
const checkedAll = checkStatus === 'all';
const checkAllCheckbox = (
<Checkbox
ref="checkbox"
disabled={disabled}
checked={checkedAll}
indeterminate={checkStatus === 'part'}
onChange={() => this.props.handleSelectAll(filteredDataSource, checkedAll)}
/>
);
8 years ago
return (
<div className={listCls} style={style}>
<div className={`${prefixCls}-header`}>
{checkAllCheckbox}
<span className={`${prefixCls}-header-selected`}>
<span>
6 years ago
{(checkedKeys.length > 0 ? `${checkedKeys.length}/` : '') + totalDataSource.length}{' '}
{unit}
</span>
6 years ago
<span className={`${prefixCls}-header-title`}>{titleText}</span>
</span>
</div>
{listBody}
{listFooter}
</div>
);
9 years ago
}
}