ant-design/components/transfer/index.tsx

417 lines
13 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import List, { TransferListProps } from './list';
2015-12-25 17:53:35 +08:00
import Operation from './operation';
import Search from './search';
import LocaleReceiver from '../locale-provider/LocaleReceiver';
import defaultLocale from '../locale-provider/default';
export { TransferListProps } from './list';
export { TransferOperationProps } from './operation';
export { SearchProps } from './search';
2015-11-25 23:17:06 +08:00
function noop() {
}
2017-11-20 17:41:32 +08:00
export type TransferDirection = 'left' | 'right';
export interface TransferItem {
2016-10-24 16:30:38 +08:00
key: string;
2016-07-13 11:14:24 +08:00
title: string;
description?: string;
disabled?: boolean;
}
2016-07-07 20:25:03 +08:00
export interface TransferProps {
2016-12-07 18:08:52 +08:00
prefixCls?: string;
className?: string;
dataSource: TransferItem[];
targetKeys?: string[];
selectedKeys?: string[];
render?: (record: TransferItem) => React.ReactNode;
onChange?: (targetKeys: string[], direction: string, moveKeys: any) => void;
onSelectChange?: (sourceSelectedKeys: string[], targetSelectedKeys: string[]) => void;
2016-12-07 18:08:52 +08:00
style?: React.CSSProperties;
2016-07-13 11:14:24 +08:00
listStyle?: React.CSSProperties;
titles?: string[];
operations?: string[];
2016-07-13 11:14:24 +08:00
showSearch?: boolean;
filterOption?: (inputValue: any, item: any) => boolean;
2016-07-13 11:14:24 +08:00
searchPlaceholder?: string;
notFoundContent?: React.ReactNode;
2016-12-07 18:08:52 +08:00
footer?: (props: TransferListProps) => React.ReactNode;
body?: (props: TransferListProps) => React.ReactNode;
rowKey?: (record: TransferItem) => string;
2017-11-20 17:41:32 +08:00
onSearchChange?: (direction: TransferDirection, e: React.ChangeEvent<HTMLInputElement>) => void;
2017-09-09 00:00:24 +08:00
lazy?: {} | boolean;
2017-11-20 17:41:32 +08:00
onScroll?: (direction: TransferDirection, e: React.SyntheticEvent<HTMLDivElement>) => void;
}
export interface TransferLocale {
titles: string[];
notFoundContent: string;
searchPlaceholder: string;
itemUnit: string;
itemsUnit: string;
}
export default class Transfer extends React.Component<TransferProps, any> {
// For high-level customized Transfer @dqaria
static List = List;
static Operation = Operation;
static Search = Search;
static defaultProps = {
dataSource: [],
render: noop,
showSearch: false,
};
static propTypes = {
prefixCls: PropTypes.string,
dataSource: PropTypes.array,
render: PropTypes.func,
targetKeys: PropTypes.array,
onChange: PropTypes.func,
height: PropTypes.number,
listStyle: PropTypes.object,
className: PropTypes.string,
titles: PropTypes.array,
operations: PropTypes.array,
showSearch: PropTypes.bool,
filterOption: PropTypes.func,
searchPlaceholder: PropTypes.string,
notFoundContent: PropTypes.node,
body: PropTypes.func,
footer: PropTypes.func,
rowKey: PropTypes.func,
lazy: PropTypes.oneOfType([PropTypes.object, PropTypes.bool]),
};
2015-11-25 23:17:06 +08:00
2017-05-11 11:38:32 +08:00
splitedDataSource: {
leftDataSource: TransferItem[],
rightDataSource: TransferItem[],
} | null;
2016-08-08 14:42:29 +08:00
constructor(props: TransferProps) {
2015-11-25 23:17:06 +08:00
super(props);
const { selectedKeys = [], targetKeys = [] } = props;
2015-11-25 23:17:06 +08:00
this.state = {
2015-11-26 16:07:11 +08:00
leftFilter: '',
rightFilter: '',
sourceSelectedKeys: selectedKeys.filter(key => targetKeys.indexOf(key) === -1),
targetSelectedKeys: selectedKeys.filter(key => targetKeys.indexOf(key) > -1),
2015-11-25 23:17:06 +08:00
};
}
2016-07-15 14:01:51 +08:00
componentWillReceiveProps(nextProps: TransferProps) {
const { sourceSelectedKeys, targetSelectedKeys } = this.state;
if (nextProps.targetKeys !== this.props.targetKeys ||
nextProps.dataSource !== this.props.dataSource) {
// clear cached splited dataSource
this.splitedDataSource = null;
if (!nextProps.selectedKeys) {
// clear key nolonger existed
// clear checkedKeys according to targetKeys
const { dataSource, targetKeys = [] } = nextProps;
2017-05-11 11:38:32 +08:00
const newSourceSelectedKeys: String[] = [];
const newTargetSelectedKeys: String[] = [];
2017-05-11 11:38:32 +08:00
dataSource.forEach(({ key }) => {
if (sourceSelectedKeys.includes(key) && !targetKeys.includes(key)) {
newSourceSelectedKeys.push(key);
}
2017-05-11 11:38:32 +08:00
if (targetSelectedKeys.includes(key) && targetKeys.includes(key)) {
newTargetSelectedKeys.push(key);
}
});
this.setState({
sourceSelectedKeys: newSourceSelectedKeys,
targetSelectedKeys: newTargetSelectedKeys,
});
}
}
if (nextProps.selectedKeys) {
const targetKeys = nextProps.targetKeys || [];
this.setState({
2017-05-11 11:38:32 +08:00
sourceSelectedKeys: nextProps.selectedKeys.filter(key => !targetKeys.includes(key)),
targetSelectedKeys: nextProps.selectedKeys.filter(key => targetKeys.includes(key)),
});
}
}
2016-10-24 16:30:38 +08:00
splitDataSource(props: TransferProps) {
if (this.splitedDataSource) {
return this.splitedDataSource;
}
2015-11-26 11:18:37 +08:00
2017-05-11 11:38:32 +08:00
const { dataSource, rowKey, targetKeys = [] } = props;
2015-12-21 15:29:02 +08:00
const leftDataSource: TransferItem[] = [];
2017-05-11 11:38:32 +08:00
const rightDataSource: TransferItem[] = new Array(targetKeys.length);
dataSource.forEach(record => {
if (rowKey) {
record.key = rowKey(record);
}
2017-05-11 11:38:32 +08:00
// rightDataSource should be ordered by targetKeys
// leftDataSource should be ordered by dataSource
const indexOfKey = targetKeys.indexOf(record.key);
if (indexOfKey !== -1) {
rightDataSource[indexOfKey] = record;
} else {
leftDataSource.push(record);
}
});
this.splitedDataSource = {
leftDataSource,
rightDataSource,
2015-12-21 15:29:02 +08:00
};
return this.splitedDataSource;
2015-12-16 23:02:49 +08:00
}
2017-11-20 17:41:32 +08:00
moveTo = (direction: TransferDirection) => {
const { targetKeys = [], dataSource = [], onChange } = this.props;
const { sourceSelectedKeys, targetSelectedKeys } = this.state;
const moveKeys = direction === 'right' ? sourceSelectedKeys : targetSelectedKeys;
// filter the disabled options
2017-11-20 17:41:32 +08:00
const newMoveKeys = moveKeys.filter((key: string) =>
!dataSource.some(data => !!(key === data.key && data.disabled)),
);
2015-12-21 15:29:02 +08:00
// move items to target box
2016-02-01 14:07:17 +08:00
const newTargetKeys = direction === 'right'
? newMoveKeys.concat(targetKeys)
: targetKeys.filter(targetKey => newMoveKeys.indexOf(targetKey) === -1);
2015-12-21 15:29:02 +08:00
// empty checked keys
const oppositeDirection = direction === 'right' ? 'left' : 'right';
2015-12-21 15:29:02 +08:00
this.setState({
[this.getSelectedKeysName(oppositeDirection)]: [],
2015-12-21 15:29:02 +08:00
});
this.handleSelectChange(oppositeDirection, []);
2015-12-21 15:29:02 +08:00
2016-10-24 16:30:38 +08:00
if (onChange) {
onChange(newTargetKeys, direction, newMoveKeys);
2016-10-24 16:30:38 +08:00
}
2015-11-25 23:17:06 +08:00
}
moveToLeft = () => this.moveTo('left');
moveToRight = () => this.moveTo('right');
2016-03-30 17:06:19 +08:00
2017-11-20 17:41:32 +08:00
handleSelectChange(direction: TransferDirection, holder: string[]) {
const { sourceSelectedKeys, targetSelectedKeys } = this.state;
const onSelectChange = this.props.onSelectChange;
2016-10-24 16:30:38 +08:00
if (!onSelectChange) {
return;
}
if (direction === 'left') {
onSelectChange(holder, targetSelectedKeys);
} else {
onSelectChange(sourceSelectedKeys, holder);
}
}
2017-11-20 17:41:32 +08:00
handleSelectAll = (direction: TransferDirection, filteredDataSource: TransferItem[], checkAll: boolean) => {
const originalSelectedKeys = this.state[this.getSelectedKeysName(direction)] || [];
const currentKeys = filteredDataSource.map(item => item.key);
// Only operate current keys from original selected keys
2017-11-20 17:41:32 +08:00
const newKeys1 = originalSelectedKeys.filter((key: string) => currentKeys.indexOf(key) === -1);
const newKeys2 = [...originalSelectedKeys];
currentKeys.forEach((key) => {
if (newKeys2.indexOf(key) === -1) {
newKeys2.push(key);
}
});
const holder = checkAll ? newKeys1 : newKeys2;
this.handleSelectChange(direction, holder);
if (!this.props.selectedKeys) {
this.setState({
[this.getSelectedKeysName(direction)]: holder,
});
}
2015-11-25 23:17:06 +08:00
}
2017-11-20 17:41:32 +08:00
handleLeftSelectAll = (filteredDataSource: TransferItem[], checkAll: boolean) => (
2016-08-08 14:42:29 +08:00
this.handleSelectAll('left', filteredDataSource, checkAll)
)
2017-11-20 17:41:32 +08:00
handleRightSelectAll = (filteredDataSource: TransferItem[], checkAll: boolean) => (
2016-08-08 14:42:29 +08:00
this.handleSelectAll('right', filteredDataSource, checkAll)
)
2016-03-30 17:06:19 +08:00
2017-11-20 17:41:32 +08:00
handleFilter = (direction: TransferDirection, e: React.ChangeEvent<HTMLInputElement>) => {
2015-12-21 15:29:02 +08:00
this.setState({
2015-12-23 19:41:56 +08:00
// add filter
[`${direction}Filter`]: e.target.value,
2015-12-21 15:29:02 +08:00
});
if (this.props.onSearchChange) {
this.props.onSearchChange(direction, e);
}
2015-11-26 16:07:11 +08:00
}
2017-11-20 17:41:32 +08:00
handleLeftFilter = (e: React.ChangeEvent<HTMLInputElement>) => this.handleFilter('left', e);
handleRightFilter = (e: React.ChangeEvent<HTMLInputElement>) => this.handleFilter('right', e);
2016-03-30 17:06:19 +08:00
2017-11-20 17:41:32 +08:00
handleClear = (direction: string) => {
2015-12-21 15:29:02 +08:00
this.setState({
[`${direction}Filter`]: '',
2015-11-25 23:17:06 +08:00
});
2015-12-21 15:29:02 +08:00
}
2015-11-25 23:17:06 +08:00
handleLeftClear = () => this.handleClear('left');
handleRightClear = () => this.handleClear('right');
2016-03-30 17:06:19 +08:00
2017-11-20 17:41:32 +08:00
handleSelect = (direction: TransferDirection, selectedItem: TransferItem, checked: boolean) => {
const { sourceSelectedKeys, targetSelectedKeys } = this.state;
const holder = direction === 'left' ? [...sourceSelectedKeys] : [...targetSelectedKeys];
2016-11-15 15:21:13 +08:00
const index = holder.indexOf(selectedItem.key);
if (index > -1) {
2015-12-21 15:29:02 +08:00
holder.splice(index, 1);
}
if (checked) {
2015-12-21 15:29:02 +08:00
holder.push(selectedItem.key);
}
this.handleSelectChange(direction, holder);
if (!this.props.selectedKeys) {
this.setState({
[this.getSelectedKeysName(direction)]: holder,
});
}
2015-11-25 23:17:06 +08:00
}
2017-11-20 17:41:32 +08:00
handleLeftSelect = (selectedItem: TransferItem, checked: boolean) => {
return this.handleSelect('left', selectedItem, checked);
}
handleRightSelect = (selectedItem: TransferItem, checked: boolean) => {
return this.handleSelect('right', selectedItem, checked);
}
2016-03-30 17:06:19 +08:00
2017-11-20 17:41:32 +08:00
handleScroll = (direction: TransferDirection, e: React.SyntheticEvent<HTMLDivElement>) => {
const { onScroll } = this.props;
if (onScroll) {
onScroll(direction, e);
}
}
2017-11-20 17:41:32 +08:00
handleLeftScroll = (e: React.SyntheticEvent<HTMLDivElement>) => this.handleScroll('left', e);
handleRightScroll = (e: React.SyntheticEvent<HTMLDivElement>) => this.handleScroll('right', e);
2017-11-20 17:41:32 +08:00
getTitles(transferLocale: TransferLocale): string[] {
const { props } = this;
2016-12-07 18:08:52 +08:00
if (props.titles) {
return props.titles;
}
return transferLocale.titles;
}
2017-11-20 17:41:32 +08:00
getSelectedKeysName(direction: TransferDirection) {
return direction === 'left' ? 'sourceSelectedKeys' : 'targetSelectedKeys';
}
2017-11-20 17:41:32 +08:00
renderTransfer = (locale: TransferLocale) => {
2015-12-24 17:44:54 +08:00
const {
prefixCls = 'ant-transfer',
className,
operations = [],
showSearch,
notFoundContent,
searchPlaceholder,
body,
footer,
listStyle,
filterOption,
render,
lazy,
2015-12-24 17:44:54 +08:00
} = this.props;
const { leftFilter, rightFilter, sourceSelectedKeys, targetSelectedKeys } = this.state;
2015-11-25 23:17:06 +08:00
const { leftDataSource, rightDataSource } = this.splitDataSource(this.props);
const leftActive = targetSelectedKeys.length > 0;
const rightActive = sourceSelectedKeys.length > 0;
2015-12-23 19:41:56 +08:00
const cls = classNames(className, prefixCls);
2015-12-24 17:44:54 +08:00
const titles = this.getTitles(locale);
return (
<div className={cls}>
<List
prefixCls={`${prefixCls}-list`}
titleText={titles[0]}
dataSource={leftDataSource}
filter={leftFilter}
filterOption={filterOption}
style={listStyle}
checkedKeys={sourceSelectedKeys}
2016-03-30 17:06:19 +08:00
handleFilter={this.handleLeftFilter}
handleClear={this.handleLeftClear}
handleSelect={this.handleLeftSelect}
handleSelectAll={this.handleLeftSelectAll}
render={render}
showSearch={showSearch}
searchPlaceholder={searchPlaceholder || locale.searchPlaceholder}
notFoundContent={notFoundContent || locale.notFoundContent}
itemUnit={locale.itemUnit}
itemsUnit={locale.itemsUnit}
body={body}
footer={footer}
lazy={lazy}
onScroll={this.handleLeftScroll}
/>
<Operation
className={`${prefixCls}-operation`}
rightActive={rightActive}
rightArrowText={operations[0]}
2016-03-30 17:06:19 +08:00
moveToRight={this.moveToRight}
leftActive={leftActive}
leftArrowText={operations[1]}
2016-03-30 17:06:19 +08:00
moveToLeft={this.moveToLeft}
/>
<List
prefixCls={`${prefixCls}-list`}
titleText={titles[1]}
dataSource={rightDataSource}
filter={rightFilter}
filterOption={filterOption}
style={listStyle}
checkedKeys={targetSelectedKeys}
2016-03-30 17:06:19 +08:00
handleFilter={this.handleRightFilter}
handleClear={this.handleRightClear}
handleSelect={this.handleRightSelect}
handleSelectAll={this.handleRightSelectAll}
render={render}
showSearch={showSearch}
searchPlaceholder={searchPlaceholder || locale.searchPlaceholder}
notFoundContent={notFoundContent || locale.notFoundContent}
itemUnit={locale.itemUnit}
itemsUnit={locale.itemsUnit}
body={body}
footer={footer}
lazy={lazy}
onScroll={this.handleRightScroll}
/>
</div>
);
2015-11-25 23:17:06 +08:00
}
render() {
return (
<LocaleReceiver
componentName="Transfer"
defaultLocale={defaultLocale.Transfer}
>
{this.renderTransfer}
</LocaleReceiver>
);
}
}