 85bf1341f3
			
		
	
	85bf1341f3
	
	
	
		
			
			Frontend Enhancements: - Complete React TypeScript frontend with modern UI components - Distributed workflows management interface with real-time updates - Socket.IO integration for live agent status monitoring - Agent management dashboard with cluster visualization - Project management interface with metrics and task tracking - Responsive design with proper error handling and loading states Backend Infrastructure: - Distributed coordinator for multi-agent workflow orchestration - Cluster management API with comprehensive agent operations - Enhanced database models for agents and projects - Project service for filesystem-based project discovery - Performance monitoring and metrics collection - Comprehensive API documentation and error handling Documentation: - Complete distributed development guide (README_DISTRIBUTED.md) - Comprehensive development report with architecture insights - System configuration templates and deployment guides The platform now provides a complete web interface for managing the distributed AI cluster with real-time monitoring, workflow orchestration, and agent coordination capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			478 lines
		
	
	
		
			19 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			478 lines
		
	
	
		
			19 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| 
 | |
| function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
 | |
| Object.defineProperty(exports, "__esModule", {
 | |
|   value: true
 | |
| });
 | |
| exports.Label = Label;
 | |
| var _react = _interopRequireWildcard(require("react"));
 | |
| var _isNil = _interopRequireDefault(require("lodash/isNil"));
 | |
| var _isFunction = _interopRequireDefault(require("lodash/isFunction"));
 | |
| var _isObject = _interopRequireDefault(require("lodash/isObject"));
 | |
| var _clsx = _interopRequireDefault(require("clsx"));
 | |
| var _Text = require("./Text");
 | |
| var _ReactUtils = require("../util/ReactUtils");
 | |
| var _DataUtils = require("../util/DataUtils");
 | |
| var _PolarUtils = require("../util/PolarUtils");
 | |
| var _excluded = ["offset"];
 | |
| function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
 | |
| function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
 | |
| function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
 | |
| function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
 | |
| function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
 | |
| function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
 | |
| function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
 | |
| function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
 | |
| function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
 | |
| function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
 | |
| function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } } return target; }
 | |
| function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
 | |
| function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
 | |
| function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
 | |
| function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
 | |
| function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
 | |
| function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
 | |
| var getLabel = function getLabel(props) {
 | |
|   var value = props.value,
 | |
|     formatter = props.formatter;
 | |
|   var label = (0, _isNil["default"])(props.children) ? value : props.children;
 | |
|   if ((0, _isFunction["default"])(formatter)) {
 | |
|     return formatter(label);
 | |
|   }
 | |
|   return label;
 | |
| };
 | |
| var getDeltaAngle = function getDeltaAngle(startAngle, endAngle) {
 | |
|   var sign = (0, _DataUtils.mathSign)(endAngle - startAngle);
 | |
|   var deltaAngle = Math.min(Math.abs(endAngle - startAngle), 360);
 | |
|   return sign * deltaAngle;
 | |
| };
 | |
