ant-design/components/tree/demo/basic-controlled.md

98 lines
2.2 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
title: 受控操作示例
---
2016-01-07 19:05:55 +08:00
受控操作示例
````jsx
import { Tree } from 'antd';
const TreeNode = Tree.TreeNode;
const x = 3;
const y = 2;
const z = 1;
const gData = [];
const generateData = (_level, _preKey, _tns) => {
const preKey = _preKey || '0';
const tns = _tns || gData;
const children = [];
for (let i = 0; i < x; i++) {
const key = `${preKey}-${i}`;
tns.push({ title: key, key });
2016-01-07 19:05:55 +08:00
if (i < y) {
children.push(key);
}
}
if (_level < 0) {
return tns;
}
const __level = _level - 1;
children.forEach((key, index) => {
tns[index].children = [];
return generateData(__level, key, tns[index].children);
});
};
generateData(z);
const Demo = React.createClass({
getDefaultProps() {
return {
2016-01-15 20:10:46 +08:00
multiple: true,
2016-01-07 19:05:55 +08:00
};
},
getInitialState() {
return {
expandedKeys: ['0-0-0', '0-0-1'],
autoExpandParent: true,
2016-01-07 19:05:55 +08:00
checkedKeys: ['0-0-0'],
selectedKeys: [],
};
},
onExpand(expandedKeys) {
console.log('onExpand', arguments);
// if not set autoExpandParent to false, if children expanded, parent can not collapse.
// or, you can remove all expanded chilren keys.
this.setState({
expandedKeys,
autoExpandParent: false,
});
2016-01-07 19:05:55 +08:00
},
2016-01-15 20:10:46 +08:00
onCheck(checkedKeys) {
2016-01-07 19:05:55 +08:00
this.setState({
2016-01-15 20:10:46 +08:00
checkedKeys,
2016-01-07 19:05:55 +08:00
selectedKeys: ['0-3', '0-4'],
});
},
2016-01-15 20:10:46 +08:00
onSelect(selectedKeys, info) {
console.log('onSelect', info);
2016-01-28 15:13:17 +08:00
this.setState({ selectedKeys });
2016-01-07 19:05:55 +08:00
},
render() {
2016-01-28 15:13:17 +08:00
const loop = data => data.map((item) => {
if (item.children) {
return (
<TreeNode key={item.key} title={item.key} disableCheckbox={item.key === '0-0-0'}>
2016-01-15 20:10:46 +08:00
{loop(item.children)}
2016-01-28 15:13:17 +08:00
</TreeNode>
);
}
return <TreeNode key={item.key} title={item.key} />;
2016-01-28 15:13:17 +08:00
});
return (
<Tree checkable multiple={this.props.multiple}
onExpand={this.onExpand} expandedKeys={this.state.expandedKeys}
autoExpandParent={this.state.autoExpandParent}
onCheck={this.onCheck} checkedKeys={this.state.checkedKeys}
onSelect={this.onSelect} selectedKeys={this.state.selectedKeys}>
2016-01-07 19:05:55 +08:00
{loop(gData)}
</Tree>
2016-01-28 15:13:17 +08:00
);
2016-01-07 19:05:55 +08:00
},
});
ReactDOM.render(<Demo />, mountNode);
````