1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
|
/*
* SonarQube
* Copyright (C) 2009-2023 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import classNames from 'classnames';
import { max, min } from 'd3-array';
import { scaleLinear, ScaleLinear } from 'd3-scale';
import { select } from 'd3-selection';
import { D3ZoomEvent, zoom, ZoomBehavior, zoomIdentity } from 'd3-zoom';
import { sortBy, uniq } from 'lodash';
import * as React from 'react';
import { AutoSizer } from 'react-virtualized/dist/commonjs/AutoSizer';
import { translate } from '../../helpers/l10n';
import Link from '../common/Link';
import Tooltip from '../controls/Tooltip';
import './BubbleChart.css';
const TICKS_COUNT = 5;
interface BubbleItem<T> {
color: { fill: string; stroke: string; hover?: string };
key?: string;
data?: T;
size: number;
tooltip?: React.ReactNode;
x: number;
y: number;
}
interface Props<T> {
displayXGrid?: boolean;
displayXTicks?: boolean;
displayYGrid?: boolean;
displayYTicks?: boolean;
formatXTick: (tick: number) => string;
formatYTick: (tick: number) => string;
height: number;
items: BubbleItem<T>[];
onBubbleClick?: (ref?: T) => void;
padding: [number, number, number, number];
sizeDomain?: [number, number];
sizeRange?: [number, number];
xDomain?: [number, number];
yDomain?: [number, number];
}
interface State {
transform: { x: number; y: number; k: number };
}
type Scale = ScaleLinear<number, number>;
export default class BubbleChart<T> extends React.PureComponent<Props<T>, State> {
private node?: Element;
private zoom?: ZoomBehavior<Element, unknown>;
static defaultProps = {
displayXGrid: true,
displayXTicks: true,
displayYGrid: true,
displayYTicks: true,
formatXTick: (d: number) => String(d),
formatYTick: (d: number) => String(d),
padding: [10, 10, 10, 10],
sizeRange: [5, 45],
};
constructor(props: Props<T>) {
super(props);
this.state = { transform: { x: 0, y: 0, k: 1 } };
}
componentDidUpdate() {
if (this.zoom && this.node) {
const rect = this.node.getBoundingClientRect();
this.zoom.translateExtent([
[0, 0],
[rect.width, rect.height],
]);
}
}
boundNode = (node: SVGSVGElement) => {
this.node = node;
this.zoom = zoom().scaleExtent([1, 10]).on('zoom', this.zoomed);
select(this.node).call(this.zoom as any);
};
zoomed = (event: D3ZoomEvent<SVGSVGElement, void>) => {
const { padding } = this.props;
const { x, y, k } = event.transform;
this.setState({
transform: {
x: x + padding[3] * (k - 1),
y: y + padding[0] * (k - 1),
k,
},
});
};
resetZoom = (e: React.MouseEvent) => {
e.stopPropagation();
e.preventDefault();
if (this.zoom && this.node) {
select(this.node).call(this.zoom.transform as any, zoomIdentity);
}
};
getXRange(xScale: Scale, sizeScale: Scale, availableWidth: number) {
const minX = min(this.props.items, (d) => xScale(d.x) - sizeScale(d.size)) || 0;
const maxX = max(this.props.items, (d) => xScale(d.x) + sizeScale(d.size)) || 0;
const dMinX = minX < 0 ? xScale.range()[0] - minX : xScale.range()[0];
const dMaxX = maxX > xScale.range()[1] ? maxX - xScale.range()[1] : 0;
return [dMinX, availableWidth - dMaxX];
}
getYRange(yScale: Scale, sizeScale: Scale, availableHeight: number) {
const minY = min(this.props.items, (d) => yScale(d.y) - sizeScale(d.size)) || 0;
const maxY = max(this.props.items, (d) => yScale(d.y) + sizeScale(d.size)) || 0;
const dMinY = minY < 0 ? yScale.range()[1] - minY : yScale.range()[1];
const dMaxY = maxY > yScale.range()[0] ? maxY - yScale.range()[0] : 0;
return [availableHeight - dMaxY, dMinY];
}
getTicks(scale: Scale, format: (d: number) => string) {
const zoomAmount = Math.ceil(this.state.transform.k);
const ticks = scale.ticks(TICKS_COUNT * zoomAmount).map((tick) => format(tick));
const uniqueTicksCount = uniq(ticks).length;
const ticksCount =
uniqueTicksCount < TICKS_COUNT * zoomAmount ? uniqueTicksCount - 1 : TICKS_COUNT * zoomAmount;
return scale.ticks(ticksCount);
}
getZoomLevelLabel = () => Math.floor(this.state.transform.k * 100) + '%';
renderXGrid = (ticks: number[], xScale: Scale, yScale: Scale) => {
if (!this.props.displayXGrid) {
return null;
}
const { transform } = this.state;
const lines = ticks.map((tick, index) => {
const x = xScale(tick);
const y1 = yScale.range()[0];
const y2 = yScale.range()[1];
return (
<line
className="bubble-chart-grid"
// eslint-disable-next-line react/no-array-index-key
key={index}
x1={x * transform.k + transform.x}
x2={x * transform.k + transform.x}
y1={y1 * transform.k}
y2={transform.k > 1 ? 0 : y2}
/>
);
});
return <g>{lines}</g>;
};
renderYGrid = (ticks: number[], xScale: Scale, yScale: Scale) => {
if (!this.props.displayYGrid) {
return null;
}
const { transform } = this.state;
const lines = ticks.map((tick, index) => {
const y = yScale(tick);
const x1 = xScale.range()[0];
const x2 = xScale.range()[1];
return (
<line
className="bubble-chart-grid"
// eslint-disable-next-line react/no-array-index-key
key={index}
x1={transform.k > 1 ? 0 : x1}
x2={x2 * transform.k}
y1={y * transform.k + transform.y}
y2={y * transform.k + transform.y}
/>
);
});
return <g>{lines}</g>;
};
renderXTicks = (xTicks: number[], xScale: Scale, yScale: Scale) => {
if (!this.props.displayXTicks) {
return null;
}
const { transform } = this.state;
const ticks = xTicks.map((tick, index) => {
const x = xScale(tick) * transform.k + transform.x;
const y = yScale.range()[0];
const innerText = this.props.formatXTick(tick);
// as we modified the `x` using `transform`, check that it is inside the range again
return x > 0 && x < xScale.range()[1] ? (
// eslint-disable-next-line react/no-array-index-key
<text className="bubble-chart-tick" dy="1.5em" key={index} x={x} y={y}>
{innerText}
</text>
) : null;
});
return <g>{ticks}</g>;
};
renderYTicks = (yTicks: number[], xScale: Scale, yScale: Scale) => {
if (!this.props.displayYTicks) {
return null;
}
const { transform } = this.state;
const ticks = yTicks.map((tick, index) => {
const x = xScale.range()[0];
const y = yScale(tick) * transform.k + transform.y;
const innerText = this.props.formatYTick(tick);
// as we modified the `y` using `transform`, check that it is inside the range again
return y > 0 && y < yScale.range()[0] ? (
<text
className="bubble-chart-tick bubble-chart-tick-y"
dx="-0.5em"
dy="0.3em"
// eslint-disable-next-line react/no-array-index-key
key={index}
x={x}
y={y}
>
{innerText}
</text>
) : null;
});
return <g>{ticks}</g>;
};
renderChart = (width: number) => {
const { transform } = this.state;
const availableWidth = width - this.props.padding[1] - this.props.padding[3];
const availableHeight = this.props.height - this.props.padding[0] - this.props.padding[2];
const xScale = scaleLinear()
.domain(this.props.xDomain || [0, max(this.props.items, (d) => d.x) || 0])
.range([0, availableWidth])
.nice();
const yScale = scaleLinear()
.domain(this.props.yDomain || [0, max(this.props.items, (d) => d.y) || 0])
.range([availableHeight, 0])
.nice();
const sizeScale = scaleLinear()
.domain(this.props.sizeDomain || [0, max(this.props.items, (d) => d.size) || 0])
.range(this.props.sizeRange || []);
const xScaleOriginal = xScale.copy();
const yScaleOriginal = yScale.copy();
xScale.range(this.getXRange(xScale, sizeScale, availableWidth));
yScale.range(this.getYRange(yScale, sizeScale, availableHeight));
const bubbles = sortBy(this.props.items, (b) => -b.size).map((item, index) => {
return (
<Bubble
color={item.color}
data={item.data}
key={item.key || index}
onClick={this.props.onBubbleClick}
r={sizeScale(item.size)}
scale={1 / transform.k}
tooltip={item.tooltip}
x={xScale(item.x)}
y={yScale(item.y)}
/>
);
});
const xTicks = this.getTicks(xScale, this.props.formatXTick);
const yTicks = this.getTicks(yScale, this.props.formatYTick);
return (
<svg
className={classNames('bubble-chart')}
height={this.props.height}
ref={this.boundNode}
width={width}
>
<defs>
<clipPath id="graph-region">
<rect
// Extend clip by 2 pixels: one for clipRect border, and one for Bubble borders
height={availableHeight + 4}
width={availableWidth + 4}
x={-2}
y={-2}
/>
</clipPath>
</defs>
<g transform={`translate(${this.props.padding[3]}, ${this.props.padding[0]})`}>
<g clipPath="url(#graph-region)">
{this.renderXGrid(xTicks, xScale, yScale)}
{this.renderYGrid(yTicks, xScale, yScale)}
<g transform={`translate(${transform.x}, ${transform.y}) scale(${transform.k})`}>
{bubbles}
</g>
</g>
{this.renderXTicks(xTicks, xScale, yScaleOriginal)}
{this.renderYTicks(yTicks, xScaleOriginal, yScale)}
</g>
</svg>
);
};
render() {
return (
<div>
<div className="bubble-chart-zoom">
<Tooltip overlay={translate('component_measures.bubble_chart.zoom_level')}>
<Link onClick={this.resetZoom} to="#">
{this.getZoomLevelLabel()}
</Link>
</Tooltip>
</div>
<AutoSizer disableHeight={true}>{(size) => this.renderChart(size.width)}</AutoSizer>
</div>
);
}
}
interface BubbleProps<T> {
color: { fill: string; stroke: string; hover?: string };
onClick?: (ref?: T) => void;
data?: T;
r: number;
scale: number;
tooltip?: string | React.ReactNode;
x: number;
y: number;
}
function Bubble<T>(props: BubbleProps<T>) {
const handleClick = (e: React.MouseEvent<HTMLAnchorElement>) => {
if (props.onClick) {
e.stopPropagation();
e.preventDefault();
props.onClick(props.data);
}
};
const circle = (
<a onClick={handleClick} href="#">
<circle
className="bubble-chart-bubble"
r={props.r}
style={{ fill: props.color.fill, stroke: props.color.stroke }}
transform={`translate(${props.x}, ${props.y}) scale(${props.scale})`}
/>
</a>
);
return <Tooltip overlay={props.tooltip || undefined}>{circle}</Tooltip>;
}
|