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.
55 lines
1.7 KiB
55 lines
1.7 KiB
import React, { useState } from 'react';
|
|
import { Transfer } from 'antd';
|
|
import type { TransferDirection } from 'antd/es/transfer';
|
|
|
|
interface RecordType {
|
|
key: string;
|
|
title: string;
|
|
description: string;
|
|
}
|
|
|
|
const mockData: RecordType[] = Array.from({ length: 20 }).map((_, i) => ({
|
|
key: i.toString(),
|
|
title: `content${i + 1}`,
|
|
description: `description of content${i + 1}`,
|
|
}));
|
|
|
|
const initialTargetKeys = mockData.filter((item) => Number(item.key) > 10).map((item) => item.key);
|
|
|
|
const App: React.FC = () => {
|
|
const [targetKeys, setTargetKeys] = useState(initialTargetKeys);
|
|
const [selectedKeys, setSelectedKeys] = useState<string[]>([]);
|
|
|
|
const onChange = (nextTargetKeys: string[], direction: TransferDirection, moveKeys: string[]) => {
|
|
console.log('targetKeys:', nextTargetKeys);
|
|
console.log('direction:', direction);
|
|
console.log('moveKeys:', moveKeys);
|
|
setTargetKeys(nextTargetKeys);
|
|
};
|
|
|
|
const onSelectChange = (sourceSelectedKeys: string[], targetSelectedKeys: string[]) => {
|
|
console.log('sourceSelectedKeys:', sourceSelectedKeys);
|
|
console.log('targetSelectedKeys:', targetSelectedKeys);
|
|
setSelectedKeys([...sourceSelectedKeys, ...targetSelectedKeys]);
|
|
};
|
|
|
|
const onScroll = (direction: TransferDirection, e: React.SyntheticEvent<HTMLUListElement>) => {
|
|
console.log('direction:', direction);
|
|
console.log('target:', e.target);
|
|
};
|
|
|
|
return (
|
|
<Transfer
|
|
dataSource={mockData}
|
|
titles={['Source', 'Target']}
|
|
targetKeys={targetKeys}
|
|
selectedKeys={selectedKeys}
|
|
onChange={onChange}
|
|
onSelectChange={onSelectChange}
|
|
onScroll={onScroll}
|
|
render={(item) => item.title}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|