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>
57 lines
3.5 KiB
JavaScript
57 lines
3.5 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.detectReferenceElementsDomain = void 0;
|
|
var _ReferenceDot = require("../cartesian/ReferenceDot");
|
|
var _ReferenceLine = require("../cartesian/ReferenceLine");
|
|
var _ReferenceArea = require("../cartesian/ReferenceArea");
|
|
var _IfOverflowMatches = require("./IfOverflowMatches");
|
|
var _ReactUtils = require("./ReactUtils");
|
|
var _DataUtils = require("./DataUtils");
|
|
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; }
|
|
var detectReferenceElementsDomain = exports.detectReferenceElementsDomain = function detectReferenceElementsDomain(children, domain, axisId, axisType, specifiedTicks) {
|
|
var lines = (0, _ReactUtils.findAllByType)(children, _ReferenceLine.ReferenceLine);
|
|
var dots = (0, _ReactUtils.findAllByType)(children, _ReferenceDot.ReferenceDot);
|
|
var elements = [].concat(_toConsumableArray(lines), _toConsumableArray(dots));
|
|
var areas = (0, _ReactUtils.findAllByType)(children, _ReferenceArea.ReferenceArea);
|
|
var idKey = "".concat(axisType, "Id");
|
|
var valueKey = axisType[0];
|
|
var finalDomain = domain;
|
|
if (elements.length) {
|
|
finalDomain = elements.reduce(function (result, el) {
|
|
if (el.props[idKey] === axisId && (0, _IfOverflowMatches.ifOverflowMatches)(el.props, 'extendDomain') && (0, _DataUtils.isNumber)(el.props[valueKey])) {
|
|
var value = el.props[valueKey];
|
|
return [Math.min(result[0], value), Math.max(result[1], value)];
|
|
}
|
|
return result;
|
|
}, finalDomain);
|
|
}
|
|
if (areas.length) {
|
|
var key1 = "".concat(valueKey, "1");
|
|
var key2 = "".concat(valueKey, "2");
|
|
finalDomain = areas.reduce(function (result, el) {
|
|
if (el.props[idKey] === axisId && (0, _IfOverflowMatches.ifOverflowMatches)(el.props, 'extendDomain') && (0, _DataUtils.isNumber)(el.props[key1]) && (0, _DataUtils.isNumber)(el.props[key2])) {
|
|
var value1 = el.props[key1];
|
|
var value2 = el.props[key2];
|
|
return [Math.min(result[0], value1, value2), Math.max(result[1], value1, value2)];
|
|
}
|
|
return result;
|
|
}, finalDomain);
|
|
}
|
|
if (specifiedTicks && specifiedTicks.length) {
|
|
finalDomain = specifiedTicks.reduce(function (result, tick) {
|
|
if ((0, _DataUtils.isNumber)(tick)) {
|
|
return [Math.min(result[0], tick), Math.max(result[1], tick)];
|
|
}
|
|
return result;
|
|
}, finalDomain);
|
|
}
|
|
return finalDomain;
|
|
}; |