mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 03:29:39 +08:00
fix: Tree missing aniation when virtual scrolled (#20565)
* fix: Tree missing aniation when virtual scrolled * clean up * skip debug test
This commit is contained in:
parent
f6cec889aa
commit
deba77b3d6
@ -206,6 +206,7 @@ export default class Tree extends React.Component<TreeProps, any> {
|
||||
const prefixCls = getPrefixCls('tree', customizePrefixCls);
|
||||
return (
|
||||
<RcTree
|
||||
itemHeight={20}
|
||||
ref={this.setTreeRef}
|
||||
{...props}
|
||||
prefixCls={prefixCls}
|
||||
|
@ -1,3 +1,3 @@
|
||||
import demoTest from '../../../tests/shared/demoTest';
|
||||
|
||||
demoTest('tree');
|
||||
demoTest('tree', { skip: ['big-data.md'] });
|
||||
|
42
components/tree/demo/big-data.md
Normal file
42
components/tree/demo/big-data.md
Normal file
@ -0,0 +1,42 @@
|
||||
---
|
||||
order: 99
|
||||
title:
|
||||
zh-CN: 大数据
|
||||
en-US: Big data
|
||||
debug: true
|
||||
---
|
||||
|
||||
## zh-CN
|
||||
|
||||
大数据展示。
|
||||
|
||||
## en-US
|
||||
|
||||
Plenty of tree nodes.
|
||||
|
||||
```jsx
|
||||
import { Tree } from 'antd';
|
||||
|
||||
const treeData = [];
|
||||
|
||||
for (let i = 0; i < 100; i += 1) {
|
||||
const children = [];
|
||||
|
||||
for (let j = 0; j < 100; j += 1) {
|
||||
children.push({
|
||||
title: `child ${i}-${j}`,
|
||||
key: `l-${i}-${j}`,
|
||||
});
|
||||
}
|
||||
|
||||
treeData.push({
|
||||
title: `parent ${i}`,
|
||||
key: `l-${i}`,
|
||||
children,
|
||||
});
|
||||
}
|
||||
|
||||
const Demo = () => <Tree defaultExpandAll height={400} treeData={treeData} />;
|
||||
|
||||
ReactDOM.render(<Demo />, mountNode);
|
||||
```
|
Loading…
Reference in New Issue
Block a user