| var renderRadialLabel = function renderRadialLabel(labelProps, label, attrs) {
 | |
|   var position = labelProps.position,
 | |
|     viewBox = labelProps.viewBox,
 | |
|     offset = labelProps.offset,
 | |
|     className = labelProps.className;
 | |
|   var _ref = viewBox,
 | |
|     cx = _ref.cx,
 | |
|     cy = _ref.cy,
 | |
|     innerRadius = _ref.innerRadius,
 | |
|     outerRadius = _ref.outerRadius,
 | |
|     startAngle = _ref.startAngle,
 | |
|     endAngle = _ref.endAngle,
 | |
|     clockWise = _ref.clockWise;
 | |
|   var radius = (innerRadius + outerRadius) / 2;
 | |
|   var deltaAngle = getDeltaAngle(startAngle, endAngle);
 | |
|   var sign = deltaAngle >= 0 ? 1 : -1;
 | |
|   var labelAngle, direction;
 | |
|   if (position === 'insideStart') {
 | |
|     labelAngle = startAngle + sign * offset;
 | |
|     direction = clockWise;
 | |
|   } else if (position === 'insideEnd') {
 | |
|     labelAngle = endAngle - sign * offset;
 | |
|     direction = !clockWise;
 | |
|   } else if (position === 'end') {
 | |
|     labelAngle = endAngle + sign * offset;
 | |
|     direction = clockWise;
 | |
|   }
 | |
|   direction = deltaAngle <= 0 ? direction : !direction;
 | |
|   var startPoint = (0, _PolarUtils.polarToCartesian)(cx, cy, radius, labelAngle);
 | |
|   var endPoint = (0, _PolarUtils.polarToCartesian)(cx, cy, radius, labelAngle + (direction ? 1 : -1) * 359);
 | |
|   var path = "M".concat(startPoint.x, ",").concat(startPoint.y, "\n    A").concat(radius, ",").concat(radius, ",0,1,").concat(direction ? 0 : 1, ",\n    ").concat(endPoint.x, ",").concat(endPoint.y);
 | |
|   var id = (0, _isNil["default"])(labelProps.id) ? (0, _DataUtils.uniqueId)('recharts-radial-line-') : labelProps.id;
 | |
|   return /*#__PURE__*/_react["default"].createElement("text", _extends({}, attrs, {
 | |
|     dominantBaseline: "central",
 | |
|     className: (0, _clsx["default"])('recharts-radial-bar-label', className)
 | |
|   }), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("path", {
 | |
|     id: id,
 | |
|     d: path
 | |
|   })), /*#__PURE__*/_react["default"].createElement("textPath", {
 | |
|     xlinkHref: "#".concat(id)
 | |
|   }, label));
 | |
| };
 | |
| var getAttrsOfPolarLabel = function getAttrsOfPolarLabel(props) {
 | |
|   var viewBox = props.viewBox,
 | |
|     offset = props.offset,
 | |
|     position = props.position;
 | |
|   var _ref2 = viewBox,
 | |
|     cx = _ref2.cx,
 | |
|     cy = _ref2.cy,
 | |
|     innerRadius = _ref2.innerRadius,
 | |
|     outerRadius = _ref2.outerRadius,
 | |
|     startAngle = _ref2.startAngle,
 | |
|     endAngle = _ref2.endAngle;
 | |
|   var midAngle = (startAngle + endAngle) / 2;
 | |
|   if (position === 'outside') {
 | |
|     var _polarToCartesian = (0, _PolarUtils.polarToCartesian)(cx, cy, outerRadius + offset, midAngle),
 | |
|       _x = _polarToCartesian.x,
 | |
|       _y = _polarToCartesian.y;
 | |
|     return {
 | |
|       x: _x,
 | |
|       y: _y,
 | |
|       textAnchor: _x >= cx ? 'start' : 'end',
 | |
|       verticalAnchor: 'middle'
 | |
|     };
 | |
|   }
 | |
|   if (position === 'center') {
 | |
|     return {
 | |
|       x: cx,
 | |
|       y: cy,
 | |
|       textAnchor: 'middle',
 | |
|       verticalAnchor: 'middle'
 | |
|     };
 | |
|   }
 | |
|   if (position === 'centerTop') {
 | |
|     return {
 | |
|       x: cx,
 | |
|       y: cy,
 | |
|       textAnchor: 'middle',
 | |
|       verticalAnchor: 'start'
 | |
|     };
 | |
|   }
 | |
|   if (position === 'centerBottom') {
 | |
|     return {
 | |
|       x: cx,
 | |
|       y: cy,
 | |
|       textAnchor: 'middle',
 | |
|       verticalAnchor: 'end'
 | |
|     };
 | |
|   }
 | |
|   var r = (innerRadius + outerRadius) / 2;
 | |
|   var _polarToCartesian2 = (0, _PolarUtils.polarToCartesian)(cx, cy, r, midAngle),
 | |
|     x = _polarToCartesian2.x,
 | |
|     y = _polarToCartesian2.y;
 | |
|   return {
 | |
|     x: x,
 | |
|     y: y,
 | |
|     textAnchor: 'middle',
 | |
|     verticalAnchor: 'middle'
 | |
|   };
 | |
| };
 | |
