amis-rpc-design/node_modules/antd/es/progress/Circle.js

73 lines
2.2 KiB
JavaScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
"use client";
import classNames from 'classnames';
import { Circle as RCCircle } from 'rc-progress';
import * as React from 'react';
import Tooltip from '../tooltip';
import { getPercentage, getSize, getStrokeColor } from './utils';
const CIRCLE_MIN_STROKE_WIDTH = 3;
const getMinPercent = width => CIRCLE_MIN_STROKE_WIDTH / width * 100;
const Circle = props => {
const {
prefixCls,
trailColor = null,
strokeLinecap = 'round',
gapPosition,
gapDegree,
width: originWidth = 120,
type,
children,
success,
size = originWidth
} = props;
const [width, height] = getSize(size, 'circle');
let {
strokeWidth
} = props;
if (strokeWidth === undefined) {
strokeWidth = Math.max(getMinPercent(width), 6);
}
const circleStyle = {
width,
height,
fontSize: width * 0.15 + 6
};
const realGapDegree = React.useMemo(() => {
// Support gapDeg = 0 when type = 'dashboard'
if (gapDegree || gapDegree === 0) {
return gapDegree;
}
if (type === 'dashboard') {
return 75;
}
return undefined;
}, [gapDegree, type]);
const gapPos = gapPosition || type === 'dashboard' && 'bottom' || undefined;
// using className to style stroke color
const isGradient = Object.prototype.toString.call(props.strokeColor) === '[object Object]';
const strokeColor = getStrokeColor({
success,
strokeColor: props.strokeColor
});
const wrapperClassName = classNames(`${prefixCls}-inner`, {
[`${prefixCls}-circle-gradient`]: isGradient
});
const circleContent = /*#__PURE__*/React.createElement(RCCircle, {
percent: getPercentage(props),
strokeWidth: strokeWidth,
trailWidth: strokeWidth,
strokeColor: strokeColor,
strokeLinecap: strokeLinecap,
trailColor: trailColor,
prefixCls: prefixCls,
gapDegree: realGapDegree,
gapPosition: gapPos
});
return /*#__PURE__*/React.createElement("div", {
className: wrapperClassName,
style: circleStyle
}, width <= 20 ? /*#__PURE__*/React.createElement(Tooltip, {
title: children
}, /*#__PURE__*/React.createElement("span", null, circleContent)) : /*#__PURE__*/React.createElement(React.Fragment, null, circleContent, children));
};
export default Circle;