ant-design/components/transfer/demo/advanced.md

102 lines
2.2 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
2016-10-24 11:06:31 +08:00
title:
2016-08-03 10:10:13 +08:00
zh-CN: 高级用法
en-US: Advanced
2016-03-31 09:40:55 +08:00
---
2015-11-25 23:17:06 +08:00
2016-08-03 10:10:13 +08:00
## zh-CN
2015-12-24 14:56:48 +08:00
穿梭框高级用法,可配置操作文案,可定制宽高,可对底部进行自定义渲染。
2015-11-25 23:17:06 +08:00
2016-10-24 11:06:31 +08:00
## en-US
2016-08-03 10:10:13 +08:00
2016-08-04 09:45:50 +08:00
Advanced Usage of Transfer.
You can customize the labels of the transfer buttons, the width and height of the columns, and what should be displayed in the footer.
2016-08-03 10:10:13 +08:00
```tsx
2022-05-23 14:37:16 +08:00
import { Button, Transfer } from 'antd';
import type { TransferDirection, TransferListProps } from 'antd/es/transfer';
2022-05-23 14:37:16 +08:00
import React, { useEffect, useState } from 'react';
2015-11-25 23:17:06 +08:00
interface RecordType {
key: string;
title: string;
description: string;
chosen: boolean;
}
2018-06-27 15:55:04 +08:00
const App: React.FC = () => {
const [mockData, setMockData] = useState<RecordType[]>([]);
const [targetKeys, setTargetKeys] = useState<string[]>([]);
2018-06-27 15:55:04 +08:00
const getMock = () => {
const tempTargetKeys = [];
const tempMockData = [];
2015-12-18 09:05:02 +08:00
for (let i = 0; i < 20; i++) {
2015-12-21 15:29:02 +08:00
const data = {
2016-10-24 11:06:31 +08:00
key: i.toString(),
2016-08-03 10:10:13 +08:00
title: `content${i + 1}`,
description: `description of content${i + 1}`,
2016-05-11 09:32:33 +08:00
chosen: Math.random() * 2 > 1,
2015-12-21 15:29:02 +08:00
};
if (data.chosen) {
tempTargetKeys.push(data.key);
2015-12-21 15:29:02 +08:00
}
tempMockData.push(data);
2015-12-18 09:05:02 +08:00
}
setMockData(tempMockData);
setTargetKeys(tempTargetKeys);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
useEffect(() => {
getMock();
}, []);
const handleChange = (newTargetKeys: string[]) => {
setTargetKeys(newTargetKeys);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
const renderFooter = (
_: TransferListProps<any>,
{
direction,
}: {
direction: TransferDirection;
},
) => {
if (direction === 'left') {
return (
<Button size="small" style={{ float: 'left', margin: 5 }} onClick={getMock}>
Left button reload
</Button>
);
}
return (
<Button size="small" style={{ float: 'right', margin: 5 }} onClick={getMock}>
Right button reload
</Button>
);
};
2018-06-27 15:55:04 +08:00
return (
<Transfer
dataSource={mockData}
showSearch
listStyle={{
width: 250,
height: 300,
}}
operations={['to right', 'to left']}
targetKeys={targetKeys}
onChange={handleChange}
render={item => `${item.title}-${item.description}`}
footer={renderFooter}
/>
);
};
2015-12-18 09:05:02 +08:00
export default App;
2019-05-07 14:57:32 +08:00
```