diff --git a/src/components/Common/GraphMetrics.tsx b/src/components/Common/GraphMetrics.tsx
index bd2aec0..5a5c14c 100644
--- a/src/components/Common/GraphMetrics.tsx
+++ b/src/components/Common/GraphMetrics.tsx
@@ -1,6 +1,6 @@
import { useMemo } from 'react';
import { IconButton, Tooltip } from '@mui/material';
-import RefreshIcon from '@mui/icons-material/Refresh';
+import ChevronRightIcon from '@mui/icons-material/ChevronRight';
import WarningIcon from '@mui/icons-material/Warning';
import InfoIcon from '@mui/icons-material/Info';
import BarChartIcon from '@mui/icons-material/BarChart';
@@ -11,6 +11,7 @@ interface GraphMetricsProps {
nodes: Actor[];
edges: Relation[];
onActorClick?: (actorId: string) => void;
+ onCollapse?: () => void;
}
/**
@@ -19,18 +20,12 @@ interface GraphMetricsProps {
* Shows when no node or edge is selected in the right panel.
* Provides insights into graph structure, connectivity, and key actors.
*/
-const GraphMetrics = ({ nodes, edges, onActorClick }: GraphMetricsProps) => {
- // Calculate all metrics (memoized for performance)
+const GraphMetrics = ({ nodes, edges, onActorClick, onCollapse }: GraphMetricsProps) => {
+ // Calculate all metrics (memoized for performance - auto-updates when nodes/edges change)
const metrics = useMemo(() => {
return calculateGraphMetrics(nodes, edges);
}, [nodes, edges]);
- const handleRefresh = () => {
- // Metrics are automatically recalculated via useMemo
- // This is just for visual feedback
- console.log('Metrics refreshed');
- };
-
const formatNumber = (num: number, decimals: number = 2): string => {
return num.toFixed(decimals);
};
@@ -47,11 +42,13 @@ const GraphMetrics = ({ nodes, edges, onActorClick }: GraphMetricsProps) => {