mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-15 14:31:09 +08:00

* chore: init demo * chore: circle * docs: update * test: update test case * test: coverage * docs: update docs * docs: deprecated trailColor * chore: bump rail * chore: misc * chore: fix style * chore: move pos * chore: refactor structrue * test: fix test case * test: update snapshot * test: fix test case * chore: rm style * test: update snapshot * test: update snapshot * chore: fix steps style
114 lines
3.1 KiB
TypeScript
114 lines
3.1 KiB
TypeScript
import * as React from 'react';
|
|
import type { ProgressProps as RcProgressProps } from '@rc-component/progress';
|
|
import { Circle as RCCircle } from '@rc-component/progress';
|
|
import omit from '@rc-component/util/lib/omit';
|
|
import cls from 'classnames';
|
|
|
|
import Tooltip from '../tooltip';
|
|
import type { ProgressGradient, ProgressProps } from './progress';
|
|
import { getPercentage, getSize, getStrokeColor } from './utils';
|
|
|
|
const CIRCLE_MIN_STROKE_WIDTH = 3;
|
|
|
|
const getMinPercent = (width: number): number => (CIRCLE_MIN_STROKE_WIDTH / width) * 100;
|
|
|
|
const OMIT_SEMANTIC_NAMES = ['root', 'body', 'indicator'] as const;
|
|
|
|
export interface CircleProps extends ProgressProps {
|
|
prefixCls: string;
|
|
children: React.ReactNode;
|
|
progressStatus: string;
|
|
strokeColor?: string | ProgressGradient;
|
|
classNames: Required<ProgressProps>['classNames'];
|
|
styles: Required<ProgressProps>['styles'];
|
|
}
|
|
|
|
const Circle: React.FC<CircleProps> = (props) => {
|
|
const {
|
|
prefixCls,
|
|
classNames,
|
|
styles,
|
|
railColor,
|
|
trailColor,
|
|
strokeLinecap = 'round',
|
|
gapPosition,
|
|
gapDegree,
|
|
width: originWidth = 120,
|
|
type,
|
|
children,
|
|
success,
|
|
size = originWidth,
|
|
steps,
|
|
} = props;
|
|
|
|
const mergedRailColor = railColor ?? trailColor;
|
|
|
|
const [width, height] = getSize(size, 'circle');
|
|
|
|
let { strokeWidth } = props;
|
|
if (strokeWidth === undefined) {
|
|
strokeWidth = Math.max(getMinPercent(width), 6);
|
|
}
|
|
|
|
const circleStyle: React.CSSProperties = { width, height, fontSize: width * 0.15 + 6 };
|
|
|
|
const realGapDegree = React.useMemo<RcProgressProps['gapDegree']>(() => {
|
|
// Support gapDeg = 0 when type = 'dashboard'
|
|
if (gapDegree || gapDegree === 0) {
|
|
return gapDegree;
|
|
}
|
|
if (type === 'dashboard') {
|
|
return 75;
|
|
}
|
|
return undefined;
|
|
}, [gapDegree, type]);
|
|
|
|
const percentArray = getPercentage(props);
|
|
const gapPos = gapPosition || (type === 'dashboard' && 'bottom') || undefined;
|
|
|
|
// using className to style stroke color
|
|
const isGradient = Object.prototype.toString.call(props.strokeColor) === '[object Object]';
|
|
const strokeColor = getStrokeColor({ success, strokeColor: props.strokeColor });
|
|
|
|
const wrapperClassName = cls(
|
|
`${prefixCls}-body`,
|
|
{
|
|
[`${prefixCls}-circle-gradient`]: isGradient,
|
|
},
|
|
classNames.body,
|
|
);
|
|
|
|
const circleContent = (
|
|
<RCCircle
|
|
steps={steps}
|
|
percent={steps ? percentArray[1] : percentArray}
|
|
strokeWidth={strokeWidth}
|
|
railWidth={strokeWidth}
|
|
strokeColor={steps ? strokeColor[1] : strokeColor}
|
|
strokeLinecap={strokeLinecap}
|
|
railColor={mergedRailColor}
|
|
prefixCls={prefixCls}
|
|
gapDegree={realGapDegree}
|
|
gapPosition={gapPos}
|
|
classNames={omit(classNames, OMIT_SEMANTIC_NAMES)}
|
|
styles={omit(styles, OMIT_SEMANTIC_NAMES)}
|
|
/>
|
|
);
|
|
|
|
const smallCircle = width <= 20;
|
|
const node = (
|
|
<div className={wrapperClassName} style={{ ...circleStyle, ...styles.body }}>
|
|
{circleContent}
|
|
{!smallCircle && children}
|
|
</div>
|
|
);
|
|
|
|
if (smallCircle) {
|
|
return <Tooltip title={children}>{node}</Tooltip>;
|
|
}
|
|
|
|
return node;
|
|
};
|
|
|
|
export default Circle;
|