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.
|
2016-08-04 09:25:07 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2015-12-18 09:05:02 +08:00
|
|
|
import { Transfer, Button } from 'antd';
|
2015-11-25 23:17:06 +08:00
|
|
|
|
2017-02-19 20:51:40 +08:00
|
|
|
class App extends React.Component {
|
|
|
|
state = {
|
|
|
|
mockData: [],
|
|
|
|
targetKeys: [],
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2015-12-18 09:05:02 +08:00
|
|
|
componentDidMount() {
|
|
|
|
this.getMock();
|
2017-02-19 20:51:40 +08:00
|
|
|
}
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2017-02-19 20:51:40 +08:00
|
|
|
getMock = () => {
|
2016-05-18 15:32:49 +08:00
|
|
|
const targetKeys = [];
|
|
|
|
const mockData = [];
|
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) {
|
|
|
|
targetKeys.push(data.key);
|
|
|
|
}
|
|
|
|
mockData.push(data);
|
2015-12-18 09:05:02 +08:00
|
|
|
}
|
2015-12-28 11:03:58 +08:00
|
|
|
this.setState({ mockData, targetKeys });
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
handleChange = targetKeys => {
|
2015-12-28 11:03:58 +08:00
|
|
|
this.setState({ targetKeys });
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2018-11-28 15:00:03 +08:00
|
|
|
renderFooter = () => (
|
2019-05-07 14:57:32 +08:00
|
|
|
<Button size="small" style={{ float: 'right', margin: 5 }} onClick={this.getMock}>
|
|
|
|
reload
|
2018-11-28 15:00:03 +08:00
|
|
|
</Button>
|
2019-05-07 14:57:32 +08:00
|
|
|
);
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2015-12-18 09:05:02 +08:00
|
|
|
render() {
|
2015-12-28 11:03:58 +08:00
|
|
|
return (
|
2015-12-21 15:29:02 +08:00
|
|
|
<Transfer
|
|
|
|
dataSource={this.state.mockData}
|
|
|
|
showSearch
|
2015-12-24 17:44:54 +08:00
|
|
|
listStyle={{
|
2015-12-24 20:49:10 +08:00
|
|
|
width: 250,
|
2015-12-24 17:44:54 +08:00
|
|
|
height: 300,
|
|
|
|
}}
|
2016-08-03 10:10:13 +08:00
|
|
|
operations={['to right', 'to left']}
|
2015-12-21 15:29:02 +08:00
|
|
|
targetKeys={this.state.targetKeys}
|
|
|
|
onChange={this.handleChange}
|
2016-02-17 18:04:42 +08:00
|
|
|
render={item => `${item.title}-${item.description}`}
|
2016-06-06 13:54:10 +08:00
|
|
|
footer={this.renderFooter}
|
|
|
|
/>
|
2015-12-28 11:03:58 +08:00
|
|
|
);
|
2017-02-19 20:51:40 +08:00
|
|
|
}
|
|
|
|
}
|
2015-12-18 09:05:02 +08:00
|
|
|
|
2016-02-22 16:34:16 +08:00
|
|
|
ReactDOM.render(<App />, mountNode);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|