1
1
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" ;
3
4
4
5
import { AppComponent } from "./app.component" ;
5
6
import { TranslateHttpLoader } from "@ngx-translate/http-loader" ;
@@ -61,6 +62,7 @@ import { CommonModule, registerLocaleData } from "@angular/common";
61
62
import { ContactFormComponent } from "./_forms/contact/forms-contact.directive" ;
62
63
import { ContactsComponent } from "./pages/contacts/contacts.component" ;
63
64
import { CookieService } from "ngx-cookie-service" ;
65
+ import * as Sentry from "@sentry/angular" ;
64
66
65
67
import { environment } from "../environments/environment" ;
66
68
import { GoogleMapsModule } from "@angular/google-maps" ;
@@ -90,7 +92,6 @@ import { VolontarxComponent } from "./pages/pesaro2024-section/volontarx/volonta
90
92
import { SearchSourceComponent } from "./user/components/user-access-list/search-source/search-source.component" ;
91
93
import { AlbergatoriComponent } from "./pages/pesaro2024-section/albergatori/albergatori.component" ;
92
94
import localeIt from "@angular/common/locales/it" ;
93
- import { Sharper2024Component } from "./pages/uniurb/sharper2024/sharper2024.component" ;
94
95
import { StoreLogosComponent } from "./components/store-logos/store-logos.component" ;
95
96
96
97
// AoT requires an exported function for factories
@@ -115,6 +116,23 @@ export function translateFactory(translate: TranslateService): any {
115
116
116
117
export const isMock = environment . mock ;
117
118
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
+
118
136
@NgModule ( {
119
137
declarations : [
120
138
AboutComponent ,
@@ -196,8 +214,6 @@ export const isMock = environment.mock;
196
214
OverlayModule ,
197
215
ReactiveFormsModule ,
198
216
SharedModule ,
199
- TranslateModule ,
200
- TranslateModule ,
201
217
LayoutModule ,
202
218
NgChartsModule ,
203
219
SearchSourceComponent ,
@@ -210,25 +226,25 @@ export const isMock = environment.mock;
210
226
deps : [ TranslateService ] ,
211
227
multi : true ,
212
228
} ,
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 ,
230
237
provideHttpClient ( withInterceptorsFromDi ( ) ) ,
231
238
{ 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
+
232
248
] ,
233
249
} )
234
250
export class AppModule {
0 commit comments