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>
674 lines
27 KiB
JavaScript
674 lines
27 KiB
JavaScript
var _excluded = ["width", "height", "className", "style", "children", "type"];
|
|
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); }
|
|
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); }
|
|
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 _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); }
|
|
import isNan from 'lodash/isNaN';
|
|
import isFunction from 'lodash/isFunction';
|
|
import omit from 'lodash/omit';
|
|
import get from 'lodash/get';
|
|
import clsx from 'clsx';
|
|
/**
|
|
* @fileOverview TreemapChart
|
|
*/
|
|
import React, { PureComponent } from 'react';
|
|
import Smooth from 'react-smooth';
|
|
import { Tooltip } from '../component/Tooltip';
|
|
import { Layer } from '../container/Layer';
|
|
import { Surface } from '../container/Surface';
|
|
import { Polygon } from '../shape/Polygon';
|
|
import { Rectangle } from '../shape/Rectangle';
|
|
import { getValueByDataKey } from '../util/ChartUtils';
|
|
import { COLOR_PANEL } from '../util/Constants';
|
|
import { uniqueId } from '../util/DataUtils';
|
|
import { getStringSize } from '../util/DOMUtils';
|
|
import { Global } from '../util/Global';
|
|
import { filterSvgElements, findChildByType, validateWidthHeight, filterProps } from '../util/ReactUtils';
|
|
var NODE_VALUE_KEY = 'value';
|
|
var computeNode = function computeNode(_ref) {
|
|
var depth = _ref.depth,
|
|
node = _ref.node,
|
|
index = _ref.index,
|
|
valueKey = _ref.valueKey;
|
|
var children = node.children;
|
|
var childDepth = depth + 1;
|
|
var computedChildren = children && children.length ? children.map(function (child, i) {
|
|
return computeNode({
|
|
depth: childDepth,
|
|
node: child,
|
|
index: i,
|
|
valueKey: valueKey
|
|
});
|
|
}) : null;
|
|
var nodeValue;
|
|
if (children && children.length) {
|
|
nodeValue = computedChildren.reduce(function (result, child) {
|
|
return result + child[NODE_VALUE_KEY];
|
|
}, 0);
|
|
} else {
|
|
// TODO need to verify valueKey
|
|
nodeValue = isNan(node[valueKey]) || node[valueKey] <= 0 ? 0 : node[valueKey];
|
|
}
|
|
return _objectSpread(_objectSpread({}, node), {}, _defineProperty(_defineProperty(_defineProperty({
|
|
children: computedChildren
|
|
}, NODE_VALUE_KEY, nodeValue), "depth", depth), "index", index));
|
|
};
|
|
var filterRect = function filterRect(node) {
|
|
return {
|
|
x: node.x,
|
|
y: node.y,
|
|
width: node.width,
|
|
height: node.height
|
|
};
|
|
};
|
|
|
|
// Compute the area for each child based on value & scale.
|
|
var getAreaOfChildren = function getAreaOfChildren(children, areaValueRatio) {
|
|
var ratio = areaValueRatio < 0 ? 0 : areaValueRatio;
|
|
return children.map(function (child) {
|
|
var area = child[NODE_VALUE_KEY] * ratio;
|
|
return _objectSpread(_objectSpread({}, child), {}, {
|
|
area: isNan(area) || area <= 0 ? 0 : area
|
|
});
|
|
});
|
|
};
|
|
|
|
// Computes the score for the specified row, as the worst aspect ratio.
|
|
var getWorstScore = function getWorstScore(row, parentSize, aspectRatio) {
|
|
var parentArea = parentSize * parentSize;
|
|
var rowArea = row.area * row.area;
|
|
var _row$reduce = row.reduce(function (result, child) {
|
|
return {
|
|
min: Math.min(result.min, child.area),
|
|
max: Math.max(result.max, child.area)
|
|
};
|
|
}, {
|
|
min: Infinity,
|
|
max: 0
|
|
}),
|
|
min = _row$reduce.min,
|
|
max = _row$reduce.max;
|
|
return rowArea ? Math.max(parentArea * max * aspectRatio / rowArea, rowArea / (parentArea * min * aspectRatio)) : Infinity;
|
|
};
|
|
var horizontalPosition = function horizontalPosition(row, parentSize, parentRect, isFlush) {
|
|
var rowHeight = parentSize ? Math.round(row.area / parentSize) : 0;
|
|
if (isFlush || rowHeight > parentRect.height) {
|
|
rowHeight = parentRect.height;
|
|
}
|
|
var curX = parentRect.x;
|
|
var child;
|
|
for (var i = 0, len = row.length; i < len; i++) {
|
|
child = row[i];
|
|
child.x = curX;
|
|
child.y = parentRect.y;
|
|
child.height = rowHeight;
|
|
child.width = Math.min(rowHeight ? Math.round(child.area / rowHeight) : 0, parentRect.x + parentRect.width - curX);
|
|
curX += child.width;
|
|
}
|
|
// add the remain x to the last one of row
|
|
child.width += parentRect.x + parentRect.width - curX;
|
|
return _objectSpread(_objectSpread({}, parentRect), {}, {
|
|
y: parentRect.y + rowHeight,
|
|
height: parentRect.height - rowHeight
|
|
});
|
|
};
|
|
var verticalPosition = function verticalPosition(row, parentSize, parentRect, isFlush) {
|
|
var rowWidth = parentSize ? Math.round(row.area / parentSize) : 0;
|
|
if (isFlush || rowWidth > parentRect.width) {
|
|
rowWidth = parentRect.width;
|
|
}
|
|
var curY = parentRect.y;
|
|
var child;
|
|
for (var i = 0, len = row.length; i < len; i++) {
|
|
child = row[i];
|
|
child.x = parentRect.x;
|
|
child.y = curY;
|
|
child.width = rowWidth;
|
|
child.height = Math.min(rowWidth ? Math.round(child.area / rowWidth) : 0, parentRect.y + parentRect.height - curY);
|
|
curY += child.height;
|
|
}
|
|
if (child) {
|
|
child.height += parentRect.y + parentRect.height - curY;
|
|
}
|
|
return _objectSpread(_objectSpread({}, parentRect), {}, {
|
|
x: parentRect.x + rowWidth,
|
|
width: parentRect.width - rowWidth
|
|
});
|
|
};
|
|
var position = function position(row, parentSize, parentRect, isFlush) {
|
|
if (parentSize === parentRect.width) {
|
|
return horizontalPosition(row, parentSize, parentRect, isFlush);
|
|
}
|
|
return verticalPosition(row, parentSize, parentRect, isFlush);
|
|
};
|
|
|
|
// Recursively arranges the specified node's children into squarified rows.
|
|
var squarify = function squarify(node, aspectRatio) {
|
|
var children = node.children;
|
|
if (children && children.length) {
|
|
var rect = filterRect(node);
|
|
// maybe a bug
|
|
var row = [];
|
|
var best = Infinity; // the best row score so far
|
|
var child, score; // the current row score
|
|
var size = Math.min(rect.width, rect.height); // initial orientation
|
|
var scaleChildren = getAreaOfChildren(children, rect.width * rect.height / node[NODE_VALUE_KEY]);
|
|
var tempChildren = scaleChildren.slice();
|
|
row.area = 0;
|
|
while (tempChildren.length > 0) {
|
|
// row first
|
|
// eslint-disable-next-line prefer-destructuring
|
|
row.push(child = tempChildren[0]);
|
|
row.area += child.area;
|
|
score = getWorstScore(row, size, aspectRatio);
|
|
if (score <= best) {
|
|
// continue with this orientation
|
|
tempChildren.shift();
|
|
best = score;
|
|
} else {
|
|
// abort, and try a different orientation
|
|
row.area -= row.pop().area;
|
|
rect = position(row, size, rect, false);
|
|
size = Math.min(rect.width, rect.height);
|
|
row.length = row.area = 0;
|
|
best = Infinity;
|
|
}
|
|
}
|
|
if (row.length) {
|
|
rect = position(row, size, rect, true);
|
|
row.length = row.area = 0;
|
|
}
|
|
return _objectSpread(_objectSpread({}, node), {}, {
|
|
children: scaleChildren.map(function (c) {
|
|
return squarify(c, aspectRatio);
|
|
})
|
|
});
|
|
}
|
|
return node;
|
|
};
|
|
var defaultState = {
|
|
isTooltipActive: false,
|
|
isAnimationFinished: false,
|
|
activeNode: null,
|
|
formatRoot: null,
|
|
currentRoot: null,
|
|
nestIndex: []
|
|
};
|
|
export var Treemap = /*#__PURE__*/function (_PureComponent) {
|
|
function Treemap() {
|
|
var _this;
|
|
_classCallCheck(this, Treemap);
|
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
args[_key] = arguments[_key];
|
|
}
|
|
_this = _callSuper(this, Treemap, [].concat(args));
|
|
_defineProperty(_this, "state", _objectSpread({}, defaultState));
|
|
_defineProperty(_this, "handleAnimationEnd", function () {
|
|
var onAnimationEnd = _this.props.onAnimationEnd;
|
|
_this.setState({
|
|
isAnimationFinished: true
|
|
});
|
|
if (isFunction(onAnimationEnd)) {
|
|
onAnimationEnd();
|
|
}
|
|
});
|
|
_defineProperty(_this, "handleAnimationStart", function () {
|
|
var onAnimationStart = _this.props.onAnimationStart;
|
|
_this.setState({
|
|
isAnimationFinished: false
|
|
});
|
|
if (isFunction(onAnimationStart)) {
|
|
onAnimationStart();
|
|
}
|
|
});
|
|
return _this;
|
|
}
|
|
_inherits(Treemap, _PureComponent);
|
|
return _createClass(Treemap, [{
|
|
key: "handleMouseEnter",
|
|
value: function handleMouseEnter(node, e) {
|
|
e.persist();
|
|
var _this$props = this.props,
|
|
onMouseEnter = _this$props.onMouseEnter,
|
|
children = _this$props.children;
|
|
var tooltipItem = findChildByType(children, Tooltip);
|
|
if (tooltipItem) {
|
|
this.setState({
|
|
isTooltipActive: true,
|
|
activeNode: node
|
|
}, function () {
|
|
if (onMouseEnter) {
|
|
onMouseEnter(node, e);
|
|
}
|
|
});
|
|
} else if (onMouseEnter) {
|
|
onMouseEnter(node, e);
|
|
}
|
|
}
|
|
}, {
|
|
key: "handleMouseLeave",
|
|
value: function handleMouseLeave(node, e) {
|
|
e.persist();
|
|
var _this$props2 = this.props,
|
|
onMouseLeave = _this$props2.onMouseLeave,
|
|
children = _this$props2.children;
|
|
var tooltipItem = findChildByType(children, Tooltip);
|
|
if (tooltipItem) {
|
|
this.setState({
|
|
isTooltipActive: false,
|
|
activeNode: null
|
|
}, function () {
|
|
if (onMouseLeave) {
|
|
onMouseLeave(node, e);
|
|
}
|
|
});
|
|
} else if (onMouseLeave) {
|
|
onMouseLeave(node, e);
|
|
}
|
|
}
|
|
}, {
|
|
key: "handleClick",
|
|
value: function handleClick(node) {
|
|
var _this$props3 = this.props,
|
|
onClick = _this$props3.onClick,
|
|
type = _this$props3.type;
|
|
if (type === 'nest' && node.children) {
|
|
var _this$props4 = this.props,
|
|
width = _this$props4.width,
|
|
height = _this$props4.height,
|
|
dataKey = _this$props4.dataKey,
|
|
aspectRatio = _this$props4.aspectRatio;
|
|
var root = computeNode({
|
|
depth: 0,
|
|
node: _objectSpread(_objectSpread({}, node), {}, {
|
|
x: 0,
|
|
y: 0,
|
|
width: width,
|
|
height: height
|
|
}),
|
|
index: 0,
|
|
valueKey: dataKey
|
|
});
|
|
var formatRoot = squarify(root, aspectRatio);
|
|
var nestIndex = this.state.nestIndex;
|
|
nestIndex.push(node);
|
|
this.setState({
|
|
formatRoot: formatRoot,
|
|
currentRoot: root,
|
|
nestIndex: nestIndex
|
|
});
|
|
}
|
|
if (onClick) {
|
|
onClick(node);
|
|
}
|
|
}
|
|
}, {
|
|
key: "handleNestIndex",
|
|
value: function handleNestIndex(node, i) {
|
|
var nestIndex = this.state.nestIndex;
|
|
var _this$props5 = this.props,
|
|
width = _this$props5.width,
|
|
height = _this$props5.height,
|
|
dataKey = _this$props5.dataKey,
|
|
aspectRatio = _this$props5.aspectRatio;
|
|
var root = computeNode({
|
|
depth: 0,
|
|
node: _objectSpread(_objectSpread({}, node), {}, {
|
|
x: 0,
|
|
y: 0,
|
|
width: width,
|
|
height: height
|
|
}),
|
|
index: 0,
|
|
valueKey: dataKey
|
|
});
|
|
var formatRoot = squarify(root, aspectRatio);
|
|
nestIndex = nestIndex.slice(0, i + 1);
|
|
this.setState({
|
|
formatRoot: formatRoot,
|
|
currentRoot: node,
|
|
nestIndex: nestIndex
|
|
});
|
|
}
|
|
}, {
|
|
key: "renderItem",
|
|
value: function renderItem(content, nodeProps, isLeaf) {
|
|
var _this2 = this;
|
|
var _this$props6 = this.props,
|
|
isAnimationActive = _this$props6.isAnimationActive,
|
|
animationBegin = _this$props6.animationBegin,
|
|
animationDuration = _this$props6.animationDuration,
|
|
animationEasing = _this$props6.animationEasing,
|
|
isUpdateAnimationActive = _this$props6.isUpdateAnimationActive,
|
|
type = _this$props6.type,
|
|
animationId = _this$props6.animationId,
|
|
colorPanel = _this$props6.colorPanel;
|
|
var isAnimationFinished = this.state.isAnimationFinished;
|
|
var width = nodeProps.width,
|
|
height = nodeProps.height,
|
|
x = nodeProps.x,
|
|
y = nodeProps.y,
|
|
depth = nodeProps.depth;
|
|
var translateX = parseInt("".concat((Math.random() * 2 - 1) * width), 10);
|
|
var event = {};
|
|
if (isLeaf || type === 'nest') {
|
|
event = {
|
|
onMouseEnter: this.handleMouseEnter.bind(this, nodeProps),
|
|
onMouseLeave: this.handleMouseLeave.bind(this, nodeProps),
|
|
onClick: this.handleClick.bind(this, nodeProps)
|
|
};
|
|
}
|
|
if (!isAnimationActive) {
|
|
return /*#__PURE__*/React.createElement(Layer, event, this.constructor.renderContentItem(content, _objectSpread(_objectSpread({}, nodeProps), {}, {
|
|
isAnimationActive: false,
|
|
isUpdateAnimationActive: false,
|
|
width: width,
|
|
height: height,
|
|
x: x,
|
|
y: y
|
|
}), type, colorPanel));
|
|
}
|
|
return /*#__PURE__*/React.createElement(Smooth, {
|
|
begin: animationBegin,
|
|
duration: animationDuration,
|
|
isActive: isAnimationActive,
|
|
easing: animationEasing,
|
|
key: "treemap-".concat(animationId),
|
|
from: {
|
|
x: x,
|
|
y: y,
|
|
width: width,
|
|
height: height
|
|
},
|
|
to: {
|
|
x: x,
|
|
y: y,
|
|
width: width,
|
|
height: height
|
|
},
|
|
onAnimationStart: this.handleAnimationStart,
|
|
onAnimationEnd: this.handleAnimationEnd
|
|
}, function (_ref2) {
|
|
var currX = _ref2.x,
|
|
currY = _ref2.y,
|
|
currWidth = _ref2.width,
|
|
currHeight = _ref2.height;
|
|
return /*#__PURE__*/React.createElement(Smooth, {
|
|
from: "translate(".concat(translateX, "px, ").concat(translateX, "px)"),
|
|
to: "translate(0, 0)",
|
|
attributeName: "transform",
|
|
begin: animationBegin,
|
|
easing: animationEasing,
|
|
isActive: isAnimationActive,
|
|
duration: animationDuration
|
|
}, /*#__PURE__*/React.createElement(Layer, event, function () {
|
|
// when animation Duration , only render depth=1 nodes
|
|
if (depth > 2 && !isAnimationFinished) {
|
|
return null;
|
|
}
|
|
return _this2.constructor.renderContentItem(content, _objectSpread(_objectSpread({}, nodeProps), {}, {
|
|
isAnimationActive: isAnimationActive,
|
|
isUpdateAnimationActive: !isUpdateAnimationActive,
|
|
width: currWidth,
|
|
height: currHeight,
|
|
x: currX,
|
|
y: currY
|
|
}), type, colorPanel);
|
|
}()));
|
|
});
|
|
}
|
|
}, {
|
|
key: "renderNode",
|
|
value: function renderNode(root, node) {
|
|
var _this3 = this;
|
|
var _this$props7 = this.props,
|
|
content = _this$props7.content,
|
|
type = _this$props7.type;
|
|
var nodeProps = _objectSpread(_objectSpread(_objectSpread({}, filterProps(this.props, false)), node), {}, {
|
|
root: root
|
|
});
|
|
var isLeaf = !node.children || !node.children.length;
|
|
var currentRoot = this.state.currentRoot;
|
|
var isCurrentRootChild = (currentRoot.children || []).filter(function (item) {
|
|
return item.depth === node.depth && item.name === node.name;
|
|
});
|
|
if (!isCurrentRootChild.length && root.depth && type === 'nest') {
|
|
return null;
|
|
}
|
|
return /*#__PURE__*/React.createElement(Layer, {
|
|
key: "recharts-treemap-node-".concat(nodeProps.x, "-").concat(nodeProps.y, "-").concat(nodeProps.name),
|
|
className: "recharts-treemap-depth-".concat(node.depth)
|
|
}, this.renderItem(content, nodeProps, isLeaf), node.children && node.children.length ? node.children.map(function (child) {
|
|
return _this3.renderNode(node, child);
|
|
}) : null);
|
|
}
|
|
}, {
|
|
key: "renderAllNodes",
|
|
value: function renderAllNodes() {
|
|
var formatRoot = this.state.formatRoot;
|
|
if (!formatRoot) {
|
|
return null;
|
|
}
|
|
return this.renderNode(formatRoot, formatRoot);
|
|
}
|
|
}, {
|
|
key: "renderTooltip",
|
|
value: function renderTooltip() {
|
|
var _this$props8 = this.props,
|
|
children = _this$props8.children,
|
|
nameKey = _this$props8.nameKey;
|
|
var tooltipItem = findChildByType(children, Tooltip);
|
|
if (!tooltipItem) {
|
|
return null;
|
|
}
|
|
var _this$props9 = this.props,
|
|
width = _this$props9.width,
|
|
height = _this$props9.height;
|
|
var _this$state = this.state,
|
|
isTooltipActive = _this$state.isTooltipActive,
|
|
activeNode = _this$state.activeNode;
|
|
var viewBox = {
|
|
x: 0,
|
|
y: 0,
|
|
width: width,
|
|
height: height
|
|
};
|
|
var coordinate = activeNode ? {
|
|
x: activeNode.x + activeNode.width / 2,
|
|
y: activeNode.y + activeNode.height / 2
|
|
} : null;
|
|
var payload = isTooltipActive && activeNode ? [{
|
|
payload: activeNode,
|
|
name: getValueByDataKey(activeNode, nameKey, ''),
|
|
value: getValueByDataKey(activeNode, NODE_VALUE_KEY)
|
|
}] : [];
|
|
return /*#__PURE__*/React.cloneElement(tooltipItem, {
|
|
viewBox: viewBox,
|
|
active: isTooltipActive,
|
|
coordinate: coordinate,
|
|
label: '',
|
|
payload: payload
|
|
});
|
|
}
|
|
|
|
// render nest treemap
|
|
}, {
|
|
key: "renderNestIndex",
|
|
value: function renderNestIndex() {
|
|
var _this4 = this;
|
|
var _this$props10 = this.props,
|
|
nameKey = _this$props10.nameKey,
|
|
nestIndexContent = _this$props10.nestIndexContent;
|
|
var nestIndex = this.state.nestIndex;
|
|
return /*#__PURE__*/React.createElement("div", {
|
|
className: "recharts-treemap-nest-index-wrapper",
|
|
style: {
|
|
marginTop: '8px',
|
|
textAlign: 'center'
|
|
}
|
|
}, nestIndex.map(function (item, i) {
|
|
// TODO need to verify nameKey type
|
|
var name = get(item, nameKey, 'root');
|
|
var content = null;
|
|
if ( /*#__PURE__*/React.isValidElement(nestIndexContent)) {
|
|
content = /*#__PURE__*/React.cloneElement(nestIndexContent, item, i);
|
|
}
|
|
if (isFunction(nestIndexContent)) {
|
|
content = nestIndexContent(item, i);
|
|
} else {
|
|
content = name;
|
|
}
|
|
return (
|
|
/*#__PURE__*/
|
|
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions
|
|
React.createElement("div", {
|
|
onClick: _this4.handleNestIndex.bind(_this4, item, i),
|
|
key: "nest-index-".concat(uniqueId()),
|
|
className: "recharts-treemap-nest-index-box",
|
|
style: {
|
|
cursor: 'pointer',
|
|
display: 'inline-block',
|
|
padding: '0 7px',
|
|
background: '#000',
|
|
color: '#fff',
|
|
marginRight: '3px'
|
|
}
|
|
}, content)
|
|
);
|
|
}));
|
|
}
|
|
}, {
|
|
key: "render",
|
|
value: function render() {
|
|
if (!validateWidthHeight(this)) {
|
|
return null;
|
|
}
|
|
var _this$props11 = this.props,
|
|
width = _this$props11.width,
|
|
height = _this$props11.height,
|
|
className = _this$props11.className,
|
|
style = _this$props11.style,
|
|
children = _this$props11.children,
|
|
type = _this$props11.type,
|
|
others = _objectWithoutProperties(_this$props11, _excluded);
|
|
var attrs = filterProps(others, false);
|
|
return /*#__PURE__*/React.createElement("div", {
|
|
className: clsx('recharts-wrapper', className),
|
|
style: _objectSpread(_objectSpread({}, style), {}, {
|
|
position: 'relative',
|
|
cursor: 'default',
|
|
width: width,
|
|
height: height
|
|
}),
|
|
role: "region"
|
|
}, /*#__PURE__*/React.createElement(Surface, _extends({}, attrs, {
|
|
width: width,
|
|
height: type === 'nest' ? height - 30 : height
|
|
}), this.renderAllNodes(), filterSvgElements(children)), this.renderTooltip(), type === 'nest' && this.renderNestIndex());
|
|
}
|
|
}], [{
|
|
key: "getDerivedStateFromProps",
|
|
value: function getDerivedStateFromProps(nextProps, prevState) {
|
|
if (nextProps.data !== prevState.prevData || nextProps.type !== prevState.prevType || nextProps.width !== prevState.prevWidth || nextProps.height !== prevState.prevHeight || nextProps.dataKey !== prevState.prevDataKey || nextProps.aspectRatio !== prevState.prevAspectRatio) {
|
|
var root = computeNode({
|
|
depth: 0,
|
|
node: {
|
|
children: nextProps.data,
|
|
x: 0,
|
|
y: 0,
|
|
width: nextProps.width,
|
|
height: nextProps.height
|
|
},
|
|
index: 0,
|
|
valueKey: nextProps.dataKey
|
|
});
|
|
var formatRoot = squarify(root, nextProps.aspectRatio);
|
|
return _objectSpread(_objectSpread({}, prevState), {}, {
|
|
formatRoot: formatRoot,
|
|
currentRoot: root,
|
|
nestIndex: [root],
|
|
prevAspectRatio: nextProps.aspectRatio,
|
|
prevData: nextProps.data,
|
|
prevWidth: nextProps.width,
|
|
prevHeight: nextProps.height,
|
|
prevDataKey: nextProps.dataKey,
|
|
prevType: nextProps.type
|
|
});
|
|
}
|
|
return null;
|
|
}
|
|
}, {
|
|
key: "renderContentItem",
|
|
value: function renderContentItem(content, nodeProps, type, colorPanel) {
|
|
if ( /*#__PURE__*/React.isValidElement(content)) {
|
|
return /*#__PURE__*/React.cloneElement(content, nodeProps);
|
|
}
|
|
if (isFunction(content)) {
|
|
return content(nodeProps);
|
|
}
|
|
// optimize default shape
|
|
var x = nodeProps.x,
|
|
y = nodeProps.y,
|
|
width = nodeProps.width,
|
|
height = nodeProps.height,
|
|
index = nodeProps.index;
|
|
var arrow = null;
|
|
if (width > 10 && height > 10 && nodeProps.children && type === 'nest') {
|
|
arrow = /*#__PURE__*/React.createElement(Polygon, {
|
|
points: [{
|
|
x: x + 2,
|
|
y: y + height / 2
|
|
}, {
|
|
x: x + 6,
|
|
y: y + height / 2 + 3
|
|
}, {
|
|
x: x + 2,
|
|
y: y + height / 2 + 6
|
|
}]
|
|
});
|
|
}
|
|
var text = null;
|
|
var nameSize = getStringSize(nodeProps.name);
|
|
if (width > 20 && height > 20 && nameSize.width < width && nameSize.height < height) {
|
|
text = /*#__PURE__*/React.createElement("text", {
|
|
x: x + 8,
|
|
y: y + height / 2 + 7,
|
|
fontSize: 14
|
|
}, nodeProps.name);
|
|
}
|
|
var colors = colorPanel || COLOR_PANEL;
|
|
return /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement(Rectangle, _extends({
|
|
fill: nodeProps.depth < 2 ? colors[index % colors.length] : 'rgba(255,255,255,0)',
|
|
stroke: "#fff"
|
|
}, omit(nodeProps, 'children'), {
|
|
role: "img"
|
|
})), arrow, text);
|
|
}
|
|
}]);
|
|
}(PureComponent);
|
|
_defineProperty(Treemap, "displayName", 'Treemap');
|
|
_defineProperty(Treemap, "defaultProps", {
|
|
aspectRatio: 0.5 * (1 + Math.sqrt(5)),
|
|
dataKey: 'value',
|
|
type: 'flat',
|
|
isAnimationActive: !Global.isSsr,
|
|
isUpdateAnimationActive: !Global.isSsr,
|
|
animationBegin: 0,
|
|
animationDuration: 1500,
|
|
animationEasing: 'linear'
|
|
}); |