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.
93 lines
2.5 KiB
93 lines
2.5 KiB
import * as React from 'react';
|
|
import { Circle as RCCircle } from 'rc-progress';
|
|
import { presetPrimaryColors } from '@ant-design/colors';
|
|
import classNames from 'classnames';
|
|
import { validProgress, getSuccessPercent } from './utils';
|
|
import { ProgressProps } from './progress';
|
|
|
|
interface CircleProps extends ProgressProps {
|
|
prefixCls: string;
|
|
children: React.ReactNode;
|
|
progressStatus: string;
|
|
}
|
|
|
|
function getPercentage({ percent, success, successPercent }: CircleProps) {
|
|
const ptg = validProgress(percent);
|
|
const realSuccessPercent = getSuccessPercent({ success, successPercent });
|
|
if (!realSuccessPercent) {
|
|
return ptg;
|
|
}
|
|
return [
|
|
validProgress(realSuccessPercent),
|
|
validProgress(ptg - validProgress(realSuccessPercent)),
|
|
];
|
|
}
|
|
|
|
function getStrokeColor({ success, strokeColor, successPercent }: CircleProps) {
|
|
const color = strokeColor || null;
|
|
const realSuccessPercent = getSuccessPercent({ success, successPercent });
|
|
if (!realSuccessPercent) {
|
|
return color;
|
|
}
|
|
return [presetPrimaryColors.green, color];
|
|
}
|
|
|
|
const Circle: React.FC<CircleProps> = props => {
|
|
const {
|
|
prefixCls,
|
|
width,
|
|
strokeWidth,
|
|
trailColor,
|
|
strokeLinecap,
|
|
gapPosition,
|
|
gapDegree,
|
|
type,
|
|
children,
|
|
} = props;
|
|
const circleSize = width || 120;
|
|
const circleStyle = {
|
|
width: circleSize,
|
|
height: circleSize,
|
|
fontSize: circleSize * 0.15 + 6,
|
|
} as React.CSSProperties;
|
|
const circleWidth = strokeWidth || 6;
|
|
const gapPos = gapPosition || (type === 'dashboard' && 'bottom') || 'top';
|
|
|
|
const getGapDegree = () => {
|
|
// Support gapDeg = 0 when type = 'dashboard'
|
|
if (gapDegree || gapDegree === 0) {
|
|
return gapDegree;
|
|
}
|
|
if (type === 'dashboard') {
|
|
return 75;
|
|
}
|
|
return undefined;
|
|
};
|
|
|
|
// using className to style stroke color
|
|
const strokeColor = getStrokeColor(props) as string | string[] | object;
|
|
const isGradient = Object.prototype.toString.call(strokeColor) === '[object Object]';
|
|
|
|
const wrapperClassName = classNames(`${prefixCls}-inner`, {
|
|
[`${prefixCls}-circle-gradient`]: isGradient,
|
|
});
|
|
|
|
return (
|
|
<div className={wrapperClassName} style={circleStyle}>
|
|
<RCCircle
|
|
percent={getPercentage(props)}
|
|
strokeWidth={circleWidth}
|
|
trailWidth={circleWidth}
|
|
strokeColor={strokeColor}
|
|
strokeLinecap={strokeLinecap}
|
|
trailColor={trailColor}
|
|
prefixCls={prefixCls}
|
|
gapDegree={getGapDegree()}
|
|
gapPosition={gapPos}
|
|
/>
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Circle;
|
|
|