From db868e23ee9918f78b6839466df9d00972a0aca8 Mon Sep 17 00:00:00 2001 From: LPeter1997 Date: Thu, 21 Sep 2023 16:22:15 +0200 Subject: [PATCH] Update TimelineGraph.tsx --- .../src/TimelineGraph.tsx | 31 ++++++++++++++++--- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/src/Draco.Trace.Visualizer/src/TimelineGraph.tsx b/src/Draco.Trace.Visualizer/src/TimelineGraph.tsx index 7fa5a1ffa..35dd5ef96 100644 --- a/src/Draco.Trace.Visualizer/src/TimelineGraph.tsx +++ b/src/Draco.Trace.Visualizer/src/TimelineGraph.tsx @@ -6,6 +6,8 @@ type Props = { width: number; height: number; data: ThreadModel; + startColor?: any; + endColor?: any; }; interface TimelineMessageModel extends MessageModel { @@ -16,10 +18,8 @@ const TimelineGraph = (props: Props) => { const domRef = React.useRef(null); const [data, setData] = React.useState(props.data); - const [width, setWidth] = React.useState(props.width); - const [height, setHeight] = React.useState(props.height); - React.useEffect(() => buildGraph(domRef, props), [data, width, height]); + React.useEffect(() => buildGraph(domRef, props), [data]); return ( @@ -31,7 +31,8 @@ function buildGraph(domRef: React.MutableRefObject, props: Props) { const svg = d3 .select(domRef.current) .attr('width', props.width) - .attr('height', props.height); + .attr('height', props.height) + .attr('cursor', 'grab'); const messageHierarchy = d3.hierarchy(toTimelineMessage(props.data.rootMessage), getTimelineChildren); messageHierarchy.sum(node => node.children && node.children.length > 0 ? 0 : getTimeSpan(node)); @@ -43,7 +44,7 @@ function buildGraph(domRef: React.MutableRefObject, props: Props) { let laidOutMessages = partitionLayout(messageHierarchy); - const colorScale = d3.interpolateHsl('green', 'red'); + const colorScale = d3.interpolateHsl(props.startColor || 'green', props.endColor || 'red'); // Groups of rect and text const allGroups = svg @@ -77,6 +78,26 @@ function buildGraph(domRef: React.MutableRefObject, props: Props) { .attr('x', node => node.x0 + (node.x1 - node.x0) / 2) .attr('y', node => props.height - node.y1 + (node.y1 - node.y0) / 2); + const zoom = d3 + .zoom() + .on('zoom', e => { + const {k, x, y} = e.transform; + console.log(`x = ${x}, k = ${k}`); + svg + .selectAll('g') + .select('rect') + .attr('transform', `translate(${x} 0) scale(${k} 1)`); + svg + .selectAll('g') + .select('text') + .attr('x', (node: any) => { + let target = node.target || node; + return node.x0 * k + x + (node.x1 - node.x0) * k / 2; + }); + }); + + svg.call(zoom as any); + allRects.on('click', function (svg, node) { focus(node);