You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.7 KiB
52 lines
1.7 KiB
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import LoadingOutlined from '@ant-design/icons/LoadingOutlined';
|
|
import FileOutlined from '@ant-design/icons/FileOutlined';
|
|
import MinusSquareOutlined from '@ant-design/icons/MinusSquareOutlined';
|
|
import PlusSquareOutlined from '@ant-design/icons/PlusSquareOutlined';
|
|
import CaretDownFilled from '@ant-design/icons/CaretDownFilled';
|
|
import { AntTreeNodeProps } from '../Tree';
|
|
import { isValidElement, cloneElement } from '../../_util/reactNode';
|
|
|
|
export default function renderSwitcherIcon(
|
|
prefixCls: string,
|
|
switcherIcon: React.ReactNode | null | undefined,
|
|
showLine: boolean | { showLeafIcon: boolean } | undefined,
|
|
{ isLeaf, expanded, loading }: AntTreeNodeProps,
|
|
) {
|
|
if (loading) {
|
|
return <LoadingOutlined className={`${prefixCls}-switcher-loading-icon`} />;
|
|
}
|
|
let showLeafIcon;
|
|
if (showLine && typeof showLine === 'object') {
|
|
showLeafIcon = showLine.showLeafIcon;
|
|
}
|
|
if (isLeaf) {
|
|
if (showLine) {
|
|
if (typeof showLine === 'object' && !showLeafIcon) {
|
|
return <span className={`${prefixCls}-switcher-leaf-line`} />;
|
|
}
|
|
return <FileOutlined className={`${prefixCls}-switcher-line-icon`} />;
|
|
}
|
|
return null;
|
|
}
|
|
const switcherCls = `${prefixCls}-switcher-icon`;
|
|
if (isValidElement(switcherIcon)) {
|
|
return cloneElement(switcherIcon, {
|
|
className: classNames(switcherIcon.props.className || '', switcherCls),
|
|
});
|
|
}
|
|
|
|
if (switcherIcon) {
|
|
return switcherIcon;
|
|
}
|
|
|
|
if (showLine) {
|
|
return expanded ? (
|
|
<MinusSquareOutlined className={`${prefixCls}-switcher-line-icon`} />
|
|
) : (
|
|
<PlusSquareOutlined className={`${prefixCls}-switcher-line-icon`} />
|
|
);
|
|
}
|
|
return <CaretDownFilled className={switcherCls} />;
|
|
}
|
|
|