ant-design/components/transfer/index.tsx

395 lines
12 KiB
TypeScript
Raw Normal View History

import 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 injectLocale from '../locale-provider/injectLocale';
2015-11-25 23:17:06 +08:00
function noop() {
}
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;
onSearchChange?: (direction: 'left' | 'right', e: Event) => void;
2017-09-09 00:00:24 +08:00
lazy?: {} | boolean;
onScroll?: (direction: 'left' | 'right', e: Event) => void;
}
abstract 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
abstract getLocale();
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
}
moveTo = (direction) => {
const { targetKeys = [], dataSource = [], onChange } = this.props;
const { sourceSelectedKeys, targetSelectedKeys } = this.state;
const moveKeys = direction === 'right' ? sourceSelectedKeys : targetSelectedKeys;
// filter the disabled options
const newMoveKeys = moveKeys.filter(key => !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
handleSelectChange(direction: string, 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);
}
}
handleSelectAll = (direction, filteredDataSource, checkAll) => {
const originalSelectedKeys = this.state[this.getSelectedKeysName(direction)] || [];
const currentKeys = filteredDataSource.map(item => item.key);
// Only operate current keys from original selected keys
const newKeys1 = originalSelectedKeys.filter(key => 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
}
2016-08-08 14:42:29 +08:00
handleLeftSelectAll = (filteredDataSource, checkAll) => (
this.handleSelectAll('left', filteredDataSource, checkAll)
)
2016-08-08 14:42:29 +08:00
handleRightSelectAll = (filteredDataSource, checkAll) => (
this.handleSelectAll('right', filteredDataSource, checkAll)
)
2016-03-30 17:06:19 +08:00
handleFilter = (direction, e) => {
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
}
handleLeftFilter = (e) => this.handleFilter('left', e);
handleRightFilter = (e) => this.handleFilter('right', e);
2016-03-30 17:06:19 +08:00
handleClear = (direction) => {
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
handleSelect = (direction, selectedItem, checked) => {
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
}
2016-03-30 17:06:19 +08:00
handleLeftSelect = (selectedItem, checked) => this.handleSelect('left', selectedItem, checked);
handleRightSelect = (selectedItem, checked) => this.handleSelect('right', selectedItem, checked);
handleScroll = (direction, e) => {
const { onScroll } = this.props;
if (onScroll) {
onScroll(direction, e);
}
}
handleLeftScroll = (e) => this.handleScroll('left', e);
handleRightScroll = (e) => this.handleScroll('right', e);
getTitles(): string[] {
const { props } = this;
2016-12-07 18:08:52 +08:00
if (props.titles) {
return props.titles;
}
const transferLocale = this.getLocale();
return transferLocale.titles;
}
getSelectedKeysName(direction) {
return direction === 'left' ? 'sourceSelectedKeys' : 'targetSelectedKeys';
}
2015-11-25 23:17:06 +08:00
render() {
const locale = this.getLocale();
2015-12-24 17:44:54 +08:00
const {
prefixCls = 'ant-transfer',
className,
operations = [],
showSearch,
notFoundContent = locale.notFoundContent,
searchPlaceholder = locale.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();
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}
notFoundContent={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}
notFoundContent={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
}
}
const injectTransferLocale = injectLocale('Transfer', {
titles: ['', ''],
searchPlaceholder: 'Search',
notFoundContent: 'Not Found',
});
export default injectTransferLocale<TransferProps>(Transfer as any);