| var getAttrsOfCartesianLabel = function getAttrsOfCartesianLabel(props) {
 | |
|   var viewBox = props.viewBox,
 | |
|     parentViewBox = props.parentViewBox,
 | |
|     offset = props.offset,
 | |
|     position = props.position;
 | |
|   var _ref3 = viewBox,
 | |
|     x = _ref3.x,
 | |
|     y = _ref3.y,
 | |
|     width = _ref3.width,
 | |
|     height = _ref3.height;
 | |
| 
 | |
|   // Define vertical offsets and position inverts based on the value being positive or negative
 | |
|   var verticalSign = height >= 0 ? 1 : -1;
 | |
|   var verticalOffset = verticalSign * offset;
 | |
|   var verticalEnd = verticalSign > 0 ? 'end' : 'start';
 | |
|   var verticalStart = verticalSign > 0 ? 'start' : 'end';
 | |
| 
 | |
|   // Define horizontal offsets and position inverts based on the value being positive or negative
 | |
|   var horizontalSign = width >= 0 ? 1 : -1;
 | |
|   var horizontalOffset = horizontalSign * offset;
 | |
|   var horizontalEnd = horizontalSign > 0 ? 'end' : 'start';
 | |
|   var horizontalStart = horizontalSign > 0 ? 'start' : 'end';
 | |
|   if (position === 'top') {
 | |
|     var attrs = {
 | |
|       x: x + width / 2,
 | |
|       y: y - verticalSign * offset,
 | |
|       textAnchor: 'middle',
 | |
|       verticalAnchor: verticalEnd
 | |
|     };
 | |
|     return _objectSpread(_objectSpread({}, attrs), parentViewBox ? {
 | |
|       height: Math.max(y - parentViewBox.y, 0),
 | |
|       width: width
 | |
|     } : {});
 | |
|   }
 | |
|   if (position === 'bottom') {
 | |
|     var _attrs = {
 | |
|       x: x + width / 2,
 | |
|       y: y + height + verticalOffset,
 | |
|       textAnchor: 'middle',
 | |
|       verticalAnchor: verticalStart
 | |
|     };
 | |
|     return _objectSpread(_objectSpread({}, _attrs), parentViewBox ? {
 | |
|       height: Math.max(parentViewBox.y + parentViewBox.height - (y + height), 0),
 | |
|       width: width
 | |
|     } : {});
 | |
|   }
 | |
|   if (position === 'left') {
 | |
|     var _attrs2 = {
 | |
|       x: x - horizontalOffset,
 | |
|       y: y + height / 2,
 | |
|       textAnchor: horizontalEnd,
 | |
|       verticalAnchor: 'middle'
 | |
|     };
 | |
|     return _objectSpread(_objectSpread({}, _attrs2), parentViewBox ? {
 | |
|       width: Math.max(_attrs2.x - parentViewBox.x, 0),
 | |
|       height: height
 | |
|     } : {});
 | |
|   }
 | |
|   if (position === 'right') {
 | |
|     var _attrs3 = {
 | |
|       x: x + width + horizontalOffset,
 | |
|       y: y + height / 2,
 | |
|       textAnchor: horizontalStart,
 | |
|       verticalAnchor: 'middle'
 | |
|     };
 | |
|     return _objectSpread(_objectSpread({}, _attrs3), parentViewBox ? {
 | |
|       width: Math.max(parentViewBox.x + parentViewBox.width - _attrs3.x, 0),
 | |
|       height: height
 | |
|     } : {});
 | |
|   }
 | |
|   var sizeAttrs = parentViewBox ? {
 | |
|     width: width,
 | |
|     height: height
 | |
|   } : {};
 | |
|   if (position === 'insideLeft') {
 | |
|     return _objectSpread({
 | |
|       x: x + horizontalOffset,
 | |
|       y: y + height / 2,
 | |
|       textAnchor: horizontalStart,
 | |
|       verticalAnchor: 'middle'
 | |
|     }, sizeAttrs);
 | |
|   }
 | |
|   if (position === 'insideRight') {
 | |
|     return _objectSpread({
 | |
|       x: x + width - horizontalOffset,
 | |
|       y: y + height / 2,
 | |
|       textAnchor: horizontalEnd,
 | |
|       verticalAnchor: 'middle'
 | |
|     }, sizeAttrs);
 | |
|   }
 | |
|   if (position === 'insideTop') {
 | |
|     return _objectSpread({
 | |
|       x: x + width / 2,
 | |
|       y: y + verticalOffset,
 | |
|       textAnchor: 'middle',
 | |
|       verticalAnchor: verticalStart
 | |
|     }, sizeAttrs);
 | |
|   }
 | |
|   if (position === 'insideBottom') {
 | |
|     return _objectSpread({
 | |
|       x: x + width / 2,
 | |
|       y: y + height - verticalOffset,
 | |
|       textAnchor: 'middle',
 | |
|       verticalAnchor: verticalEnd
 | |
|     }, sizeAttrs);
 | |
|   }
 | |
|   if (position === 'insideTopLeft') {
 | |
|     return _objectSpread({
 | |
|       x: x + horizontalOffset,
 | |
|       y: y + verticalOffset,
 | |
|       textAnchor: horizontalStart,
 | |
|       verticalAnchor: verticalStart
 | |
|     }, sizeAttrs);
 | |
|   }
 | |
|   if (position === 'insideTopRight') {
 | |
|     return _objectSpread({
 | |
|       x: x + width - horizontalOffset,
 | |
|       y: y + verticalOffset,
 | |
|       textAnchor: horizontalEnd,
 | |
|       verticalAnchor: verticalStart
 | |
|     }, sizeAttrs);
 | |
|   }
 | |
|   if (position === 'insideBottomLeft') {
 | |
|     return _objectSpread({
 | |
|       x: x + horizontalOffset,
 | |
|       y: y + height - verticalOffset,
 | |
|       textAnchor: horizontalStart,
 | |
|       verticalAnchor: verticalEnd
 | |
|     }, sizeAttrs);
 | |
|   }
 | |
|   if (position === 'insideBottomRight') {
 | |
|     return _objectSpread({
 | |
|       x: x + width - horizontalOffset,
 | |
|       y: y + height - verticalOffset,
 | |
|       textAnchor: horizontalEnd,
 | |
|       verticalAnchor: verticalEnd
 | |
|     }, sizeAttrs);
 | |
|   }
 | |
|   if ((0, _isObject["default"])(position) && ((0, _DataUtils.isNumber)(position.x) || (0, _DataUtils.isPercent)(position.x)) && ((0, _DataUtils.isNumber)(position.y) || (0, _DataUtils.isPercent)(position.y))) {
 | |
|     return _objectSpread({
 | |
|       x: x + (0, _DataUtils.getPercentValue)(position.x, width),
 | |
|       y: y + (0, _DataUtils.getPercentValue)(position.y, height),
 | |
|       textAnchor: 'end',
 | |
|       verticalAnchor: 'end'
 | |
|     }, sizeAttrs);
 | |
|   }
 | |
|   return _objectSpread({
 | |
|     x: x + width / 2,
 | |
|     y: y + height / 2,
 | |
|     textAnchor: 'middle',
 | |
|     verticalAnchor: 'middle'
 | |
|   }, sizeAttrs);
 | |
| };
 | |
