mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 02:23:31 -06:00
* Add exploration option to node layout * Add hidden node count * Add grid layout option * Fix panning bounds calculation * Add legend with sorting * Allow sorting on any stats or arc value * Fix merge * Make sorting better * Reset focused node on layout change * Refactor limit hook a bit * Disable selected layout button * Don't show markers if only 1 node is hidden * Move legend to the bottom * Fix text backgrounds * Add show in graph layout action in grid layout * Center view on the focused node, fix perf issue when expanding big graph * Limit the node counting * Comment and linting fixes * Bit of code cleanup and comments * Add state for computing layout * Prevent computing map with partial data * Add rollup plugin for worker * Add rollup plugin for worker * Enhance data from worker * Fix perf issues with reduce and object creation * Improve comment * Fix tests * Css fixes * Remove worker plugin * Add comments * Fix test * Add test for exploration * Add test switching to grid layout * Apply suggestions from code review Co-authored-by: Zoltán Bedi <zoltan.bedi@gmail.com> * Remove unused plugin * Fix function name * Remove unused rollup plugin * Review fixes * Fix context menu shown on layout change * Make buttons bigger * Moved NodeGraph to core grafana Co-authored-by: Zoltán Bedi <zoltan.bedi@gmail.com>
60 lines
1.6 KiB
TypeScript
60 lines
1.6 KiB
TypeScript
import React, { MouseEvent, memo } from 'react';
|
|
import { EdgeDatum, NodeDatum } from './types';
|
|
import { shortenLine } from './utils';
|
|
|
|
interface Props {
|
|
edge: EdgeDatum;
|
|
hovering: boolean;
|
|
onClick: (event: MouseEvent<SVGElement>, link: EdgeDatum) => void;
|
|
onMouseEnter: (id: string) => void;
|
|
onMouseLeave: (id: string) => void;
|
|
}
|
|
export const Edge = memo(function Edge(props: Props) {
|
|
const { edge, onClick, onMouseEnter, onMouseLeave, hovering } = props;
|
|
// Not great typing but after we do layout these properties are full objects not just references
|
|
const { source, target } = edge as { source: NodeDatum; target: NodeDatum };
|
|
|
|
// As the nodes have some radius we want edges to end outside of the node circle.
|
|
const line = shortenLine(
|
|
{
|
|
x1: source.x!,
|
|
y1: source.y!,
|
|
x2: target.x!,
|
|
y2: target.y!,
|
|
},
|
|
90
|
|
);
|
|
|
|
return (
|
|
<g
|
|
onClick={(event) => onClick(event, edge)}
|
|
style={{ cursor: 'pointer' }}
|
|
aria-label={`Edge from: ${(edge.source as NodeDatum).id} to: ${(edge.target as NodeDatum).id}`}
|
|
>
|
|
<line
|
|
strokeWidth={hovering ? 2 : 1}
|
|
stroke={'#999'}
|
|
x1={line.x1}
|
|
y1={line.y1}
|
|
x2={line.x2}
|
|
y2={line.y2}
|
|
markerEnd="url(#triangle)"
|
|
/>
|
|
<line
|
|
stroke={'transparent'}
|
|
x1={line.x1}
|
|
y1={line.y1}
|
|
x2={line.x2}
|
|
y2={line.y2}
|
|
strokeWidth={20}
|
|
onMouseEnter={() => {
|
|
onMouseEnter(edge.id);
|
|
}}
|
|
onMouseLeave={() => {
|
|
onMouseLeave(edge.id);
|
|
}}
|
|
/>
|
|
</g>
|
|
);
|
|
});
|