Skip to content

Commit b8fe7cc

Browse files
committed
Add sentry config and btn to test
1 parent a567c95 commit b8fe7cc

File tree

11 files changed

+245
-25
lines changed

11 files changed

+245
-25
lines changed

src/Website/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ ENV GOOGLE_MAPS_API=$ARG_GOOGLE_MAPS_API
99
ARG ARG_SEND_IN_BLUE_API
1010
ENV SEND_IN_BLUE_API=$ARG_SEND_IN_BLUE_API
1111

12+
ARG ARG_SENTRY_DSN
13+
ENV SENTRY_DSN=$ARG_SENTRY_DSN
14+
1215
WORKDIR /app
1316

1417
# Add `/app/node_modules/.bin` to $PATH

src/Website/package-lock.json

+157
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Website/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
"@googlemaps/markerclusterer": "^2.5.3",
3030
"@ngx-translate/core": "^15.0.0",
3131
"@ngx-translate/http-loader": "^8.0.0",
32+
"@sentry/angular": "^8.47.0",
3233
"@swimlane/ngx-charts": "^20.5.0",
3334
"@types/leaflet": "^1.9.12",
3435
"blurhash": "^2.0.5",

src/Website/process_apikeys.sh

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#! /bin/sh
22
sed -i "s/#GOOGLEMAPSAPI#/$GOOGLE_MAPS_API/" src/index.html
3+
34
sed -i "s/#SENDINBLUEAPI#/$SEND_IN_BLUE_API/" src/environments/environment.ts
45
sed -i "s/#SENDINBLUEAPI#/$SEND_IN_BLUE_API/" src/environments/environment.prod.ts
56

7+
sed -i "s/#SENTRYDSN#/$SENTRY_DSN" src/environments/environment.ts
8+
sed -i "s/#SENTRYDSN#/$SENTRY_DSN/" src/environments/environment.prod.ts

src/Website/src/app/app.module.ts

+37-21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { BrowserModule } from "@angular/platform-browser";
2-
import { APP_INITIALIZER, LOCALE_ID, NgModule } from "@angular/core";
2+
import { APP_INITIALIZER, LOCALE_ID, NgModule, ErrorHandler } from "@angular/core";
3+
import { Router } from "@angular/router";
34

45
import { AppComponent } from "./app.component";
56
import { TranslateHttpLoader } from "@ngx-translate/http-loader";
@@ -61,6 +62,7 @@ import { CommonModule, registerLocaleData } from "@angular/common";
6162
import { ContactFormComponent } from "./_forms/contact/forms-contact.directive";
6263
import { ContactsComponent } from "./pages/contacts/contacts.component";
6364
import { CookieService } from "ngx-cookie-service";
65+
import * as Sentry from "@sentry/angular";
6466

6567
import { environment } from "../environments/environment";
6668
import { GoogleMapsModule } from "@angular/google-maps";
@@ -90,7 +92,6 @@ import { VolontarxComponent } from "./pages/pesaro2024-section/volontarx/volonta
9092
import { SearchSourceComponent } from "./user/components/user-access-list/search-source/search-source.component";
9193
import { AlbergatoriComponent } from "./pages/pesaro2024-section/albergatori/albergatori.component";
9294
import localeIt from "@angular/common/locales/it";
93-
import { Sharper2024Component } from "./pages/uniurb/sharper2024/sharper2024.component";
9495
import { StoreLogosComponent } from "./components/store-logos/store-logos.component";
9596

