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>
200 lines
12 KiB
JavaScript
200 lines
12 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.getEndPoints = exports.ReferenceLine = void 0;
|
|
var _react = _interopRequireDefault(require("react"));
|
|
var _isFunction = _interopRequireDefault(require("lodash/isFunction"));
|
|
var _some = _interopRequireDefault(require("lodash/some"));
|
|
var _clsx = _interopRequireDefault(require("clsx"));
|
|
var _Layer = require("../container/Layer");
|
|
var _Label = require("../component/Label");
|
|
var _IfOverflowMatches = require("../util/IfOverflowMatches");
|
|
var _DataUtils = require("../util/DataUtils");
|
|
var _CartesianUtils = require("../util/CartesianUtils");
|
|
var _LogUtils = require("../util/LogUtils");
|
|
var _ReactUtils = require("../util/ReactUtils");
|
|
var _chartLayoutContext = require("../context/chartLayoutContext");
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
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 _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure 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 _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 _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
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); } /**
|
|
* @fileOverview Reference Line
|
|
*/
|
|
/**
|
|
* This excludes `viewBox` prop from svg for two reasons:
|
|
* 1. The components wants viewBox of object type, and svg wants string
|
|
* - so there's a conflict, and the component will throw if it gets string
|
|
* 2. Internally the component calls `filterProps` which filters the viewBox away anyway
|
|
*/
|
|
|
|
var renderLine = function renderLine(option, props) {
|
|
var line;
|
|
if ( /*#__PURE__*/_react["default"].isValidElement(option)) {
|
|
line = /*#__PURE__*/_react["default"].cloneElement(option, props);
|
|
} else if ((0, _isFunction["default"])(option)) {
|
|
line = option(props);
|
|
} else {
|
|
line = /*#__PURE__*/_react["default"].createElement("line", _extends({}, props, {
|
|
className: "recharts-reference-line-line"
|
|
}));
|
|
}
|
|
return line;
|
|
};
|
|
// TODO: ScaleHelper
|
|
var getEndPoints = exports.getEndPoints = function getEndPoints(scales, isFixedX, isFixedY, isSegment, viewBox, position, xAxisOrientation, yAxisOrientation, props) {
|
|
var x = viewBox.x,
|
|
y = viewBox.y,
|
|
width = viewBox.width,
|
|
height = viewBox.height;
|
|
if (isFixedY) {
|
|
var yCoord = props.y;
|
|
var coord = scales.y.apply(yCoord, {
|
|
position: position
|
|
});
|
|
if ((0, _IfOverflowMatches.ifOverflowMatches)(props, 'discard') && !scales.y.isInRange(coord)) {
|
|
return null;
|
|
}
|
|
var points = [{
|
|
x: x + width,
|
|
y: coord
|
|
}, {
|
|
x: x,
|
|
y: coord
|
|
}];
|
|
return yAxisOrientation === 'left' ? points.reverse() : points;
|
|
}
|
|
if (isFixedX) {
|
|
var xCoord = props.x;
|
|
var _coord = scales.x.apply(xCoord, {
|
|
position: position
|
|
});
|
|
if ((0, _IfOverflowMatches.ifOverflowMatches)(props, 'discard') && !scales.x.isInRange(_coord)) {
|
|
return null;
|
|
}
|
|
var _points = [{
|
|
x: _coord,
|
|
y: y + height
|
|
}, {
|
|
x: _coord,
|
|
y: y
|
|
}];
|
|
return xAxisOrientation === 'top' ? _points.reverse() : _points;
|
|
}
|
|
if (isSegment) {
|
|
var segment = props.segment;
|
|
var _points2 = segment.map(function (p) {
|
|
return scales.apply(p, {
|
|
position: position
|
|
});
|
|
});
|
|
if ((0, _IfOverflowMatches.ifOverflowMatches)(props, 'discard') && (0, _some["default"])(_points2, function (p) {
|
|
return !scales.isInRange(p);
|
|
})) {
|
|
return null;
|
|
}
|
|
return _points2;
|
|
}
|
|
return null;
|
|
};
|
|
function ReferenceLineImpl(props) {
|
|
var fixedX = props.x,
|
|
fixedY = props.y,
|
|
segment = props.segment,
|
|
xAxisId = props.xAxisId,
|
|
yAxisId = props.yAxisId,
|
|
shape = props.shape,
|
|
className = props.className,
|
|
alwaysShow = props.alwaysShow;
|
|
var clipPathId = (0, _chartLayoutContext.useClipPathId)();
|
|
var xAxis = (0, _chartLayoutContext.useXAxisOrThrow)(xAxisId);
|
|
var yAxis = (0, _chartLayoutContext.useYAxisOrThrow)(yAxisId);
|
|
var viewBox = (0, _chartLayoutContext.useViewBox)();
|
|
if (!clipPathId || !viewBox) {
|
|
return null;
|
|
}
|
|
(0, _LogUtils.warn)(alwaysShow === undefined, 'The alwaysShow prop is deprecated. Please use ifOverflow="extendDomain" instead.');
|
|
var scales = (0, _CartesianUtils.createLabeledScales)({
|
|
x: xAxis.scale,
|
|
y: yAxis.scale
|
|
});
|
|
var isX = (0, _DataUtils.isNumOrStr)(fixedX);
|
|
var isY = (0, _DataUtils.isNumOrStr)(fixedY);
|
|
var isSegment = segment && segment.length === 2;
|
|
var endPoints = getEndPoints(scales, isX, isY, isSegment, viewBox, props.position, xAxis.orientation, yAxis.orientation, props);
|
|
if (!endPoints) {
|
|
return null;
|
|
}
|
|
var _endPoints = _slicedToArray(endPoints, 2),
|
|
_endPoints$ = _endPoints[0],
|
|
x1 = _endPoints$.x,
|
|
y1 = _endPoints$.y,
|
|
_endPoints$2 = _endPoints[1],
|
|
x2 = _endPoints$2.x,
|
|
y2 = _endPoints$2.y;
|
|
var clipPath = (0, _IfOverflowMatches.ifOverflowMatches)(props, 'hidden') ? "url(#".concat(clipPathId, ")") : undefined;
|
|
var lineProps = _objectSpread(_objectSpread({
|
|
clipPath: clipPath
|
|
}, (0, _ReactUtils.filterProps)(props, true)), {}, {
|
|
x1: x1,
|
|
y1: y1,
|
|
x2: x2,
|
|
y2: y2
|
|
});
|
|
return /*#__PURE__*/_react["default"].createElement(_Layer.Layer, {
|
|
className: (0, _clsx["default"])('recharts-reference-line', className)
|
|
}, renderLine(shape, lineProps), _Label.Label.renderCallByParent(props, (0, _CartesianUtils.rectWithCoords)({
|
|
x1: x1,
|
|
y1: y1,
|
|
x2: x2,
|
|
y2: y2
|
|
})));
|
|
}
|
|
|
|
// eslint-disable-next-line react/prefer-stateless-function -- requires static defaultProps
|
|
var ReferenceLine = exports.ReferenceLine = /*#__PURE__*/function (_React$Component) {
|
|
function ReferenceLine() {
|
|
_classCallCheck(this, ReferenceLine);
|
|
return _callSuper(this, ReferenceLine, arguments);
|
|
}
|
|
_inherits(ReferenceLine, _React$Component);
|
|
return _createClass(ReferenceLine, [{
|
|
key: "render",
|
|
value: function render() {
|
|
return /*#__PURE__*/_react["default"].createElement(ReferenceLineImpl, this.props);
|
|
}
|
|
}]);
|
|
}(_react["default"].Component);
|
|
_defineProperty(ReferenceLine, "displayName", 'ReferenceLine');
|
|
_defineProperty(ReferenceLine, "defaultProps", {
|
|
isFront: false,
|
|
ifOverflow: 'discard',
|
|
xAxisId: 0,
|
|
yAxisId: 0,
|
|
fill: 'none',
|
|
stroke: '#ccc',
|
|
fillOpacity: 1,
|
|
strokeWidth: 1,
|
|
position: 'middle'
|
|
}); |