import * as React from 'react'; import classNames from 'classnames'; import List, { TransferListProps } from './list'; import Operation from './operation'; import Search from './search'; import LocaleReceiver from '../locale-provider/LocaleReceiver'; import defaultLocale from '../locale/default'; import { ConfigConsumer, ConfigConsumerProps, RenderEmptyHandler } from '../config-provider'; import { TransferListBodyProps } from './ListBody'; import { PaginationType } from './interface'; import devWarning from '../_util/devWarning'; import { FormItemInputContext } from '../form/context'; import { getMergedStatus, getStatusClassNames, InputStatus } from '../_util/statusUtils'; export { TransferListProps } from './list'; export { TransferOperationProps } from './operation'; export { TransferSearchProps } from './search'; export type TransferDirection = 'left' | 'right'; export interface RenderResultObject { label: React.ReactElement; value: string; } export type RenderResult = React.ReactElement | RenderResultObject | string | null; export interface TransferItem { key?: string; title?: string; description?: string; disabled?: boolean; [name: string]: any; } export type KeyWise = T & { key: string }; export type KeyWiseTransferItem = KeyWise; type TransferRender = (item: RecordType) => RenderResult; export interface ListStyle { direction: TransferDirection; } export type SelectAllLabel = | React.ReactNode | ((info: { selectedCount: number; totalCount: number }) => React.ReactNode); export interface TransferLocale { titles: React.ReactNode[]; notFoundContent?: React.ReactNode | React.ReactNode[]; searchPlaceholder: string; itemUnit: string; itemsUnit: string; remove: string; selectAll: string; selectCurrent: string; selectInvert: string; removeAll: string; removeCurrent: string; } export interface TransferProps { prefixCls?: string; className?: string; disabled?: boolean; dataSource: RecordType[]; targetKeys?: string[]; selectedKeys?: string[]; render?: TransferRender; onChange?: (targetKeys: string[], direction: TransferDirection, moveKeys: string[]) => void; onSelectChange?: (sourceSelectedKeys: string[], targetSelectedKeys: string[]) => void; style?: React.CSSProperties; listStyle?: ((style: ListStyle) => React.CSSProperties) | React.CSSProperties; operationStyle?: React.CSSProperties; titles?: React.ReactNode[]; operations?: string[]; showSearch?: boolean; filterOption?: (inputValue: string, item: RecordType) => boolean; locale?: Partial; footer?: ( props: TransferListProps, info?: { direction: TransferDirection; }, ) => React.ReactNode; rowKey?: (record: RecordType) => string; onSearch?: (direction: TransferDirection, value: string) => void; onScroll?: (direction: TransferDirection, e: React.SyntheticEvent) => void; children?: (props: TransferListBodyProps) => React.ReactNode; showSelectAll?: boolean; selectAllLabels?: SelectAllLabel[]; oneWay?: boolean; pagination?: PaginationType; status?: InputStatus; } interface TransferState { sourceSelectedKeys: string[]; targetSelectedKeys: string[]; } class Transfer extends React.Component< TransferProps, TransferState > { // For high-level customized Transfer @dqaria static List = List; static Operation = Operation; static Search = Search; static defaultProps = { dataSource: [], locale: {}, showSearch: false, listStyle: () => {}, }; static getDerivedStateFromProps({ selectedKeys, targetKeys, pagination, children, }: TransferProps) { if (selectedKeys) { const mergedTargetKeys = targetKeys || []; return { sourceSelectedKeys: selectedKeys.filter(key => !mergedTargetKeys.includes(key)), targetSelectedKeys: selectedKeys.filter(key => mergedTargetKeys.includes(key)), }; } devWarning( !pagination || !children, 'Transfer', '`pagination` not support customize render list.', ); return null; } separatedDataSource: { leftDataSource: RecordType[]; rightDataSource: RecordType[]; } | null = null; constructor(props: TransferProps) { super(props); const { selectedKeys = [], targetKeys = [] } = props; this.state = { sourceSelectedKeys: selectedKeys.filter(key => targetKeys.indexOf(key) === -1), targetSelectedKeys: selectedKeys.filter(key => targetKeys.indexOf(key) > -1), }; } setStateKeys = ( direction: TransferDirection, keys: string[] | ((prevKeys: string[]) => string[]), ) => { if (direction === 'left') { this.setState(({ sourceSelectedKeys }) => ({ sourceSelectedKeys: typeof keys === 'function' ? keys(sourceSelectedKeys || []) : keys, })); } else { this.setState(({ targetSelectedKeys }) => ({ targetSelectedKeys: typeof keys === 'function' ? keys(targetSelectedKeys || []) : keys, })); } }; getTitles(transferLocale: TransferLocale): React.ReactNode[] { return this.props.titles ?? transferLocale.titles; } getLocale = (transferLocale: TransferLocale, renderEmpty: RenderEmptyHandler) => ({ ...transferLocale, notFoundContent: renderEmpty('Transfer'), ...this.props.locale, }); moveTo = (direction: TransferDirection) => { 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: string) => !dataSource.some(data => !!(key === data.key && data.disabled)), ); // move items to target box const newTargetKeys = direction === 'right' ? newMoveKeys.concat(targetKeys) : targetKeys.filter(targetKey => newMoveKeys.indexOf(targetKey) === -1); // empty checked keys const oppositeDirection = direction === 'right' ? 'left' : 'right'; this.setStateKeys(oppositeDirection, []); this.handleSelectChange(oppositeDirection, []); onChange?.(newTargetKeys, direction, newMoveKeys); }; moveToLeft = () => this.moveTo('left'); moveToRight = () => this.moveTo('right'); onItemSelectAll = (direction: TransferDirection, selectedKeys: string[], checkAll: boolean) => { this.setStateKeys(direction, prevKeys => { let mergedCheckedKeys = []; if (checkAll) { // Merge current keys with origin key mergedCheckedKeys = Array.from(new Set([...prevKeys, ...selectedKeys])); } else { // Remove current keys from origin keys mergedCheckedKeys = prevKeys.filter((key: string) => selectedKeys.indexOf(key) === -1); } this.handleSelectChange(direction, mergedCheckedKeys); return mergedCheckedKeys; }); }; onLeftItemSelectAll = (selectedKeys: string[], checkAll: boolean) => this.onItemSelectAll('left', selectedKeys, checkAll); onRightItemSelectAll = (selectedKeys: string[], checkAll: boolean) => this.onItemSelectAll('right', selectedKeys, checkAll); handleFilter = (direction: TransferDirection, e: React.ChangeEvent) => { const { onSearch } = this.props; const { value } = e.target; onSearch?.(direction, value); }; handleLeftFilter = (e: React.ChangeEvent) => this.handleFilter('left', e); handleRightFilter = (e: React.ChangeEvent) => this.handleFilter('right', e); handleClear = (direction: TransferDirection) => { const { onSearch } = this.props; onSearch?.(direction, ''); }; handleLeftClear = () => this.handleClear('left'); handleRightClear = () => this.handleClear('right'); onItemSelect = (direction: TransferDirection, selectedKey: string, checked: boolean) => { const { sourceSelectedKeys, targetSelectedKeys } = this.state; const holder = direction === 'left' ? [...sourceSelectedKeys] : [...targetSelectedKeys]; const index = holder.indexOf(selectedKey); if (index > -1) { holder.splice(index, 1); } if (checked) { holder.push(selectedKey); } this.handleSelectChange(direction, holder); if (!this.props.selectedKeys) { this.setStateKeys(direction, holder); } }; onLeftItemSelect = (selectedKey: string, checked: boolean) => this.onItemSelect('left', selectedKey, checked); onRightItemSelect = (selectedKey: string, checked: boolean) => this.onItemSelect('right', selectedKey, checked); onRightItemRemove = (selectedKeys: string[]) => { const { targetKeys = [], onChange } = this.props; this.setStateKeys('right', []); onChange?.( targetKeys.filter(key => !selectedKeys.includes(key)), 'left', [...selectedKeys], ); }; handleScroll = (direction: TransferDirection, e: React.SyntheticEvent) => { const { onScroll } = this.props; onScroll?.(direction, e); }; handleLeftScroll = (e: React.SyntheticEvent) => this.handleScroll('left', e); handleRightScroll = (e: React.SyntheticEvent) => this.handleScroll('right', e); handleSelectChange(direction: TransferDirection, holder: string[]) { const { sourceSelectedKeys, targetSelectedKeys } = this.state; const { onSelectChange } = this.props; if (!onSelectChange) { return; } if (direction === 'left') { onSelectChange(holder, targetSelectedKeys); } else { onSelectChange(sourceSelectedKeys, holder); } } // eslint-disable-next-line class-methods-use-this handleListStyle = ( listStyle: TransferProps['listStyle'], direction: TransferDirection, ) => { if (typeof listStyle === 'function') { return listStyle({ direction }); } return listStyle; }; separateDataSource() { const { dataSource, rowKey, targetKeys = [] } = this.props; const leftDataSource: KeyWise[] = []; const rightDataSource: KeyWise[] = new Array(targetKeys.length); dataSource.forEach((record: KeyWise) => { if (rowKey) { record = { ...record, key: rowKey(record), }; } // 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); } }); return { leftDataSource, rightDataSource, }; } renderTransfer = (transferLocale: TransferLocale) => ( {({ getPrefixCls, renderEmpty, direction }: ConfigConsumerProps) => ( {({ hasFeedback, status: contextStatus }) => { const { prefixCls: customizePrefixCls, className, disabled, operations = [], showSearch, footer, style, listStyle, operationStyle, filterOption, render, children, showSelectAll, oneWay, pagination, status: customStatus, } = this.props; const prefixCls = getPrefixCls('transfer', customizePrefixCls); const locale = this.getLocale(transferLocale, renderEmpty); const { sourceSelectedKeys, targetSelectedKeys } = this.state; const mergedStatus = getMergedStatus(contextStatus, customStatus); const mergedPagination = !children && pagination; const { leftDataSource, rightDataSource } = this.separateDataSource(); const leftActive = targetSelectedKeys.length > 0; const rightActive = sourceSelectedKeys.length > 0; const cls = classNames( prefixCls, { [`${prefixCls}-disabled`]: disabled, [`${prefixCls}-customize-list`]: !!children, [`${prefixCls}-rtl`]: direction === 'rtl', }, getStatusClassNames(prefixCls, mergedStatus, hasFeedback), className, ); const titles = this.getTitles(locale); const selectAllLabels = this.props.selectAllLabels || []; return (
> prefixCls={`${prefixCls}-list`} titleText={titles[0]} dataSource={leftDataSource} filterOption={filterOption} style={this.handleListStyle(listStyle, 'left')} checkedKeys={sourceSelectedKeys} handleFilter={this.handleLeftFilter} handleClear={this.handleLeftClear} onItemSelect={this.onLeftItemSelect} onItemSelectAll={this.onLeftItemSelectAll} render={render} showSearch={showSearch} renderList={children} footer={footer} onScroll={this.handleLeftScroll} disabled={disabled} direction={direction === 'rtl' ? 'right' : 'left'} showSelectAll={showSelectAll} selectAllLabel={selectAllLabels[0]} pagination={mergedPagination} {...locale} /> > prefixCls={`${prefixCls}-list`} titleText={titles[1]} dataSource={rightDataSource} filterOption={filterOption} style={this.handleListStyle(listStyle, 'right')} checkedKeys={targetSelectedKeys} handleFilter={this.handleRightFilter} handleClear={this.handleRightClear} onItemSelect={this.onRightItemSelect} onItemSelectAll={this.onRightItemSelectAll} onItemRemove={this.onRightItemRemove} render={render} showSearch={showSearch} renderList={children} footer={footer} onScroll={this.handleRightScroll} disabled={disabled} direction={direction === 'rtl' ? 'left' : 'right'} showSelectAll={showSelectAll} selectAllLabel={selectAllLabels[1]} showRemove={oneWay} pagination={mergedPagination} {...locale} />
); }}
)}
); render() { return ( {this.renderTransfer} ); } } export default Transfer;