9697
// AoT requires an exported function for factories
@@ -115,6 +116,23 @@ export function translateFactory(translate: TranslateService): any {
115116

116117
export const isMock = environment.mock;
117118

119+
const httpInterceptorProviders = environment.mock
120+
? [
121+
{
122+
provide: HTTP_INTERCEPTORS,
123+
useClass: HttpMockRequestInterceptor,
124+
multi: true,
125+
},
126+
]
127+
: [
128+
{
129+
provide: HTTP_INTERCEPTORS,
130+
useClass: TokenInterceptorService,
131+
multi: true,
132+
},
133+
];
134+
135+
118136
@NgModule({
119137
declarations: [
120138
AboutComponent,
@@ -196,8 +214,6 @@ export const isMock = environment.mock;
196214
OverlayModule,
197215
ReactiveFormsModule,
198216
SharedModule,
199-
TranslateModule,
200-
TranslateModule,
201217
LayoutModule,
202218
NgChartsModule,
203219
SearchSourceComponent,
@@ -210,25 +226,25 @@ export const isMock = environment.mock;
210226
deps: [TranslateService],
211227
multi: true,
212228
},
213-
isMock
214-
? [
215-
{
216-
provide: HTTP_INTERCEPTORS,
217-
useClass: HttpMockRequestInterceptor,
218-
multi: true,
219-
},
220-
CookieService,
221-
]
222-
: [
223-
{
224-
provide: HTTP_INTERCEPTORS,
225-
useClass: TokenInterceptorService,
226-
multi: true,
227-
},
228-
CookieService,
229-
],
229+
{
230+
provide: APP_INITIALIZER,
231+
useFactory: () => () => {},
232+
deps: [Sentry.TraceService],
233+
multi: true,
234+
},
235+
...httpInterceptorProviders,
236+
CookieService,
230237
provideHttpClient(withInterceptorsFromDi()),
231238
{ provide: LOCALE_ID, useValue: "it-IT" },
239+
{
240+
provide: ErrorHandler,
241+
useValue: Sentry.createErrorHandler(),
242+
},
243+
{
244+
provide: Sentry.TraceService,
245+
deps: [Router],
246+
},
247+
232248
],
233249
})
234250
export class AppModule {

src/Website/src/app/authentication/signin/signin.component.html

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<div class="flex justify-center items-center">
2+
<button (click)="throwTestError()">Test Sentry Error</button>
23
<mat-card>
34
<mat-card-content>
45
<form [formGroup]="form" (ngSubmit)="onSubmit()">

src/Website/src/app/authentication/signin/signin.component.ts

+5
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,9 @@ export class SignInComponent implements OnInit {
8383
this.formSubmitAttempt = true;
8484
}
8585
}
86+
87+
throwTestError(): void {
88+
throw new Error("Sentry Test Error");
89+
}
90+
8691
}

src/Website/src/app/user/statistics/admin-role/admin-role.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ <h2 class="text-xl font-semibold">WOM Consumati</h2>
8686
</div>
8787

8888
<!-- Bar Chart for Consumption over Time -->
89-
<div class="flex justify-center gap-6 mt-6">
89+
<div class="flex flex-col lg:flex-row justify-center gap-6 mt-6">
9090
<div>
9191
<div
9292
class="card-stat"
@@ -304,7 +304,7 @@ <h2 class="text-xl font-semibold">WOM Generati e Riscossi</h2>
304304
</div>
305305
</div>
306306

307-
<div class="flex mt-6 gap-6">
307+
<div class="flex flex-col lg:flex-row mt-6 gap-6">
308308
<!-- Bar Chart for Generated and Redeemed Over Time -->
309309
<div class="card-stat">
310310
<ng-container *ngIf="totalGeneratedOverTime">

src/Website/src/environments/environment.prod.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ export const environment = {
99
i18n: '1.1.0',
1010
noreplyEmail: '[email protected]',
1111
baseEmail: '[email protected]',
12-
sendInBlueApiKey: '#SENDINBLUEAPI#'
12+
sendInBlueApiKey: '#SENDINBLUEAPI#',
13+
sentryDsn: "#SENTRYDSN#",
1314
};

src/Website/src/environments/environment.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ export const environment = {
1414
i18n: '1.1.0',
1515
noreplyEmail: '[email protected]',
1616
baseEmail: '[email protected]',
17-
sendInBlueApiKey: '#SENDINBLUEAPI#'
17+
sendInBlueApiKey: '#SENDINBLUEAPI#',
18+
sentryDsn: "#SENTRYDSN#",
1819
};
1920

2021
/*

src/Website/src/main.ts

+32
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,38 @@ import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
44
import { AppModule } from './app/app.module';
55
import { environment } from './environments/environment';
66

7+
import * as Sentry from "@sentry/angular";
8+
9+
Sentry.init({
10+
dsn: environment.sentryDsn,
11+
integrations: [
12+
// Registers and configures the Tracing integration,
13+
// which automatically instruments your application to monitor its
14+
// performance, including custom Angular routing instrumentation
15+
Sentry.browserTracingIntegration(),
16+
// Registers the Replay integration,
17+
// which automatically captures Session Replays
18+
Sentry.replayIntegration(),
19+
],
20+
21+
// Set tracesSampleRate to 1.0 to capture 100%
22+
// of transactions for tracing.
23+
// We recommend adjusting this value in production
24+
// Learn more at
25+
// https://docs.sentry.io/platforms/javascript/configuration/options/#traces-sample-rate
26+
tracesSampleRate: 1.0,
27+
28+
// Set `tracePropagationTargets` to control for which URLs trace propagation should be enabled
29+
tracePropagationTargets: ["localhost", environment.baseUrl],
30+
31+
// Capture Replay for 10% of all sessions,
32+
// plus for 100% of sessions with an error
33+
// Learn more at
34+
// https://docs.sentry.io/platforms/javascript/session-replay/configuration/#general-integration-configuration
35+
replaysSessionSampleRate: 0.1,
36+
replaysOnErrorSampleRate: 1.0,
37+
});
38+
739
if (environment.production) {
840
enableProdMode();
941
}

0 commit comments

Comments
 (0)