import * as React from 'react'; import { Circle as RCCircle } from 'rc-progress'; import classNames from 'classnames'; import { validProgress } from './utils'; import { ProgressProps } from './progress'; interface CircleProps extends ProgressProps { prefixCls: string; children: React.ReactNode; progressStatus: string; } function getPercentage({ percent, successPercent }: CircleProps) { const ptg = validProgress(percent); if (!successPercent) { return ptg; } const successPtg = validProgress(successPercent); return [successPercent, validProgress(ptg - successPtg)]; } function getStrokeColor({ successPercent, strokeColor }: CircleProps) { const color = strokeColor || null; if (!successPercent) { return color; } return [null, color]; } const Circle: React.FC = 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, }; const circleWidth = strokeWidth || 6; const gapPos = gapPosition || (type === 'dashboard' && 'bottom') || 'top'; // Support gapDeg = 0 when type = 'dashboard' let gapDeg; if (gapDegree || gapDegree === 0) { gapDeg = gapDegree; } else if (type === 'dashboard') { gapDeg = 75; } // 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 (
{children}
); }; export default Circle;