forked from ant-design/ant-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Tree missing aniation when virtual scrolled (ant-design#20565)
* fix: Tree missing aniation when virtual scrolled * clean up * skip debug test
- Loading branch information
Showing
3 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import demoTest from '../../../tests/shared/demoTest'; | ||
|
||
demoTest('tree'); | ||
demoTest('tree', { skip: ['big-data.md'] }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); | ||
``` |