| var isPolar = function isPolar(viewBox) {
 | |
|   return 'cx' in viewBox && (0, _DataUtils.isNumber)(viewBox.cx);
 | |
| };
 | |
| function Label(_ref4) {
 | |
|   var _ref4$offset = _ref4.offset,
 | |
|     offset = _ref4$offset === void 0 ? 5 : _ref4$offset,
 | |
|     restProps = _objectWithoutProperties(_ref4, _excluded);
 | |
|   var props = _objectSpread({
 | |
|     offset: offset
 | |
|   }, restProps);
 | |
|   var viewBox = props.viewBox,
 | |
|     position = props.position,
 | |
|     value = props.value,
 | |
|     children = props.children,
 | |
|     content = props.content,
 | |
|     _props$className = props.className,
 | |
|     className = _props$className === void 0 ? '' : _props$className,
 | |
|     textBreakAll = props.textBreakAll;
 | |
|   if (!viewBox || (0, _isNil["default"])(value) && (0, _isNil["default"])(children) && ! /*#__PURE__*/(0, _react.isValidElement)(content) && !(0, _isFunction["default"])(content)) {
 | |
|     return null;
 | |
|   }
 | |
|   if ( /*#__PURE__*/(0, _react.isValidElement)(content)) {
 | |
|     return /*#__PURE__*/(0, _react.cloneElement)(content, props);
 | |
|   }
 | |
|   var label;
 | |
|   if ((0, _isFunction["default"])(content)) {
 | |
|     label = /*#__PURE__*/(0, _react.createElement)(content, props);
 | |
|     if ( /*#__PURE__*/(0, _react.isValidElement)(label)) {
 | |
|       return label;
 | |
|     }
 | |
|   } else {
 | |
|     label = getLabel(props);
 | |
|   }
 | |
|   var isPolarLabel = isPolar(viewBox);
 | |
|   var attrs = (0, _ReactUtils.filterProps)(props, true);
 | |
|   if (isPolarLabel && (position === 'insideStart' || position === 'insideEnd' || position === 'end')) {
 | |
|     return renderRadialLabel(props, label, attrs);
 | |
|   }
 | |
|   var positionAttrs = isPolarLabel ? getAttrsOfPolarLabel(props) : getAttrsOfCartesianLabel(props);
 | |
|   return /*#__PURE__*/_react["default"].createElement(_Text.Text, _extends({
 | |
|     className: (0, _clsx["default"])('recharts-label', className)
 | |
|   }, attrs, positionAttrs, {
 | |
|     breakAll: textBreakAll
 | |
|   }), label);
 | |
| }
 | |
