mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
fix: Fix DirectoryTree miss ref.scrollTo function (#26129)
* fix: DirTree support ref * add test case
This commit is contained in:
parent
3ad0b47d92
commit
1119c3da38
@ -1,5 +1,6 @@
|
||||
import * as React from 'react';
|
||||
import classNames from 'classnames';
|
||||
import RcTree from 'rc-tree';
|
||||
import debounce from 'lodash/debounce';
|
||||
import { conductExpandParent } from 'rc-tree/lib/util';
|
||||
import { EventDataNode, DataNode, Key } from 'rc-tree/lib/interface';
|
||||
@ -35,18 +36,18 @@ function getTreeData({ treeData, children }: DirectoryTreeProps) {
|
||||
return treeData || convertTreeToData(children);
|
||||
}
|
||||
|
||||
const DirectoryTree: React.FC<DirectoryTreeProps> = ({
|
||||
defaultExpandAll,
|
||||
defaultExpandParent,
|
||||
defaultExpandedKeys,
|
||||
...props
|
||||
}) => {
|
||||
const DirectoryTree: React.ForwardRefRenderFunction<RcTree, DirectoryTreeProps> = (
|
||||
{ defaultExpandAll, defaultExpandParent, defaultExpandedKeys, ...props },
|
||||
ref,
|
||||
) => {
|
||||
// Shift click usage
|
||||
const lastSelectedKey = React.useRef<Key>();
|
||||
|
||||
const cachedSelectedKeys = React.useRef<Key[]>();
|
||||
|
||||
const ref = React.createRef<any>();
|
||||
const treeRef = React.createRef<RcTree>();
|
||||
|
||||
React.useImperativeHandle(ref, () => treeRef.current!);
|
||||
|
||||
const getInitExpandedKeys = () => {
|
||||
const { keyEntities } = convertDataToEntities(getTreeData(props));
|
||||
@ -93,7 +94,7 @@ const DirectoryTree: React.FC<DirectoryTreeProps> = ({
|
||||
|
||||
// Call internal rc-tree expand function
|
||||
// https://github.com/ant-design/ant-design/issues/12567
|
||||
ref.current.onNodeExpand(event, node);
|
||||
treeRef.current!.onNodeExpand(event as any, node);
|
||||
};
|
||||
|
||||
const onDebounceExpand = debounce(expandFolderNode, 200, {
|
||||
@ -220,7 +221,7 @@ const DirectoryTree: React.FC<DirectoryTreeProps> = ({
|
||||
return (
|
||||
<Tree
|
||||
icon={getIcon}
|
||||
ref={ref}
|
||||
ref={treeRef}
|
||||
blockNode
|
||||
{...otherProps}
|
||||
prefixCls={prefixCls}
|
||||
@ -235,9 +236,12 @@ const DirectoryTree: React.FC<DirectoryTreeProps> = ({
|
||||
);
|
||||
};
|
||||
|
||||
DirectoryTree.defaultProps = {
|
||||
const ForwardDirectoryTree = React.forwardRef(DirectoryTree);
|
||||
ForwardDirectoryTree.displayName = 'DirectoryTree';
|
||||
|
||||
ForwardDirectoryTree.defaultProps = {
|
||||
showIcon: true,
|
||||
expandAction: 'click' as DirectoryTreeProps['expandAction'],
|
||||
};
|
||||
|
||||
export default DirectoryTree;
|
||||
export default ForwardDirectoryTree;
|
||||
|
@ -250,4 +250,11 @@ describe('Directory Tree', () => {
|
||||
expect.objectContaining({ event: 'select', nativeEvent: expect.anything() }),
|
||||
);
|
||||
});
|
||||
|
||||
it('ref support', () => {
|
||||
const treeRef = React.createRef();
|
||||
mount(createTree({ ref: treeRef }));
|
||||
|
||||
expect('scrollTo' in treeRef.current).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user