123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- import _extends from "@babel/runtime/helpers/esm/extends";
- import _typeof from "@babel/runtime/helpers/esm/typeof";
- import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
- import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
- var _excluded = ["id", "prefixCls", "steps", "strokeWidth", "trailWidth", "gapDegree", "gapPosition", "trailColor", "strokeLinecap", "style", "className", "strokeColor", "percent"];
- import * as React from 'react';
- import classNames from 'classnames';
- import { defaultProps, useTransitionDuration } from "../common";
- import useId from "../hooks/useId";
- import PtgCircle from "./PtgCircle";
- import { VIEW_BOX_SIZE, getCircleStyle } from "./util";
- function toArray(value) {
- var mergedValue = value !== null && value !== void 0 ? value : [];
- return Array.isArray(mergedValue) ? mergedValue : [mergedValue];
- }
- var Circle = function Circle(props) {
- var _defaultProps$props = _objectSpread(_objectSpread({}, defaultProps), props),
- id = _defaultProps$props.id,
- prefixCls = _defaultProps$props.prefixCls,
- steps = _defaultProps$props.steps,
- strokeWidth = _defaultProps$props.strokeWidth,
- trailWidth = _defaultProps$props.trailWidth,
- _defaultProps$props$g = _defaultProps$props.gapDegree,
- gapDegree = _defaultProps$props$g === void 0 ? 0 : _defaultProps$props$g,
- gapPosition = _defaultProps$props.gapPosition,
- trailColor = _defaultProps$props.trailColor,
- strokeLinecap = _defaultProps$props.strokeLinecap,
- style = _defaultProps$props.style,
- className = _defaultProps$props.className,
- strokeColor = _defaultProps$props.strokeColor,
- percent = _defaultProps$props.percent,
- restProps = _objectWithoutProperties(_defaultProps$props, _excluded);
- var halfSize = VIEW_BOX_SIZE / 2;
- var mergedId = useId(id);
- var gradientId = "".concat(mergedId, "-gradient");
- var radius = halfSize - strokeWidth / 2;
- var perimeter = Math.PI * 2 * radius;
- var rotateDeg = gapDegree > 0 ? 90 + gapDegree / 2 : -90;
- var perimeterWithoutGap = perimeter * ((360 - gapDegree) / 360);
- var _ref = _typeof(steps) === 'object' ? steps : {
- count: steps,
- gap: 2
- },
- stepCount = _ref.count,
- stepGap = _ref.gap;
- var percentList = toArray(percent);
- var strokeColorList = toArray(strokeColor);
- var gradient = strokeColorList.find(function (color) {
- return color && _typeof(color) === 'object';
- });
- var isConicGradient = gradient && _typeof(gradient) === 'object';
- var mergedStrokeLinecap = isConicGradient ? 'butt' : strokeLinecap;
- var circleStyle = getCircleStyle(perimeter, perimeterWithoutGap, 0, 100, rotateDeg, gapDegree, gapPosition, trailColor, mergedStrokeLinecap, strokeWidth);
- var paths = useTransitionDuration();
- var getStokeList = function getStokeList() {
- var stackPtg = 0;
- return percentList.map(function (ptg, index) {
- var color = strokeColorList[index] || strokeColorList[strokeColorList.length - 1];
- var circleStyleForStack = getCircleStyle(perimeter, perimeterWithoutGap, stackPtg, ptg, rotateDeg, gapDegree, gapPosition, color, mergedStrokeLinecap, strokeWidth);
- stackPtg += ptg;
- return /*#__PURE__*/React.createElement(PtgCircle, {
- key: index,
- color: color,
- ptg: ptg,
- radius: radius,
- prefixCls: prefixCls,
- gradientId: gradientId,
- style: circleStyleForStack,
- strokeLinecap: mergedStrokeLinecap,
- strokeWidth: strokeWidth,
- gapDegree: gapDegree,
- ref: function ref(elem) {
- // https://reactjs.org/docs/refs-and-the-dom.html#callback-refs
- // React will call the ref callback with the DOM element when the component mounts,
- // and call it with `null` when it unmounts.
- // Refs are guaranteed to be up-to-date before componentDidMount or componentDidUpdate fires.
- paths[index] = elem;
- },
- size: VIEW_BOX_SIZE
- });
- }).reverse();
- };
- var getStepStokeList = function getStepStokeList() {
- // only show the first percent when pass steps
- var current = Math.round(stepCount * (percentList[0] / 100));
- var stepPtg = 100 / stepCount;
- var stackPtg = 0;
- return new Array(stepCount).fill(null).map(function (_, index) {
- var color = index <= current - 1 ? strokeColorList[0] : trailColor;
- var stroke = color && _typeof(color) === 'object' ? "url(#".concat(gradientId, ")") : undefined;
- var circleStyleForStack = getCircleStyle(perimeter, perimeterWithoutGap, stackPtg, stepPtg, rotateDeg, gapDegree, gapPosition, color, 'butt', strokeWidth, stepGap);
- stackPtg += (perimeterWithoutGap - circleStyleForStack.strokeDashoffset + stepGap) * 100 / perimeterWithoutGap;
- return /*#__PURE__*/React.createElement("circle", {
- key: index,
- className: "".concat(prefixCls, "-circle-path"),
- r: radius,
- cx: halfSize,
- cy: halfSize,
- stroke: stroke,
- strokeWidth: strokeWidth,
- opacity: 1,
- style: circleStyleForStack,
- ref: function ref(elem) {
- paths[index] = elem;
- }
- });
- });
- };
- return /*#__PURE__*/React.createElement("svg", _extends({
- className: classNames("".concat(prefixCls, "-circle"), className),
- viewBox: "0 0 ".concat(VIEW_BOX_SIZE, " ").concat(VIEW_BOX_SIZE),
- style: style,
- id: id,
- role: "presentation"
- }, restProps), !stepCount && /*#__PURE__*/React.createElement("circle", {
- className: "".concat(prefixCls, "-circle-trail"),
- r: radius,
- cx: halfSize,
- cy: halfSize,
- stroke: trailColor,
- strokeLinecap: mergedStrokeLinecap,
- strokeWidth: trailWidth || strokeWidth,
- style: circleStyle
- }), stepCount ? getStepStokeList() : getStokeList());
- };
- if (process.env.NODE_ENV !== 'production') {
- Circle.displayName = 'Circle';
- }
- export default Circle;
|