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

70 lines
1.7 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
2016-08-03 10:10:13 +08:00
title:
zh-CN: 基本用法
en-US: Basic
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
2016-08-04 09:23:10 +08:00
最基本的用法,展示了 `dataSource`、`targetKeys`、每行的渲染函数 `render` 以及回调函数 `onChange` 的用法。
2015-11-25 23:17:06 +08:00
2016-08-04 09:23:10 +08:00
## en-US
The most basic usage of `Transfer` involves providing the source data and target keys arrays, plus the rendering and change callback functions.
2016-08-03 10:10:13 +08:00
2015-11-25 23:17:06 +08:00
````jsx
import { Transfer } from 'antd';
2015-11-25 23:17:06 +08:00
2015-11-26 11:18:37 +08:00
const App = React.createClass({
getInitialState() {
return {
2015-12-21 15:29:02 +08:00
mockData: [],
targetKeys: [],
2015-11-26 11:18:37 +08:00
};
},
2015-11-26 16:07:11 +08:00
componentDidMount() {
this.getMock();
},
2015-11-26 11:18:37 +08:00
getMock() {
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,
disabled: Math.random() * 3 < 1,
2015-12-21 15:29:02 +08:00
};
if (data.chosen) {
targetKeys.push(data.key);
}
mockData.push(data);
2015-11-26 11:18:37 +08:00
}
2015-12-28 11:03:58 +08:00
this.setState({ mockData, targetKeys });
2015-11-26 11:18:37 +08:00
},
2016-02-01 14:07:17 +08:00
handleChange(targetKeys, direction, moveKeys) {
console.log(targetKeys, direction, moveKeys);
2015-12-28 11:03:58 +08:00
this.setState({ targetKeys });
2015-12-21 15:29:02 +08:00
},
handleSelectChange(sourceSelectedKeys, targetSelectedKeys) {
console.log('sourceSelectedKeys: ', sourceSelectedKeys);
console.log('targetSelectedKeys: ', targetSelectedKeys);
},
2015-11-26 11:18:37 +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}
targetKeys={this.state.targetKeys}
onChange={this.handleChange}
onSelectChange={this.handleSelectChange}
render={item => item.title}
/>
2015-12-28 11:03:58 +08:00
);
2016-05-11 09:32:33 +08:00
},
2015-11-26 11:18:37 +08:00
});
ReactDOM.render(<App />, mountNode);
2015-11-25 23:17:06 +08:00
````