2021-05-09 14:44:14 +05:30
|
|
|
import React, { useEffect, useRef } from "react";
|
|
|
|
|
import { connect } from "react-redux";
|
|
|
|
|
import { RouteComponentProps } from "react-router-dom";
|
|
|
|
|
import {
|
|
|
|
|
GlobalTime,
|
|
|
|
|
serviceMapStore,
|
|
|
|
|
getServiceMapItems,
|
|
|
|
|
getDetailedServiceMapItems,
|
|
|
|
|
} from "Src/store/actions";
|
|
|
|
|
import { StoreState } from "../../store/reducers";
|
|
|
|
|
import { getGraphData } from "./utils";
|
|
|
|
|
import { ForceGraph2D } from "react-force-graph";
|
2021-01-03 18:15:44 +05:30
|
|
|
|
2021-05-09 14:44:14 +05:30
|
|
|
interface ServiceMapProps extends RouteComponentProps<any> {
|
|
|
|
|
serviceMap: serviceMapStore;
|
|
|
|
|
globalTime: GlobalTime;
|
|
|
|
|
getServiceMapItems: Function;
|
|
|
|
|
getDetailedServiceMapItems: Function;
|
|
|
|
|
}
|
|
|
|
|
interface graphNode {
|
|
|
|
|
id: string;
|
|
|
|
|
group: number;
|
|
|
|
|
}
|
|
|
|
|
interface graphLink {
|
|
|
|
|
source: string;
|
|
|
|
|
target: string;
|
|
|
|
|
value: number;
|
|
|
|
|
}
|
|
|
|
|
export interface graphDataType {
|
|
|
|
|
nodes: graphNode[];
|
|
|
|
|
links: graphLink[];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const ServiceMap = (props: ServiceMapProps) => {
|
|
|
|
|
const fgRef = useRef();
|
|
|
|
|
const {
|
|
|
|
|
getDetailedServiceMapItems,
|
|
|
|
|
getServiceMapItems,
|
|
|
|
|
globalTime,
|
|
|
|
|
serviceMap,
|
|
|
|
|
} = props;
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
getServiceMapItems(globalTime);
|
|
|
|
|
getDetailedServiceMapItems(globalTime);
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
if (!serviceMap.items.length) {
|
|
|
|
|
return "loading";
|
|
|
|
|
}
|
|
|
|
|
const { nodes, links } = getGraphData(serviceMap.items);
|
|
|
|
|
const graphData = { nodes, links };
|
2021-01-18 02:18:49 +05:30
|
|
|
return (
|
|
|
|
|
<div>
|
2021-05-09 14:44:14 +05:30
|
|
|
<ForceGraph2D
|
|
|
|
|
ref={fgRef}
|
|
|
|
|
cooldownTicks={100}
|
|
|
|
|
onEngineStop={() => fgRef.current.zoomToFit(100, 100)}
|
|
|
|
|
graphData={graphData}
|
|
|
|
|
nodeLabel="id"
|
|
|
|
|
nodeAutoColorBy={(d) => d.id}
|
|
|
|
|
linkAutoColorBy={(d) => d.target}
|
|
|
|
|
linkDirectionalParticles="value"
|
|
|
|
|
linkDirectionalParticleSpeed={(d) => d.value}
|
|
|
|
|
nodeCanvasObject={(node, ctx, globalScale) => {
|
|
|
|
|
const label = node.id;
|
|
|
|
|
const fontSize = 16 / globalScale;
|
|
|
|
|
ctx.font = `${fontSize}px Sans-Serif`;
|
|
|
|
|
const textWidth = ctx.measureText(label).width;
|
|
|
|
|
const bckgDimensions = [textWidth, fontSize].map((n) => n + fontSize); // some padding
|
|
|
|
|
ctx.fillStyle = node.color;
|
|
|
|
|
ctx.fillRect(
|
|
|
|
|
node.x - bckgDimensions[0] / 2,
|
|
|
|
|
node.y - bckgDimensions[1] / 2,
|
|
|
|
|
...bckgDimensions,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
ctx.textAlign = "center";
|
|
|
|
|
ctx.textBaseline = "middle";
|
|
|
|
|
ctx.fillStyle = "black";
|
|
|
|
|
ctx.fillText(label, node.x, node.y);
|
|
|
|
|
|
|
|
|
|
node.__bckgDimensions = bckgDimensions; // to re-use in nodePointerAreaPaint
|
|
|
|
|
}}
|
|
|
|
|
nodePointerAreaPaint={(node, color, ctx) => {
|
|
|
|
|
ctx.fillStyle = color;
|
|
|
|
|
const bckgDimensions = node.__bckgDimensions;
|
|
|
|
|
bckgDimensions &&
|
|
|
|
|
ctx.fillRect(
|
|
|
|
|
node.x - bckgDimensions[0] / 2,
|
|
|
|
|
node.y - bckgDimensions[1] / 2,
|
|
|
|
|
...bckgDimensions,
|
|
|
|
|
);
|
|
|
|
|
}}
|
|
|
|
|
/>
|
2021-01-18 02:18:49 +05:30
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
2021-01-03 18:15:44 +05:30
|
|
|
|
2021-05-09 14:44:14 +05:30
|
|
|
const mapStateToProps = (
|
|
|
|
|
state: StoreState,
|
|
|
|
|
): {
|
|
|
|
|
serviceMap: serviceMapStore;
|
|
|
|
|
globalTime: GlobalTime;
|
|
|
|
|
} => {
|
|
|
|
|
return {
|
|
|
|
|
serviceMap: state.serviceMap,
|
|
|
|
|
globalTime: state.globalTime,
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, {
|
|
|
|
|
getServiceMapItems: getServiceMapItems,
|
|
|
|
|
getDetailedServiceMapItems: getDetailedServiceMapItems,
|
|
|
|
|
})(ServiceMap);
|