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.
83 lines
2.6 KiB
83 lines
2.6 KiB
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
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';
|
|
|
|
function getPercentage(_ref) {
|
|
var percent = _ref.percent,
|
|
success = _ref.success,
|
|
successPercent = _ref.successPercent;
|
|
var realSuccessPercent = validProgress(getSuccessPercent({
|
|
success: success,
|
|
successPercent: successPercent
|
|
}));
|
|
return [realSuccessPercent, validProgress(validProgress(percent) - realSuccessPercent)];
|
|
}
|
|
|
|
function getStrokeColor(_ref2) {
|
|
var _ref2$success = _ref2.success,
|
|
success = _ref2$success === void 0 ? {} : _ref2$success,
|
|
strokeColor = _ref2.strokeColor;
|
|
var successColor = success.strokeColor;
|
|
return [successColor || presetPrimaryColors.green, strokeColor || null];
|
|
}
|
|
|
|
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,
|
|
success = props.success;
|
|
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';
|
|
|
|
var getGapDegree = function 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
|
|
|
|
|
|
var isGradient = Object.prototype.toString.call(props.strokeColor) === '[object Object]';
|
|
var strokeColor = getStrokeColor({
|
|
success: success,
|
|
strokeColor: props.strokeColor
|
|
});
|
|
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: getGapDegree(),
|
|
gapPosition: gapPos
|
|
}), children);
|
|
};
|
|
|
|
export default Circle; |