|
|
|
import DownOutlined from '@ant-design/icons/DownOutlined';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import omit from 'rc-util/lib/omit';
|
|
|
|
import * as React from 'react';
|
|
|
|
import Checkbox from '../checkbox';
|
|
|
|
import Dropdown from '../dropdown';
|
|
|
|
import Menu from '../menu';
|
|
|
|
import { isValidElement } from '../_util/reactNode';
|
|
|
|
import type {
|
|
|
|
KeyWiseTransferItem,
|
|
|
|
RenderResult,
|
|
|
|
RenderResultObject,
|
|
|
|
SelectAllLabel,
|
|
|
|
TransferDirection,
|
|
|
|
TransferLocale,
|
|
|
|
} from './index';
|
|
|
|
import type { PaginationType } from './interface';
|
|
|
|
import type { TransferListBodyProps } from './ListBody';
|
|
|
|
import DefaultListBody, { OmitProps } from './ListBody';
|
|
|
|
import Search from './search';
|
|
|
|
|
|
|
|
const defaultRender = () => null;
|
|
|
|
|
|
|
|
function isRenderResultPlainObject(result: RenderResult): result is RenderResultObject {
|
|
|
|
return !!(
|
|
|
|
result &&
|
|
|
|
!isValidElement(result) &&
|
|
|
|
Object.prototype.toString.call(result) === '[object Object]'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getEnabledItemKeys<RecordType extends KeyWiseTransferItem>(items: RecordType[]) {
|
|
|
|
return items.filter(data => !data.disabled).map(data => data.key);
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface RenderedItem<RecordType> {
|
|
|
|
renderedText: string;
|
|
|
|
renderedEl: React.ReactNode;
|
|
|
|
item: RecordType;
|
|
|
|
}
|
|
|
|
|
|
|
|
type RenderListFunction<T> = (props: TransferListBodyProps<T>) => React.ReactNode;
|
|
|
|
|
|
|
|
export interface TransferListProps<RecordType> extends TransferLocale {
|
|
|
|
prefixCls: string;
|
|
|
|
titleText: React.ReactNode;
|
|
|
|
dataSource: RecordType[];
|
|
|
|
filterOption?: (filterText: string, item: RecordType) => boolean;
|
|
|
|
style?: React.CSSProperties;
|
|
|
|
checkedKeys: string[];
|
|
|
|
handleFilter: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
|
|
|
onItemSelect: (key: string, check: boolean) => void;
|
|
|
|
onItemSelectAll: (dataSource: string[], checkAll: boolean) => void;
|
|
|
|
onItemRemove?: (keys: string[]) => void;
|
|
|
|
handleClear: () => void;
|
|
|
|
/** Render item */
|
|
|
|
render?: (item: RecordType) => RenderResult;
|
|
|
|
showSearch?: boolean;
|
|
|
|
searchPlaceholder: string;
|
|
|
|
itemUnit: string;
|
|
|
|
itemsUnit: string;
|
|
|
|
renderList?: RenderListFunction<RecordType>;
|
|
|
|
footer?: (
|
|
|
|
props: TransferListProps<RecordType>,
|
|
|
|
info?: { direction: TransferDirection },
|
|
|
|
) => React.ReactNode;
|
|
|
|
onScroll: (e: React.UIEvent<HTMLUListElement>) => void;
|
|
|
|
disabled?: boolean;
|
|
|
|
direction: TransferDirection;
|
|
|
|
showSelectAll?: boolean;
|
|
|
|
selectAllLabel?: SelectAllLabel;
|
|
|
|
showRemove?: boolean;
|
|
|
|
pagination?: PaginationType;
|
|
|
|
}
|
|
|
|