mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 03:59:01 +08:00
91 lines
2.3 KiB
TypeScript
91 lines
2.3 KiB
TypeScript
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import useLayoutEffect from 'rc-util/lib/hooks/useLayoutEffect';
|
|
|
|
export interface ProgressProps {
|
|
prefixCls: string;
|
|
percent: number;
|
|
}
|
|
|
|
const viewSize = 100;
|
|
const borderWidth = viewSize / 5;
|
|
const radius = viewSize / 2 - borderWidth / 2;
|
|
const circumference = radius * 2 * Math.PI;
|
|
const position = 50;
|
|
|
|
interface CircleProps {
|
|
dotClassName?: string;
|
|
style?: React.CSSProperties;
|
|
hasCircleCls?: boolean;
|
|
}
|
|
|
|
const CustomCircle: React.FC<Readonly<CircleProps>> = (props) => {
|
|
const { dotClassName, style, hasCircleCls } = props;
|
|
return (
|
|
<circle
|
|
className={classNames(`${dotClassName}-circle`, {
|
|
[`${dotClassName}-circle-bg`]: hasCircleCls,
|
|
})}
|
|
r={radius}
|
|
cx={position}
|
|
cy={position}
|
|
strokeWidth={borderWidth}
|
|
style={style}
|
|
/>
|
|
);
|
|
};
|
|
|
|
const Progress: React.FC<Readonly<ProgressProps>> = ({ percent, prefixCls }) => {
|
|
const dotClassName = `${prefixCls}-dot`;
|
|
const holderClassName = `${dotClassName}-holder`;
|
|
const hideClassName = `${holderClassName}-hidden`;
|
|
|
|
const [render, setRender] = React.useState(false);
|
|
|
|
// ==================== Visible =====================
|
|
useLayoutEffect(() => {
|
|
if (percent !== 0) {
|
|
setRender(true);
|
|
}
|
|
}, [percent !== 0]);
|
|
|
|
// ==================== Progress ====================
|
|
const safePtg = Math.max(Math.min(percent, 100), 0);
|
|
|
|
// ===================== Render =====================
|
|
if (!render) {
|
|
return null;
|
|
}
|
|
|
|
const circleStyle: React.CSSProperties = {
|
|
strokeDashoffset: `${circumference / 4}`,
|
|
strokeDasharray: `${(circumference * safePtg) / 100} ${
|
|
(circumference * (100 - safePtg)) / 100
|
|
}`,
|
|
};
|
|
|
|
return (
|
|
<span
|
|
className={classNames(
|
|
holderClassName,
|
|
`${dotClassName}-progress`,
|
|
safePtg <= 0 && hideClassName,
|
|
)}
|
|
>
|
|
<svg
|
|
viewBox={`0 0 ${viewSize} ${viewSize}`}
|
|
// biome-ignore lint/a11y/noNoninteractiveElementToInteractiveRole: progressbar could be readonly
|
|
role="progressbar"
|
|
aria-valuemin={0}
|
|
aria-valuemax={100}
|
|
aria-valuenow={safePtg}
|
|
>
|
|
<CustomCircle dotClassName={dotClassName} hasCircleCls />
|
|
<CustomCircle dotClassName={dotClassName} style={circleStyle} />
|
|
</svg>
|
|
</span>
|
|
);
|
|
};
|
|
|
|
export default Progress;
|