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 warning from '../_util/warning'; 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; type TransferRender = (item: TransferItem) => RenderResult; export interface TransferItem { key: string; title?: string; description?: string; disabled?: boolean; [name: string]: any; } export interface ListStyle { direction: TransferDirection; } export type SelectAllLabel = | React.ReactNode | ((info: { selectedCount: number; totalCount: number }) => React.ReactNode); export interface TransferProps { prefixCls?: string; className?: string; disabled?: boolean; dataSource: TransferItem[]; targetKeys?: string[]; selectedKeys?: string[]; render?: TransferRender; onChange?: (targetKeys: string[], direction: string, moveKeys: string[]) => void; onSelectChange?: (sourceSelectedKeys: string[], targetSelectedKeys: string[]) => void; style?: React.CSSProperties; listStyle: ((style: ListStyle) => React.CSSProperties) | React.CSSProperties; operationStyle?: React.CSSProperties; titles?: string[]; operations?: string[]; showSearch?: boolean; filterOption?: (inputValue: string, item: TransferItem) => boolean; locale?: Partial; footer?: (props: TransferListProps) => React.ReactNode; rowKey?: (record: TransferItem) => 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; } export interface TransferLocale { titles: string[]; notFoundContent?: React.ReactNode; searchPlaceholder: string; itemUnit: string; itemsUnit: string; remove: string; selectAll: string; selectCurrent: string; selectInvert: string; removeAll: string; removeCurrent: string; } interface TransferState { sourceSelectedKeys: string[]; targetSelectedKeys: string[]; } class Transfer extends React.Component { // 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)), }; } warning( !pagination || !children, 'Transfer', '`pagination` not support customize render list.', ); return null; } separatedDataSource: { leftDataSource: TransferItem[]; rightDataSource: TransferItem[]; } | 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): string[] { const { titles } = this.props; if (titles) { return titles; } return transferLocale.titles; } getLocale = (transferLocale: TransferLocale, renderEmpty: RenderEmptyHandler) => { return { ...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, []); if (onChange) { 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.value; if (onSearch) { 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; if (onSearch) { 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', []); if (onChange) { onChange( targetKeys.filter(key => !selectedKeys.includes(key)), 'left', [...selectedKeys], ); } }; handleScroll = (direction: TransferDirection, e: React.SyntheticEvent) => { const { onScroll } = this.props; if (onScroll) { 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); } } handleListStyle = ( listStyle: ((style: ListStyle) => React.CSSProperties) | React.CSSProperties, direction: TransferDirection, ) => { if (typeof listStyle === 'function') { return listStyle({ direction }); } return listStyle; }; separateDataSource() { const { dataSource, rowKey, targetKeys = [] } = this.props; const leftDataSource: TransferItem[] = []; const rightDataSource: TransferItem[] = new Array(targetKeys.length); dataSource.forEach(record => { if (rowKey) { 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) => { const { prefixCls: customizePrefixCls, className, disabled, operations = [], showSearch, footer, style, listStyle, operationStyle, filterOption, render, children, showSelectAll, oneWay, pagination, } = this.props; const prefixCls = getPrefixCls('transfer', customizePrefixCls); const locale = this.getLocale(transferLocale, renderEmpty); const { sourceSelectedKeys, targetSelectedKeys } = this.state; const mergedPagination = !children && pagination; const { leftDataSource, rightDataSource } = this.separateDataSource(); const leftActive = targetSelectedKeys.length > 0; const rightActive = sourceSelectedKeys.length > 0; const cls = classNames(className, prefixCls, { [`${prefixCls}-disabled`]: disabled, [`${prefixCls}-customize-list`]: !!children, [`${prefixCls}-rtl`]: direction === 'rtl', }); const titles = this.getTitles(locale); const selectAllLabels = this.props.selectAllLabels || []; return (
); }}
); render() { return ( {this.renderTransfer} ); } } export default Transfer;