| Label.displayName = 'Label';
 | |
| var parseViewBox = function parseViewBox(props) {
 | |
|   var cx = props.cx,
 | |
|     cy = props.cy,
 | |
|     angle = props.angle,
 | |
|     startAngle = props.startAngle,
 | |
|     endAngle = props.endAngle,
 | |
|     r = props.r,
 | |
|     radius = props.radius,
 | |
|     innerRadius = props.innerRadius,
 | |
|     outerRadius = props.outerRadius,
 | |
|     x = props.x,
 | |
|     y = props.y,
 | |
|     top = props.top,
 | |
|     left = props.left,
 | |
|     width = props.width,
 | |
|     height = props.height,
 | |
|     clockWise = props.clockWise,
 | |
|     labelViewBox = props.labelViewBox;
 | |
|   if (labelViewBox) {
 | |
|     return labelViewBox;
 | |
|   }
 | |
|   if ((0, _DataUtils.isNumber)(width) && (0, _DataUtils.isNumber)(height)) {
 | |
|     if ((0, _DataUtils.isNumber)(x) && (0, _DataUtils.isNumber)(y)) {
 | |
|       return {
 | |
|         x: x,
 | |
|         y: y,
 | |
|         width: width,
 | |
|         height: height
 | |
|       };
 | |
|     }
 | |
|     if ((0, _DataUtils.isNumber)(top) && (0, _DataUtils.isNumber)(left)) {
 | |
|       return {
 | |
|         x: top,
 | |
|         y: left,
 | |
|         width: width,
 | |
|         height: height
 | |
|       };
 | |
|     }
 | |
|   }
 | |
|   if ((0, _DataUtils.isNumber)(x) && (0, _DataUtils.isNumber)(y)) {
 | |
|     return {
 | |
|       x: x,
 | |
|       y: y,
 | |
|       width: 0,
 | |
|       height: 0
 | |
|     };
 | |
|   }
 | |
|   if ((0, _DataUtils.isNumber)(cx) && (0, _DataUtils.isNumber)(cy)) {
 | |
|     return {
 | |
|       cx: cx,
 | |
|       cy: cy,
 | |
|       startAngle: startAngle || angle || 0,
 | |
|       endAngle: endAngle || angle || 0,
 | |
|       innerRadius: innerRadius || 0,
 | |
|       outerRadius: outerRadius || radius || r || 0,
 | |
|       clockWise: clockWise
 | |
|     };
 | |
|   }
 | |
|   if (props.viewBox) {
 | |
|     return props.viewBox;
 | |
|   }
 | |
|   return {};
 | |
| };
 | |
