mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 08:09:13 +08:00
f4b7c0122f
* demo: simplify transfer table example * demo: simplify transfer table example
140 lines
3.5 KiB
TypeScript
140 lines
3.5 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { Space, Switch, Table, Tag, Transfer } from 'antd';
|
|
import type { GetProp, TableColumnsType, TableProps, TransferProps } from 'antd';
|
|
|
|
type TransferItem = GetProp<TransferProps, 'dataSource'>[number];
|
|
type TableRowSelection<T extends object> = TableProps<T>['rowSelection'];
|
|
|
|
interface RecordType {
|
|
key: string;
|
|
title: string;
|
|
description: string;
|
|
tag: string;
|
|
}
|
|
|
|
interface DataType {
|
|
key: string;
|
|
title: string;
|
|
description: string;
|
|
tag: string;
|
|
}
|
|
|
|
interface TableTransferProps extends TransferProps<TransferItem> {
|
|
dataSource: DataType[];
|
|
leftColumns: TableColumnsType<DataType>;
|
|
rightColumns: TableColumnsType<DataType>;
|
|
}
|
|
|
|
// Customize Table Transfer
|
|
const TableTransfer = ({ leftColumns, rightColumns, ...restProps }: TableTransferProps) => (
|
|
<Transfer {...restProps}>
|
|
{({
|
|
direction,
|
|
filteredItems,
|
|
onItemSelect,
|
|
onItemSelectAll,
|
|
selectedKeys: listSelectedKeys,
|
|
disabled: listDisabled,
|
|
}) => {
|
|
const columns = direction === 'left' ? leftColumns : rightColumns;
|
|
|
|
const rowSelection: TableRowSelection<TransferItem> = {
|
|
getCheckboxProps: () => ({ disabled: listDisabled }),
|
|
onChange(selectedRowKeys) {
|
|
onItemSelectAll(selectedRowKeys, 'replace');
|
|
},
|
|
selectedRowKeys: listSelectedKeys,
|
|
selections: [Table.SELECTION_ALL, Table.SELECTION_INVERT, Table.SELECTION_NONE],
|
|
};
|
|
|
|
return (
|
|
<Table
|
|
rowSelection={rowSelection}
|
|
columns={columns}
|
|
dataSource={filteredItems}
|
|
size="small"
|
|
style={{ pointerEvents: listDisabled ? 'none' : undefined }}
|
|
onRow={({ key, disabled: itemDisabled }) => ({
|
|
onClick: () => {
|
|
if (itemDisabled || listDisabled) {
|
|
return;
|
|
}
|
|
onItemSelect(key, !listSelectedKeys.includes(key));
|
|
},
|
|
})}
|
|
/>
|
|
);
|
|
}}
|
|
</Transfer>
|
|
);
|
|
|
|
const mockTags = ['cat', 'dog', 'bird'];
|
|
|
|
const mockData: RecordType[] = Array.from({ length: 20 }).map((_, i) => ({
|
|
key: i.toString(),
|
|
title: `content${i + 1}`,
|
|
description: `description of content${i + 1}`,
|
|
tag: mockTags[i % 3],
|
|
}));
|
|
|
|
const columns: TableColumnsType<DataType> = [
|
|
{
|
|
dataIndex: 'title',
|
|
title: 'Name',
|
|
},
|
|
{
|
|
dataIndex: 'tag',
|
|
title: 'Tag',
|
|
render: (tag: string) => (
|
|
<Tag style={{ marginInlineEnd: 0 }} color="cyan">
|
|
{tag.toUpperCase()}
|
|
</Tag>
|
|
),
|
|
},
|
|
{
|
|
dataIndex: 'description',
|
|
title: 'Description',
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => {
|
|
const [targetKeys, setTargetKeys] = useState<TransferProps['targetKeys']>([]);
|
|
const [disabled, setDisabled] = useState(false);
|
|
|
|
const onChange: TableTransferProps['onChange'] = (nextTargetKeys) => {
|
|
setTargetKeys(nextTargetKeys);
|
|
};
|
|
|
|
const toggleDisabled = (checked: boolean) => {
|
|
setDisabled(checked);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<TableTransfer
|
|
dataSource={mockData}
|
|
targetKeys={targetKeys}
|
|
disabled={disabled}
|
|
showSearch
|
|
showSelectAll={false}
|
|
onChange={onChange}
|
|
filterOption={(inputValue, item) =>
|
|
item.title!.indexOf(inputValue) !== -1 || item.tag.indexOf(inputValue) !== -1
|
|
}
|
|
leftColumns={columns}
|
|
rightColumns={columns}
|
|
/>
|
|
<Space style={{ marginTop: 16 }}>
|
|
<Switch
|
|
unCheckedChildren="disabled"
|
|
checkedChildren="disabled"
|
|
checked={disabled}
|
|
onChange={toggleDisabled}
|
|
/>
|
|
</Space>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|