99 lines
4.1 KiB
JavaScript
99 lines
4.1 KiB
JavaScript
"use strict";
|
|
|
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = void 0;
|
|
|
|
var React = _interopRequireWildcard(require("react"));
|
|
|
|
var _rcProgress = require("rc-progress");
|
|
|
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
|
|
var _utils = require("./utils");
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
|
|
|
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
|
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
|
|
function getPercentage(_ref) {
|
|
var percent = _ref.percent,
|
|
successPercent = _ref.successPercent;
|
|
var ptg = (0, _utils.validProgress)(percent);
|
|
|
|
if (!successPercent) {
|
|
return ptg;
|
|
}
|
|
|
|
var successPtg = (0, _utils.validProgress)(successPercent);
|
|
return [successPercent, (0, _utils.validProgress)(ptg - successPtg)];
|
|
}
|
|
|
|
function getStrokeColor(_ref2) {
|
|
var successPercent = _ref2.successPercent,
|
|
strokeColor = _ref2.strokeColor;
|
|
var color = strokeColor || null;
|
|
|
|
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 = (0, _classnames["default"])("".concat(prefixCls, "-inner"), _defineProperty({}, "".concat(prefixCls, "-circle-gradient"), isGradient));
|
|
return /*#__PURE__*/React.createElement("div", {
|
|
className: wrapperClassName,
|
|
style: circleStyle
|
|
}, /*#__PURE__*/React.createElement(_rcProgress.Circle, {
|
|
percent: getPercentage(props),
|
|
strokeWidth: circleWidth,
|
|
trailWidth: circleWidth,
|
|
strokeColor: strokeColor,
|
|
strokeLinecap: strokeLinecap,
|
|
trailColor: trailColor,
|
|
prefixCls: prefixCls,
|
|
gapDegree: gapDeg,
|
|
gapPosition: gapPos
|
|
}), children);
|
|
};
|
|
|
|
var _default = Circle;
|
|
exports["default"] = _default; |