mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-01 14:59:35 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
94 lines
2.6 KiB
TypeScript
94 lines
2.6 KiB
TypeScript
import React, { forwardRef } from 'react';
|
|
import LoadingOutlined from '@ant-design/icons/LoadingOutlined';
|
|
import classNames from 'classnames';
|
|
import CSSMotion from 'rc-motion';
|
|
|
|
import type { ButtonProps } from './button';
|
|
import IconWrapper from './IconWrapper';
|
|
|
|
type InnerLoadingIconProps = {
|
|
prefixCls: string;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
iconClassName?: string;
|
|
} & Pick<ButtonProps, 'iconPosition'>;
|
|
|
|
const InnerLoadingIcon = forwardRef<HTMLSpanElement, InnerLoadingIconProps>((props, ref) => {
|
|
const { prefixCls, className, style, iconClassName, iconPosition = 'start' } = props;
|
|
const mergedIconCls = classNames(className, {
|
|
[`${prefixCls}-loading-icon-end`]: iconPosition === 'end',
|
|
[`${prefixCls}-loading-icon`]: iconPosition === 'start',
|
|
});
|
|
|
|
return (
|
|
<IconWrapper prefixCls={prefixCls} className={mergedIconCls} style={style} ref={ref}>
|
|
<LoadingOutlined className={iconClassName} />
|
|
</IconWrapper>
|
|
);
|
|
});
|
|
|
|
export type LoadingIconProps = {
|
|
prefixCls: string;
|
|
existIcon: boolean;
|
|
loading?: boolean | object;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
} & Pick<ButtonProps, 'iconPosition'>;
|
|
|
|
const getCollapsedWidth = (): React.CSSProperties => ({
|
|
width: 0,
|
|
opacity: 0,
|
|
transform: 'scale(0)',
|
|
});
|
|
|
|
const getRealWidth = (node: HTMLElement): React.CSSProperties => ({
|
|
width: node.scrollWidth,
|
|
opacity: 1,
|
|
transform: 'scale(1)',
|
|
});
|
|
|
|
const LoadingIcon: React.FC<LoadingIconProps> = (props) => {
|
|
const { prefixCls, loading, existIcon, className, style, iconPosition } = props;
|
|
const visible = !!loading;
|
|
|
|
if (existIcon) {
|
|
return (
|
|
<InnerLoadingIcon
|
|
prefixCls={prefixCls}
|
|
className={className}
|
|
style={style}
|
|
iconPosition={iconPosition}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<CSSMotion
|
|
visible={visible}
|
|
// We do not really use this motionName
|
|
motionName={`${prefixCls}-loading-icon-motion`}
|
|
motionLeave={visible}
|
|
removeOnLeave
|
|
onAppearStart={getCollapsedWidth}
|
|
onAppearActive={getRealWidth}
|
|
onEnterStart={getCollapsedWidth}
|
|
onEnterActive={getRealWidth}
|
|
onLeaveStart={getRealWidth}
|
|
onLeaveActive={getCollapsedWidth}
|
|
>
|
|
{({ className: motionCls, style: motionStyle }, ref: React.Ref<HTMLSpanElement>) => (
|
|
<InnerLoadingIcon
|
|
prefixCls={prefixCls}
|
|
className={className}
|
|
style={{ ...style, ...motionStyle }}
|
|
ref={ref}
|
|
iconClassName={motionCls}
|
|
iconPosition={iconPosition}
|
|
/>
|
|
)}
|
|
</CSSMotion>
|
|
);
|
|
};
|
|
|
|
export default LoadingIcon;
|