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.
99 lines
2.7 KiB
99 lines
2.7 KiB
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
import * as React from 'react';
|
|
import { Circle as RCCircle } from 'rc-progress';
|
|
import classNames from 'classnames';
|
|
import { validProgress } from './utils';
|
|
|
|
function getPercentage(_ref) {
|
|
var percent = _ref.percent,
|
|
success = _ref.success,
|
|
successPercent = _ref.successPercent;
|
|
var ptg = validProgress(percent);
|
|
/** @deprecated Use `percent` instead */
|
|
|
|
if (success && 'progress' in success) {
|
|
successPercent = success.progress;
|
|
}
|
|
|
|
if (success && 'percent' in success) {
|
|
successPercent = success.percent;
|
|
}
|
|
|
|
if (!successPercent) {
|
|
return ptg;
|
|
}
|
|
|
|
var successPtg = validProgress(successPercent);
|
|
return [successPercent, validProgress(ptg - successPtg)];
|
|
}
|
|
|
|
function getStrokeColor(_ref2) {
|
|
var success = _ref2.success,
|
|
strokeColor = _ref2.strokeColor,
|
|
successPercent = _ref2.successPercent;
|
|
var color = strokeColor || null;
|
|
/** @deprecated Use `percent` instead */
|
|
|
|
if (success && 'progress' in success) {
|
|
successPercent = success.progress;
|
|
}
|
|
|
|
if (success && 'percent' in success) {
|
|
successPercent = success.percent;
|
|
}
|
|
|
|
if (!successPercent) {
|
|
return color;
|
|
}
|
|
|
|
return [null, color];
|
|
}
|
|
|
|
var Circle = function Circle(props) {
|
|
var prefixCls = props.prefixCls,
|
|
width = props.width,
|
|
strokeWidth = props.strokeWidth,
|
|
trailColor = props.trailColor,
|
|
strokeLinecap = props.strokeLinecap,
|
|
gapPosition = props.gapPosition,
|
|
gapDegree = props.gapDegree,
|
|
type = props.type,
|
|
children = props.children;
|
|
var circleSize = width || 120;
|
|
var circleStyle = {
|
|
width: circleSize,
|
|
height: circleSize,
|
|
fontSize: circleSize * 0.15 + 6
|
|
};
|
|
var circleWidth = strokeWidth || 6;
|
|
var gapPos = gapPosition || type === 'dashboard' && 'bottom' || 'top'; // Support gapDeg = 0 when type = 'dashboard'
|
|
|
|
var gapDeg;
|
|
|
|
if (gapDegree || gapDegree === 0) {
|
|
gapDeg = gapDegree;
|
|
} else if (type === 'dashboard') {
|
|
gapDeg = 75;
|
|
} // using className to style stroke color
|
|
|
|
|
|
var strokeColor = getStrokeColor(props);
|
|
var isGradient = Object.prototype.toString.call(strokeColor) === '[object Object]';
|
|
var wrapperClassName = classNames("".concat(prefixCls, "-inner"), _defineProperty({}, "".concat(prefixCls, "-circle-gradient"), isGradient));
|
|
return /*#__PURE__*/React.createElement("div", {
|
|
className: wrapperClassName,
|
|
style: circleStyle
|
|
}, /*#__PURE__*/React.createElement(RCCircle, {
|
|
percent: getPercentage(props),
|
|
strokeWidth: circleWidth,
|
|
trailWidth: circleWidth,
|
|
strokeColor: strokeColor,
|
|
strokeLinecap: strokeLinecap,
|
|
trailColor: trailColor,
|
|
prefixCls: prefixCls,
|
|
gapDegree: gapDeg,
|
|
gapPosition: gapPos
|
|
}), children);
|
|
};
|
|
|
|
export default Circle; |