| var parseLabel = function parseLabel(label, viewBox) {
 | |
|   if (!label) {
 | |
|     return null;
 | |
|   }
 | |
|   if (label === true) {
 | |
|     return /*#__PURE__*/_react["default"].createElement(Label, {
 | |
|       key: "label-implicit",
 | |
|       viewBox: viewBox
 | |
|     });
 | |
|   }
 | |
|   if ((0, _DataUtils.isNumOrStr)(label)) {
 | |
|     return /*#__PURE__*/_react["default"].createElement(Label, {
 | |
|       key: "label-implicit",
 | |
|       viewBox: viewBox,
 | |
|       value: label
 | |
|     });
 | |
|   }
 | |
|   if ( /*#__PURE__*/(0, _react.isValidElement)(label)) {
 | |
|     if (label.type === Label) {
 | |
|       return /*#__PURE__*/(0, _react.cloneElement)(label, {
 | |
|         key: 'label-implicit',
 | |
|         viewBox: viewBox
 | |
|       });
 | |
|     }
 | |
|     return /*#__PURE__*/_react["default"].createElement(Label, {
 | |
|       key: "label-implicit",
 | |
|       content: label,
 | |
|       viewBox: viewBox
 | |
|     });
 | |
|   }
 | |
|   if ((0, _isFunction["default"])(label)) {
 | |
|     return /*#__PURE__*/_react["default"].createElement(Label, {
 | |
|       key: "label-implicit",
 | |
|       content: label,
 | |
|       viewBox: viewBox
 | |
|     });
 | |
|   }
 | |
|   if ((0, _isObject["default"])(label)) {
 | |
|     return /*#__PURE__*/_react["default"].createElement(Label, _extends({
 | |
|       viewBox: viewBox
 | |
|     }, label, {
 | |
|       key: "label-implicit"
 | |
|     }));
 | |
|   }
 | |
|   return null;
 | |
| };
 | |
| var renderCallByParent = function renderCallByParent(parentProps, viewBox) {
 | |
|   var checkPropsLabel = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
 | |
|   if (!parentProps || !parentProps.children && checkPropsLabel && !parentProps.label) {
 | |
|     return null;
 | |
|   }
 | |
|   var children = parentProps.children;
 | |
|   var parentViewBox = parseViewBox(parentProps);
 | |
|   var explicitChildren = (0, _ReactUtils.findAllByType)(children, Label).map(function (child, index) {
 | |
|     return /*#__PURE__*/(0, _react.cloneElement)(child, {
 | |
|       viewBox: viewBox || parentViewBox,
 | |
|       // eslint-disable-next-line react/no-array-index-key
 | |
|       key: "label-".concat(index)
 | |
|     });
 | |
|   });
 | |
|   if (!checkPropsLabel) {
 | |
|     return explicitChildren;
 | |
|   }
 | |
|   var implicitLabel = parseLabel(parentProps.label, viewBox || parentViewBox);
 | |
|   return [implicitLabel].concat(_toConsumableArray(explicitChildren));
 | |
| };
 | |
| Label.parseViewBox = parseViewBox;
 | |
| Label.renderCallByParent = renderCallByParent; |