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.

288 lines
8.3 KiB

import * as React from 'react';
8 years ago
import { PropTypes } from 'react';
import List from './list';
import Operation from './operation';
import Search from './search';
9 years ago
import classNames from 'classnames';
9 years ago
function noop() {
}
export interface TransferItem {
key: number | string;
title: string;
description?: string;
chosen: boolean;
}
// Transfer
9 years ago
export interface TransferProps {
dataSource: Array<TransferItem>;
render?: (record: TransferItem) => any;
targetKeys: Array<string>;
onChange?: (targetKeys: Array<TransferItem>, direction: string, moveKeys: any) => void;
listStyle?: React.CSSProperties;
className?: string;
prefixCls?: string;
titles?: Array<string>;
operations?: Array<string>;
showSearch?: boolean;
searchPlaceholder?: string;
notFoundContent?: React.ReactNode | string;
footer?: (props: any) => any;
style?: React.CSSProperties;
filterOption: (filterText: any, item: any) => boolean;
body?: (props: any) => any;
}
export default class Transfer extends React.Component<TransferProps, any> {
static List = List;
static Operation = Operation;
static Search = Search;
static defaultProps = {
prefixCls: 'ant-transfer',
dataSource: [],
render: noop,
targetKeys: [],
onChange: noop,
titles: ['源列表', '目的列表'],
operations: [],
showSearch: false,
body: noop,
footer: noop,
};
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,
};
9 years ago
splitedDataSource: any;
9 years ago
constructor(props) {
super(props);
this.state = {
leftFilter: '',
rightFilter: '',
9 years ago
leftCheckedKeys: [],
rightCheckedKeys: [],
9 years ago
};
}
8 years ago
componentWillReceiveProps(nextProps) {
const { leftCheckedKeys, rightCheckedKeys } = this.state;
if (nextProps.targetKeys !== this.props.targetKeys ||
nextProps.dataSource !== this.props.dataSource) {
// clear cached splited dataSource
this.splitedDataSource = null;
const { dataSource, targetKeys } = nextProps;
// clear key nolonger existed
// clear checkedKeys according to targetKeys
this.setState({
leftCheckedKeys: leftCheckedKeys
.filter(data => dataSource.filter(item => item.key === data).length)
.filter(data => targetKeys.filter(key => key === data).length === 0),
rightCheckedKeys: rightCheckedKeys
.filter(data => dataSource.filter(item => item.key === data).length)
.filter(data => targetKeys.filter(key => key === data).length > 0),
});
}
}
splitDataSource(props) {
if (this.splitedDataSource) {
return this.splitedDataSource;
}
const { targetKeys } = props;
let { dataSource } = props;
if (props.rowKey) {
dataSource = dataSource.map(record => {
record.key = props.rowKey(record);
return record;
});
}
let leftDataSource = [...dataSource];
9 years ago
let rightDataSource = [];
9 years ago
if (targetKeys.length > 0) {
9 years ago
targetKeys.forEach((targetKey) => {
rightDataSource.push(leftDataSource.filter((data, index) => {
if (data.key === targetKey) {
9 years ago
leftDataSource.splice(index, 1);
return true;
}
return false;
})[0]);
9 years ago
});
}
9 years ago
this.splitedDataSource = {
leftDataSource,
rightDataSource,
9 years ago
};
return this.splitedDataSource;
9 years ago
}
moveTo = (direction) => {
9 years ago
const { targetKeys } = this.props;
const { leftCheckedKeys, rightCheckedKeys } = this.state;
const moveKeys = direction === 'right' ? leftCheckedKeys : rightCheckedKeys;
9 years ago
// move items to target box
const newTargetKeys = direction === 'right'
? moveKeys.concat(targetKeys)
: targetKeys.filter(targetKey => !moveKeys.some(checkedKey => targetKey === checkedKey));
9 years ago
// empty checked keys
this.setState({
[direction === 'right' ? 'leftCheckedKeys' : 'rightCheckedKeys']: [],
9 years ago
});
this.props.onChange(newTargetKeys, direction, moveKeys);
9 years ago
}
moveToLeft = () => this.moveTo('left')
moveToRight = () => this.moveTo('right')
handleSelectAll = (direction, filteredDataSource, checkAll) => {
const holder = checkAll ? [] : filteredDataSource.map(item => item.key);
9 years ago
this.setState({
[`${direction}CheckedKeys`]: holder,
9 years ago
});
}
handleLeftSelectAll = (filteredDataSource, checkAll) => (
this.handleSelectAll('left', filteredDataSource, checkAll)
)
handleRightSelectAll = (filteredDataSource, checkAll) => (
this.handleSelectAll('right', filteredDataSource, checkAll)
)
handleFilter = (direction, e) => {
9 years ago
this.setState({
// add filter
[`${direction}Filter`]: e.target.value,
9 years ago
});
}
handleLeftFilter = (e) => this.handleFilter('left', e)
handleRightFilter = (e) => this.handleFilter('right', e)
handleClear = (direction) => {
9 years ago
this.setState({
[`${direction}Filter`]: '',
9 years ago
});
9 years ago
}
9 years ago
handleLeftClear = () => this.handleClear('left')
handleRightClear = () => this.handleClear('right')
handleSelect = (direction, selectedItem, checked) => {
9 years ago
const { leftCheckedKeys, rightCheckedKeys } = this.state;
const holder = direction === 'left' ? [...leftCheckedKeys] : [...rightCheckedKeys];
let index;
holder.forEach((key, i) => {
if (key === selectedItem.key) {
index = i;
}
});
if (index > -1) {
9 years ago
holder.splice(index, 1);
}
if (checked) {
9 years ago
holder.push(selectedItem.key);
}
9 years ago
this.setState({
[`${direction}CheckedKeys`]: holder,
9 years ago
});
}
handleLeftSelect = (selectedItem, checked) => this.handleSelect('left', selectedItem, checked);
handleRightSelect = (selectedItem, checked) => this.handleSelect('right', selectedItem, checked);
9 years ago
render() {
9 years ago
const {
prefixCls, titles, operations, showSearch, notFoundContent,
9 years ago
searchPlaceholder, body, footer, listStyle, className,
filterOption, render,
9 years ago
} = this.props;
9 years ago
const { leftFilter, rightFilter, leftCheckedKeys, rightCheckedKeys } = this.state;
9 years ago
const { leftDataSource, rightDataSource } = this.splitDataSource(this.props);
const leftActive = rightCheckedKeys.length > 0;
const rightActive = leftCheckedKeys.length > 0;
9 years ago
const cls = classNames({
[className]: !!className,
[prefixCls]: true,
9 years ago
});
return (
<div className={cls}>
<List titleText={titles[0]}
dataSource={leftDataSource}
filter={leftFilter}
filterOption={filterOption}
style={listStyle}
checkedKeys={leftCheckedKeys}
handleFilter={this.handleLeftFilter}
handleClear={this.handleLeftClear}
handleSelect={this.handleLeftSelect}
handleSelectAll={this.handleLeftSelectAll}
render={render}
showSearch={showSearch}
searchPlaceholder={searchPlaceholder}
notFoundContent={notFoundContent}
body={body}
footer={footer}
prefixCls={`${prefixCls}-list`}
/>
<Operation rightActive={rightActive}
rightArrowText={operations[0]}
moveToRight={this.moveToRight}
leftActive={leftActive}
leftArrowText={operations[1]}
moveToLeft={this.moveToLeft}
className={`${prefixCls}-operation`}
/>
<List titleText={titles[1]}
dataSource={rightDataSource}
filter={rightFilter}
filterOption={filterOption}
style={listStyle}
checkedKeys={rightCheckedKeys}
handleFilter={this.handleRightFilter}
handleClear={this.handleRightClear}
handleSelect={this.handleRightSelect}
handleSelectAll={this.handleRightSelectAll}
render={render}
showSearch={showSearch}
searchPlaceholder={searchPlaceholder}
notFoundContent={notFoundContent}
body={body}
footer={footer}
prefixCls={`${prefixCls}-list`}
/>
</div>
);
9 years ago
}
}