Skip to content

Commit e435b36

Browse files
committed
rework overview and chart template
1 parent 21e8817 commit e435b36

File tree

9 files changed

+78
-54
lines changed

9 files changed

+78
-54
lines changed

assets/controllers/project_controller.js assets/controllers/chart_controller.js

+44-37
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import { Controller } from '@hotwired/stimulus';
22
import Chart from 'chart.js/auto';
3-
import moment from 'moment';
43
import 'chartjs-adapter-moment';
4+
import zoomPlugin from 'chartjs-plugin-zoom';
55
import 'select2';
66
import $ from 'jquery';
77

88
export default class extends Controller {
99
chartColors = {
10+
black: 'rgb(45,45,45)',
1011
red: 'rgb(255, 99, 132)',
1112
orange: 'rgb(255, 159, 64)',
1213
yellow: 'rgb(255, 205, 86)',
@@ -21,44 +22,42 @@ export default class extends Controller {
2122

2223
connect() {
2324
this.initChart(
24-
JSON.parse(this.element.dataset.labels),
25-
JSON.parse(this.element.dataset.tagData),
26-
this.element.dataset.mainLib
25+
JSON.parse(this.element.dataset.libraries),
2726
);
2827
this.initSelectBox();
2928
}
3029

31-
initChart(labels, tagData, mainLib) {
32-
const momentLabels = labels.forEach((label) => moment(label, 'MM-DD-YY'));
30+
initChart(libraries) {
3331

3432
const ctx = document.getElementById('canvas');
3533
this.chartConfig = {
3634
type: 'line',
37-
data: {
38-
labels: momentLabels,
39-
datasets: [
40-
{
41-
label: mainLib,
42-
data: tagData,
43-
fill: false,
44-
borderColor: 'rgb(45,45,45)',
45-
pointRadius: 5,
46-
pointHoverRadius: 7,
47-
},
48-
],
49-
},
5035
options: {
5136
plugins: {
5237
tooltip: {
5338
callbacks: {
5439
title: function (tooltipItem) {
55-
return tooltipItem[0].raw.name;
40+
return tooltipItem[0].dataset.label + ' ' + tooltipItem[0].raw.name;
5641
},
5742
label: function (tooltipItem) {
5843
return 'Ø Complexity: ' + tooltipItem.formattedValue;
5944
},
6045
},
6146
},
47+
zoom: {
48+
pan: {
49+
enabled: true,
50+
},
51+
zoom: {
52+
wheel: {
53+
enabled: true,
54+
},
55+
pinch: {
56+
enabled: true
57+
},
58+
mode: 'xy',
59+
}
60+
}
6261
},
6362
scales: {
6463
x: {
@@ -74,7 +73,12 @@ export default class extends Controller {
7473
},
7574
},
7675
};
76+
Chart.register(zoomPlugin);
7777
this.chart = new Chart(ctx, this.chartConfig);
78+
79+
libraries.forEach(library => this.addLibrary(library['name'], library['tags']))
80+
81+
this.chart.update();
7882
}
7983

8084
initSelectBox() {
@@ -83,7 +87,7 @@ export default class extends Controller {
8387

8488
// register events
8589
$select.on('select2:select', this.disableSorting);
86-
$select.on('select2:select', this.addLibrary.bind(this));
90+
$select.on('select2:select', this.selectLibrary.bind(this));
8791
$select.on('select2:unselect', this.removeLibrary.bind(this));
8892
}
8993

@@ -95,24 +99,27 @@ export default class extends Controller {
9599
$(this).trigger('change');
96100
}
97101

98-
addLibrary(event) {
99-
const data = event.params.data;
102+
addLibrary(label, data) {
100103
const colorName = this.colorNames[this.chartConfig.data.datasets.length % this.colorNames.length];
101-
const newColor = this.chartColors[colorName];
102-
const config = this.chartConfig;
103-
const chart = this.chart;
104+
const nextColor = this.chartColors[colorName];
105+
const newDataset = {
106+
label: label,
107+
data: data,
108+
fill: false,
109+
pointRadius: 5,
110+
pointHoverRadius: 7,
111+
borderColor: nextColor,
112+
};
113+
114+
this.chartConfig.data.datasets.push(newDataset);
115+
}
116+
117+
selectLibrary(event) {
118+
const data = event.params.data;
119+
const self = this;
104120
$.ajax(data.id).done(function (response) {
105-
const newDataset = {
106-
label: data.text,
107-
data: response,
108-
fill: false,
109-
pointRadius: 5,
110-
pointHoverRadius: 7,
111-
borderColor: newColor,
112-
};
113-
114-
config.data.datasets.push(newDataset);
115-
chart.update();
121+
self.addLibrary(data.text, response);
122+
self.chart.update();
116123
});
117124
}
118125

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"bootstrap": "^5.2.0",
1414
"chart.js": "^3.8.0",
1515
"chartjs-adapter-moment": "^1.0.0",
16+
"chartjs-plugin-zoom": "^1.2.1",
1617
"core-js": "^3.23.0",
1718
"jquery": "^3.6.0",
1819
"moment": "^2.29.4",

src/ComplexityReport/GraphData.php

+11-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66

77
use App\Entity\Library;
88
use App\Entity\Tag;
9+
use JsonSerializable;
910

10-
final class GraphData
11+
final class GraphData implements JsonSerializable
1112
{
1213
private const DATE_FORMAT = 'm-d-y';
1314

@@ -32,4 +33,13 @@ public function getTagData(): array
3233
];
3334
}, $this->library->getTags());
3435
}
36+
37+
public function jsonSerialize(): array
38+
{
39+
return [
40+
'name' => $this->library->getName(),
41+
'tags' => $this->getTagData(),
42+
'labels' => $this->getLabels(),
43+
];
44+
}
3545
}

src/Entity/Project.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ public static function getMainLibraries(): array
4444

4545
public function __construct(
4646
#[ORM\Column(unique: true)]
47-
private string $name,
47+
private readonly string $name,
4848
#[ORM\Column]
49-
private string $url,
49+
private readonly string $url,
5050
#[ORM\Column(unique: true)]
51-
private string $vendor,
51+
private readonly string $vendor,
5252
) {
5353
$this->libraries = new ArrayCollection();
5454
}

src/Repository/LibraryRepository.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
/**
1313
* @extends ServiceEntityRepository<Library>
1414
*
15-
* @method list<Library> findByName(string|array $name)
15+
* @method Library[] findByName(string|array $name)
16+
* @method Library|null findOneByName(string $name)
1617
*/
1718
final class LibraryRepository extends ServiceEntityRepository
1819
{

symfony.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@
477477
"assets/app.js",
478478
"assets/bootstrap.js",
479479
"assets/controllers.json",
480-
"assets/controllers/project_controller.js",
480+
"assets/controllers/chart_controller.js",
481481
"assets/styles/app.css",
482482
"config/packages/webpack_encore.yaml",
483483
"package.json",

templates/base.html.twig

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
<body class="bg-light">
1111
{% block content %}{% endblock %}
1212
<footer class="text-center mt-3 mb-5 text-muted">
13-
Made with ♥ in Berlin by <a href="https://twitter.com/el_stoffel" target="_blank" class="text-muted"><u>@el_stoffel</u></a>
13+
Made with ♥ in Berlin by <a href="https://twitter.com/el_stoffel" target="_blank" rel="noreferrer" class="text-muted">@el_stoffel</a>
14+
&dash; <a href="https://github.com/chr-hertel/oss-complexity-report" target="_blank" rel="noreferrer" class="text-muted">Sources on GitHub</a>
1415
</footer>
1516
</body>
1617
</html>

templates/chart.html.twig

+2-4
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,8 @@
3939
</a>
4040
{% endif %}
4141
</h2>
42-
<div data-controller="project"
43-
data-main-lib="{{ selectedLibraries|first.name }}"
44-
data-labels="{{ selectedLibraries|first.asGraph.labels|json_encode|e('html_attr') }}"
45-
data-tag-data="{{ selectedLibraries|first.asGraph.tagData|json_encode|e('html_attr') }}">
42+
<div data-controller="chart"
43+
data-libraries="{{ selectedLibraries|map(library => library.asGraph)|json_encode|e('html_attr') }}">
4644
<canvas id="canvas" class="img-fluid"></canvas>
4745
<div class="form-group mx-3 my-4">
4846
<h3>Libraries</h3>

yarn.lock

+12-6
Original file line numberDiff line numberDiff line change
@@ -1063,12 +1063,6 @@
10631063

10641064
"@symfony/ux-swup@file:vendor/symfony/ux-swup/Resources/assets":
10651065
version "1.1.0"
1066-
dependencies:
1067-
"@swup/debug-plugin" "^1.0"
1068-
"@swup/fade-theme" "^1.0"
1069-
"@swup/forms-plugin" "^1.0"
1070-
"@swup/slide-theme" "^1.0"
1071-
swup "^2.0"
10721066

10731067
"@symfony/webpack-encore@^3.0.0":
10741068
version "3.0.0"
@@ -1734,6 +1728,13 @@ chartjs-adapter-moment@^1.0.0:
17341728
resolved "https://registry.yarnpkg.com/chartjs-adapter-moment/-/chartjs-adapter-moment-1.0.0.tgz#9174b1093c68bcfe285aff24f7388ad60d44e8f7"
17351729
integrity sha512-PqlerEvQcc5hZLQ/NQWgBxgVQ4TRdvkW3c/t+SUEQSj78ia3hgLkf2VZ2yGJtltNbEEFyYGm+cA6XXevodYvWA==
17361730

1731+
chartjs-plugin-zoom@^1.2.1:
1732+
version "1.2.1"
1733+
resolved "https://registry.yarnpkg.com/chartjs-plugin-zoom/-/chartjs-plugin-zoom-1.2.1.tgz#7e350ba20d907f397d0c055239dcc67d326df705"
1734+
integrity sha512-2zbWvw2pljrtMLMXkKw1uxYzAne5PtjJiOZftcut4Lo3Ee8qUt95RpMKDWrZ+pBZxZKQKOD/etdU4pN2jxZUmg==
1735+
dependencies:
1736+
hammerjs "^2.0.8"
1737+
17371738
"chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.3:
17381739
version "3.5.3"
17391740
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
@@ -2508,6 +2509,11 @@ growly@^1.3.0:
25082509
resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
25092510
integrity sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==
25102511

2512+
hammerjs@^2.0.8:
2513+
version "2.0.8"
2514+
resolved "https://registry.yarnpkg.com/hammerjs/-/hammerjs-2.0.8.tgz#04ef77862cff2bb79d30f7692095930222bf60f1"
2515+
integrity sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ==
2516+
25112517
handle-thing@^2.0.0:
25122518
version "2.0.1"
25132519
resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e"

0 commit comments

Comments
 (0)