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

74 lines
1.4 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
2016-08-08 14:12:02 +08:00
title:
2016-08-03 10:10:13 +08:00
zh-CN: 带搜索框
en-US: Search
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-11-25 23:17:06 +08:00
2016-08-03 10:10:13 +08:00
## en-US
2016-08-08 14:12:02 +08:00
Transfer with a search box.
2016-08-03 10:10:13 +08:00
2019-05-07 14:57:32 +08:00
```jsx
2015-11-25 23:17:06 +08:00
import { Transfer } from 'antd';
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-21 15:29:02 +08:00
componentDidMount() {
this.getMock();
}
2018-06-27 15:55:04 +08:00
getMock = () => {
const targetKeys = [];
const mockData = [];
2015-12-21 15:29:02 +08:00
for (let i = 0; i < 20; i++) {
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-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
filterOption = (inputValue, option) => option.description.indexOf(inputValue) > -1;
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
handleSearch = (dir, value) => {
console.log('search:', dir, value);
};
2015-12-21 15:29: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
filterOption={this.filterOption}
2015-12-21 15:29:02 +08:00
targetKeys={this.state.targetKeys}
onChange={this.handleChange}
onSearch={this.handleSearch}
render={item => item.title}
/>
2015-12-28 11:03:58 +08:00
);
}
}
2015-12-21 15:29:02 +08:00
ReactDOM.render(<App />, mountNode);
2019-05-07 14:57:32 +08:00
```