fabrikantencore 2.2.11 → 2.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/src/app/modules/fabrikantencore/fabrikantencore.module.mjs +6 -12
- package/esm2020/src/app/modules/fabrikantencore/services/fabrikanten.service.mjs +69 -5
- package/esm2020/src/app/modules/fabrikantencore/services/navigate.service.mjs +9 -7
- package/esm2020/src/app/modules/fabrikantencore/services/statistics.service.mjs +70 -0
- package/esm2020/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +3 -1
- package/fesm2015/fabrikantencore.mjs +134 -24
- package/fesm2015/fabrikantencore.mjs.map +1 -1
- package/fesm2020/fabrikantencore.mjs +125 -24
- package/fesm2020/fabrikantencore.mjs.map +1 -1
- package/package.json +2 -3
- package/src/app/modules/fabrikantencore/services/fabrikanten.service.d.ts +3 -1
- package/src/app/modules/fabrikantencore/services/navigate.service.d.ts +3 -3
- package/src/app/modules/fabrikantencore/services/statistics.service.d.ts +17 -0
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +2 -0
- package/esm2020/src/app/modules/fabrikantencore/services/google.analytics.service.mjs +0 -32
- package/src/app/modules/fabrikantencore/services/google.analytics.service.d.ts +0 -9
|
@@ -6273,6 +6273,7 @@ class FabrikantenFileViewModel {
|
|
|
6273
6273
|
if (_data) {
|
|
6274
6274
|
this.file = _data["file"];
|
|
6275
6275
|
this.customRFAZip = _data["customRFAZip"];
|
|
6276
|
+
this.rvtExtension = _data["rvtExtension"];
|
|
6276
6277
|
}
|
|
6277
6278
|
}
|
|
6278
6279
|
static fromJS(data) {
|
|
@@ -6285,6 +6286,7 @@ class FabrikantenFileViewModel {
|
|
|
6285
6286
|
data = typeof data === 'object' ? data : {};
|
|
6286
6287
|
data["file"] = this.file;
|
|
6287
6288
|
data["customRFAZip"] = this.customRFAZip;
|
|
6289
|
+
data["rvtExtension"] = this.rvtExtension;
|
|
6288
6290
|
return data;
|
|
6289
6291
|
}
|
|
6290
6292
|
}
|
|
@@ -9756,13 +9758,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImpor
|
|
|
9756
9758
|
args: [{ providedIn: 'root' }]
|
|
9757
9759
|
}], ctorParameters: function () { return [{ type: i1$3.Clipboard }, { type: FabrikantenApiClient }]; } });
|
|
9758
9760
|
|
|
9759
|
-
class
|
|
9761
|
+
class StatisticsService {
|
|
9760
9762
|
constructor() {
|
|
9763
|
+
this.Active = true;
|
|
9761
9764
|
this.analytics = null;
|
|
9765
|
+
this.AnalyticsCode = "G-WZHRFJ55QY";
|
|
9766
|
+
this.LastPageView = "";
|
|
9767
|
+
}
|
|
9768
|
+
PageView(name) {
|
|
9769
|
+
if (this.LastPageView != name) {
|
|
9770
|
+
gtag('config', this.AnalyticsCode);
|
|
9771
|
+
gtag('event', 'pageview', {
|
|
9772
|
+
'name': name
|
|
9773
|
+
});
|
|
9774
|
+
this.LastPageView = name;
|
|
9775
|
+
}
|
|
9776
|
+
}
|
|
9777
|
+
SelectCategory(name) {
|
|
9778
|
+
gtag('config', this.AnalyticsCode);
|
|
9779
|
+
gtag('event', "SelectCategory", {
|
|
9780
|
+
category: name
|
|
9781
|
+
});
|
|
9782
|
+
}
|
|
9783
|
+
SelectFilterOption(name) {
|
|
9784
|
+
gtag('config', this.AnalyticsCode);
|
|
9785
|
+
gtag('event', "SelectFilterOption", {
|
|
9786
|
+
filteroption: name
|
|
9787
|
+
});
|
|
9788
|
+
}
|
|
9789
|
+
SelectRangeValue(name) {
|
|
9790
|
+
gtag('config', this.AnalyticsCode);
|
|
9791
|
+
gtag('event', "SelectRangeValue", {
|
|
9792
|
+
range: name
|
|
9793
|
+
});
|
|
9794
|
+
}
|
|
9795
|
+
SelectProduct(name) {
|
|
9796
|
+
gtag('config', this.AnalyticsCode);
|
|
9797
|
+
gtag('event', "SelectProduct", {
|
|
9798
|
+
product: name
|
|
9799
|
+
});
|
|
9762
9800
|
}
|
|
9763
|
-
|
|
9764
|
-
|
|
9765
|
-
|
|
9801
|
+
DownloadFile(filetype, productname) {
|
|
9802
|
+
gtag('config', this.AnalyticsCode);
|
|
9803
|
+
gtag('event', "Download " + filetype, {
|
|
9804
|
+
product: productname
|
|
9805
|
+
});
|
|
9766
9806
|
}
|
|
9767
9807
|
Init() {
|
|
9768
9808
|
//if (this.analytics == null) {
|
|
@@ -9777,9 +9817,9 @@ class GoogleAnalyticsService {
|
|
|
9777
9817
|
//}
|
|
9778
9818
|
}
|
|
9779
9819
|
}
|
|
9780
|
-
|
|
9781
|
-
|
|
9782
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type:
|
|
9820
|
+
StatisticsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: StatisticsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
9821
|
+
StatisticsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: StatisticsService, providedIn: 'root' });
|
|
9822
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: StatisticsService, decorators: [{
|
|
9783
9823
|
type: Injectable,
|
|
9784
9824
|
args: [{
|
|
9785
9825
|
providedIn: 'root'
|
|
@@ -9787,9 +9827,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImpor
|
|
|
9787
9827
|
}], ctorParameters: function () { return []; } });
|
|
9788
9828
|
|
|
9789
9829
|
class NavigateService {
|
|
9790
|
-
constructor(Router,
|
|
9830
|
+
constructor(Router, StatisticsService) {
|
|
9791
9831
|
this.Router = Router;
|
|
9792
|
-
this.
|
|
9832
|
+
this.StatisticsService = StatisticsService;
|
|
9793
9833
|
this.FabrikantenService = null;
|
|
9794
9834
|
this.TranslateService = null;
|
|
9795
9835
|
}
|
|
@@ -9798,24 +9838,26 @@ class NavigateService {
|
|
|
9798
9838
|
if (this.TranslateService.ActiveLanguage != null && this.FabrikantenService.FabrikantenViewModel != null) {
|
|
9799
9839
|
if (this.FabrikantenService.ShowCategories()) {
|
|
9800
9840
|
this.Router.navigate(['/', this.TranslateService.ActiveLanguage.countryCode, 'categories']);
|
|
9801
|
-
this.
|
|
9841
|
+
this.StatisticsService.PageView("categories");
|
|
9802
9842
|
}
|
|
9803
9843
|
else if (this.FabrikantenService.FabrikantenViewModel.selectedProduct != null) {
|
|
9804
9844
|
this.Router.navigate(['/', this.TranslateService.ActiveLanguage.countryCode, 'product', this.FabrikantenService.FabrikantenViewModel.selectedProduct.urlName]);
|
|
9845
|
+
this.StatisticsService.PageView("product");
|
|
9805
9846
|
}
|
|
9806
9847
|
else {
|
|
9807
9848
|
this.Router.navigate(['/', this.TranslateService.ActiveLanguage.countryCode, 'products']);
|
|
9849
|
+
this.StatisticsService.PageView("products");
|
|
9808
9850
|
}
|
|
9809
9851
|
}
|
|
9810
9852
|
}
|
|
9811
9853
|
}
|
|
9812
9854
|
}
|
|
9813
|
-
NavigateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NavigateService, deps: [{ token: i1$1.Router }, { token:
|
|
9855
|
+
NavigateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NavigateService, deps: [{ token: i1$1.Router }, { token: StatisticsService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
9814
9856
|
NavigateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NavigateService, providedIn: 'root' });
|
|
9815
9857
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NavigateService, decorators: [{
|
|
9816
9858
|
type: Injectable,
|
|
9817
9859
|
args: [{ providedIn: 'root' }]
|
|
9818
|
-
}], ctorParameters: function () { return [{ type: i1$1.Router }, { type:
|
|
9860
|
+
}], ctorParameters: function () { return [{ type: i1$1.Router }, { type: StatisticsService }]; } });
|
|
9819
9861
|
|
|
9820
9862
|
class TranslateService {
|
|
9821
9863
|
constructor(TranslateApiClient, NavigateService) {
|
|
@@ -10293,7 +10335,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImpor
|
|
|
10293
10335
|
}], ctorParameters: function () { return [{ type: FabrikantenApiClient }]; } });
|
|
10294
10336
|
|
|
10295
10337
|
class FabrikantenService {
|
|
10296
|
-
constructor(FabrikantenApiClient, BestekService, TranslateService, WebGLService, SVGService, TextureService, NavigateService) {
|
|
10338
|
+
constructor(FabrikantenApiClient, BestekService, TranslateService, WebGLService, SVGService, TextureService, NavigateService, StatisticsService) {
|
|
10297
10339
|
this.FabrikantenApiClient = FabrikantenApiClient;
|
|
10298
10340
|
this.BestekService = BestekService;
|
|
10299
10341
|
this.TranslateService = TranslateService;
|
|
@@ -10301,6 +10343,7 @@ class FabrikantenService {
|
|
|
10301
10343
|
this.SVGService = SVGService;
|
|
10302
10344
|
this.TextureService = TextureService;
|
|
10303
10345
|
this.NavigateService = NavigateService;
|
|
10346
|
+
this.StatisticsService = StatisticsService;
|
|
10304
10347
|
this.Init = false;
|
|
10305
10348
|
this.Loading = true;
|
|
10306
10349
|
this.DownloadARKEYAdomiLoading = false;
|
|
@@ -10345,6 +10388,9 @@ class FabrikantenService {
|
|
|
10345
10388
|
request.sessionId = this.FabrikantenViewModel.sessionId;
|
|
10346
10389
|
request.filterOptionId = filteroptionid;
|
|
10347
10390
|
request.filterId = filterid;
|
|
10391
|
+
if (this.StatisticsService.Active) {
|
|
10392
|
+
this.StatisticsService.SelectFilterOption(this.TranslateService.GetActiveValueFilter(filterid) + ": " + this.TranslateService.GetActiveValueFilterOption(filteroptionid));
|
|
10393
|
+
}
|
|
10348
10394
|
this.FabrikantenApiClient.selectFilterOption(request).subscribe(() => {
|
|
10349
10395
|
this.ReloadModel(ChangeDetectorRef);
|
|
10350
10396
|
}, (error) => {
|
|
@@ -10385,6 +10431,9 @@ class FabrikantenService {
|
|
|
10385
10431
|
request.sessionId = this.FabrikantenViewModel.sessionId;
|
|
10386
10432
|
request.rangeInputId = rangeinputid;
|
|
10387
10433
|
request.value = value;
|
|
10434
|
+
if (this.StatisticsService.Active) {
|
|
10435
|
+
this.StatisticsService.SelectRangeValue(this.TranslateService.GetActiveValueRangeInput(rangeinputid) + ": " + value);
|
|
10436
|
+
}
|
|
10388
10437
|
this.FabrikantenApiClient.setRangeInput(request).subscribe(() => {
|
|
10389
10438
|
this.ReloadModel(ChangeDetectorRef);
|
|
10390
10439
|
}, (error) => {
|
|
@@ -10439,6 +10488,9 @@ class FabrikantenService {
|
|
|
10439
10488
|
request.sessionId = this.FabrikantenViewModel.sessionId;
|
|
10440
10489
|
request.categoryId = category.id;
|
|
10441
10490
|
request.categoryLayer = category.layer;
|
|
10491
|
+
if (this.StatisticsService.Active) {
|
|
10492
|
+
this.StatisticsService.SelectCategory(this.TranslateService.GetActiveValueCategory(category.id));
|
|
10493
|
+
}
|
|
10442
10494
|
this.FabrikantenApiClient.selectCategory(request).subscribe(() => {
|
|
10443
10495
|
this.ReloadModel(ChangeDetectorRef);
|
|
10444
10496
|
}, (error) => {
|
|
@@ -10458,6 +10510,9 @@ class FabrikantenService {
|
|
|
10458
10510
|
var request = new SelectProductRequest();
|
|
10459
10511
|
request.sessionId = this.FabrikantenViewModel.sessionId;
|
|
10460
10512
|
request.productId = product.id;
|
|
10513
|
+
if (this.StatisticsService.Active) {
|
|
10514
|
+
this.StatisticsService.SelectProduct(this.TranslateService.GetActiveValueProduct(product.id));
|
|
10515
|
+
}
|
|
10461
10516
|
this.FabrikantenApiClient.selectProduct(request).subscribe(() => {
|
|
10462
10517
|
this.SelectedToebehoren = null;
|
|
10463
10518
|
this.ResetTabs();
|
|
@@ -10868,6 +10923,11 @@ class FabrikantenService {
|
|
|
10868
10923
|
request.fileType = "dhg";
|
|
10869
10924
|
request.model3D = true;
|
|
10870
10925
|
request.customBCBEBOId = custombcbeboid;
|
|
10926
|
+
if (this.StatisticsService.Active) {
|
|
10927
|
+
if (this.FabrikantenViewModel?.selectedProduct != null) {
|
|
10928
|
+
this.StatisticsService.DownloadFile(request.fileType, this.TranslateService.GetActiveValueProduct(this.FabrikantenViewModel.selectedProduct.id));
|
|
10929
|
+
}
|
|
10930
|
+
}
|
|
10871
10931
|
this.FabrikantenApiClient.getFabrikantenFileViewModel(request).subscribe((model) => {
|
|
10872
10932
|
this.StartDownload(model.file + "", ".dhg");
|
|
10873
10933
|
this.DownloadARKEYAdomiLoading = false;
|
|
@@ -10887,6 +10947,11 @@ class FabrikantenService {
|
|
|
10887
10947
|
request.fileType = "ifc";
|
|
10888
10948
|
request.model3D = true;
|
|
10889
10949
|
request.customBCBEBOId = custombcbeboid;
|
|
10950
|
+
if (this.StatisticsService.Active) {
|
|
10951
|
+
if (this.FabrikantenViewModel?.selectedProduct != null) {
|
|
10952
|
+
this.StatisticsService.DownloadFile(request.fileType, this.TranslateService.GetActiveValueProduct(this.FabrikantenViewModel.selectedProduct.id));
|
|
10953
|
+
}
|
|
10954
|
+
}
|
|
10890
10955
|
this.FabrikantenApiClient.getFabrikantenFileViewModel(request).subscribe((model) => {
|
|
10891
10956
|
this.StartDownload(model.file + "", ".ifc");
|
|
10892
10957
|
this.DownloadIFCLoading = false;
|
|
@@ -10906,6 +10971,11 @@ class FabrikantenService {
|
|
|
10906
10971
|
request.fileType = "hdhRevit";
|
|
10907
10972
|
request.model3D = true;
|
|
10908
10973
|
request.customBCBEBOId = custombcbeboid;
|
|
10974
|
+
if (this.StatisticsService.Active) {
|
|
10975
|
+
if (this.FabrikantenViewModel?.selectedProduct != null) {
|
|
10976
|
+
this.StatisticsService.DownloadFile(request.fileType, this.TranslateService.GetActiveValueProduct(this.FabrikantenViewModel.selectedProduct.id));
|
|
10977
|
+
}
|
|
10978
|
+
}
|
|
10909
10979
|
this.FabrikantenApiClient.getFabrikantenFileViewModel(request).subscribe((model) => {
|
|
10910
10980
|
window.location.href = model.file + "";
|
|
10911
10981
|
this.DownloadRevitPluginLoading = false;
|
|
@@ -10925,6 +10995,11 @@ class FabrikantenService {
|
|
|
10925
10995
|
request.fileType = "dwg";
|
|
10926
10996
|
request.model3D = true;
|
|
10927
10997
|
request.customBCBEBOId = custombcbeboid;
|
|
10998
|
+
if (this.StatisticsService.Active) {
|
|
10999
|
+
if (this.FabrikantenViewModel?.selectedProduct != null) {
|
|
11000
|
+
this.StatisticsService.DownloadFile(request.fileType, this.TranslateService.GetActiveValueProduct(this.FabrikantenViewModel.selectedProduct.id));
|
|
11001
|
+
}
|
|
11002
|
+
}
|
|
10928
11003
|
this.FabrikantenApiClient.getFabrikantenFileViewModel(request).subscribe((model) => {
|
|
10929
11004
|
this.StartDownload(model.file + "", ".dwg");
|
|
10930
11005
|
this.Download3DAutoCADDwgLoading = false;
|
|
@@ -10944,6 +11019,11 @@ class FabrikantenService {
|
|
|
10944
11019
|
request.fileType = "dxf";
|
|
10945
11020
|
request.model3D = true;
|
|
10946
11021
|
request.customBCBEBOId = custombcbeboid;
|
|
11022
|
+
if (this.StatisticsService.Active) {
|
|
11023
|
+
if (this.FabrikantenViewModel?.selectedProduct != null) {
|
|
11024
|
+
this.StatisticsService.DownloadFile(request.fileType, this.TranslateService.GetActiveValueProduct(this.FabrikantenViewModel.selectedProduct.id));
|
|
11025
|
+
}
|
|
11026
|
+
}
|
|
10947
11027
|
this.FabrikantenApiClient.getFabrikantenFileViewModel(request).subscribe((model) => {
|
|
10948
11028
|
this.StartDownload(model.file + "", ".dxf");
|
|
10949
11029
|
this.Download3DDxfLoading = false;
|
|
@@ -10963,6 +11043,11 @@ class FabrikantenService {
|
|
|
10963
11043
|
request.fileType = "dwg";
|
|
10964
11044
|
request.model3D = false;
|
|
10965
11045
|
request.customBCBEBOId = custombcbeboid;
|
|
11046
|
+
if (this.StatisticsService.Active) {
|
|
11047
|
+
if (this.FabrikantenViewModel?.selectedProduct != null) {
|
|
11048
|
+
this.StatisticsService.DownloadFile(request.fileType, this.TranslateService.GetActiveValueProduct(this.FabrikantenViewModel.selectedProduct.id));
|
|
11049
|
+
}
|
|
11050
|
+
}
|
|
10966
11051
|
this.FabrikantenApiClient.getFabrikantenFileViewModel(request).subscribe((model) => {
|
|
10967
11052
|
this.StartDownload(model.file + "", ".dwg");
|
|
10968
11053
|
this.Download2DAutoCADDwgLoading = false;
|
|
@@ -10982,6 +11067,11 @@ class FabrikantenService {
|
|
|
10982
11067
|
request.fileType = "dxf";
|
|
10983
11068
|
request.model3D = false;
|
|
10984
11069
|
request.customBCBEBOId = custombcbeboid;
|
|
11070
|
+
if (this.StatisticsService.Active) {
|
|
11071
|
+
if (this.FabrikantenViewModel?.selectedProduct != null) {
|
|
11072
|
+
this.StatisticsService.DownloadFile(request.fileType, this.TranslateService.GetActiveValueProduct(this.FabrikantenViewModel.selectedProduct.id));
|
|
11073
|
+
}
|
|
11074
|
+
}
|
|
10985
11075
|
this.FabrikantenApiClient.getFabrikantenFileViewModel(request).subscribe((model) => {
|
|
10986
11076
|
this.StartDownload(model.file + "", ".dxf");
|
|
10987
11077
|
this.Download2DDxfLoading = false;
|
|
@@ -11001,12 +11091,22 @@ class FabrikantenService {
|
|
|
11001
11091
|
request.fileType = "rfa";
|
|
11002
11092
|
request.model3D = false;
|
|
11003
11093
|
request.customBCBEBOId = custombcbeboid;
|
|
11094
|
+
if (this.StatisticsService.Active) {
|
|
11095
|
+
if (this.FabrikantenViewModel?.selectedProduct != null) {
|
|
11096
|
+
this.StatisticsService.DownloadFile(request.fileType, this.TranslateService.GetActiveValueProduct(this.FabrikantenViewModel.selectedProduct.id));
|
|
11097
|
+
}
|
|
11098
|
+
}
|
|
11004
11099
|
this.FabrikantenApiClient.getFabrikantenFileViewModel(request).subscribe((model) => {
|
|
11005
11100
|
if (model.customRFAZip) {
|
|
11006
11101
|
this.StartDownload(model.file + "", ".zip");
|
|
11007
11102
|
}
|
|
11008
11103
|
else {
|
|
11009
|
-
|
|
11104
|
+
if (model.rvtExtension) {
|
|
11105
|
+
this.StartDownload(model.file + "", ".rvt");
|
|
11106
|
+
}
|
|
11107
|
+
else {
|
|
11108
|
+
this.StartDownload(model.file + "", ".rfa");
|
|
11109
|
+
}
|
|
11010
11110
|
}
|
|
11011
11111
|
this.DownloadRFALoading = false;
|
|
11012
11112
|
}, (error) => {
|
|
@@ -11038,6 +11138,11 @@ class FabrikantenService {
|
|
|
11038
11138
|
if (this.BestekService.TypeBestek == "Vrij") {
|
|
11039
11139
|
this.DownloadBestekInner(data, ".txt");
|
|
11040
11140
|
}
|
|
11141
|
+
if (this.StatisticsService.Active) {
|
|
11142
|
+
if (this.FabrikantenViewModel?.selectedProduct != null) {
|
|
11143
|
+
this.StatisticsService.DownloadFile("bestek", this.TranslateService.GetActiveValueProduct(this.FabrikantenViewModel.selectedProduct.id));
|
|
11144
|
+
}
|
|
11145
|
+
}
|
|
11041
11146
|
}
|
|
11042
11147
|
DownloadBestekInner(data, extension) {
|
|
11043
11148
|
var c = document.createElement("a");
|
|
@@ -11144,12 +11249,12 @@ class FabrikantenService {
|
|
|
11144
11249
|
return toebehoren;
|
|
11145
11250
|
}
|
|
11146
11251
|
}
|
|
11147
|
-
FabrikantenService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: FabrikantenService, deps: [{ token: FabrikantenApiClient }, { token: BestekService }, { token: TranslateService }, { token: WebGLService }, { token: SVGService }, { token: TextureService }, { token: NavigateService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
11252
|
+
FabrikantenService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: FabrikantenService, deps: [{ token: FabrikantenApiClient }, { token: BestekService }, { token: TranslateService }, { token: WebGLService }, { token: SVGService }, { token: TextureService }, { token: NavigateService }, { token: StatisticsService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
11148
11253
|
FabrikantenService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: FabrikantenService, providedIn: 'root' });
|
|
11149
11254
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: FabrikantenService, decorators: [{
|
|
11150
11255
|
type: Injectable,
|
|
11151
11256
|
args: [{ providedIn: 'root' }]
|
|
11152
|
-
}], ctorParameters: function () { return [{ type: FabrikantenApiClient }, { type: BestekService }, { type: TranslateService }, { type: WebGLService }, { type: SVGService }, { type: TextureService }, { type: NavigateService }]; } });
|
|
11257
|
+
}], ctorParameters: function () { return [{ type: FabrikantenApiClient }, { type: BestekService }, { type: TranslateService }, { type: WebGLService }, { type: SVGService }, { type: TextureService }, { type: NavigateService }, { type: StatisticsService }]; } });
|
|
11153
11258
|
|
|
11154
11259
|
class FabFiltersComponent {
|
|
11155
11260
|
constructor(MobileService, FabrikantenService, BestekService, TranslateService, ActivatedRoute, ChangeDetectorRef) {
|
|
@@ -15532,7 +15637,7 @@ FabrikantenCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", v
|
|
|
15532
15637
|
ToebehorenService,
|
|
15533
15638
|
TextureService,
|
|
15534
15639
|
SVGService,
|
|
15535
|
-
|
|
15640
|
+
StatisticsService,
|
|
15536
15641
|
MobileService,
|
|
15537
15642
|
TranslateService,
|
|
15538
15643
|
FabrikantenService,
|
|
@@ -15548,8 +15653,7 @@ FabrikantenCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", v
|
|
|
15548
15653
|
ProductsApiClient,
|
|
15549
15654
|
ProjectSettingApiClient,
|
|
15550
15655
|
{ provide: HTTP_INTERCEPTORS, useClass: BasicAuthInterceptor, multi: true },
|
|
15551
|
-
{ provide: HTTP_INTERCEPTORS, useClass: ErrorInterceptor, multi: true }
|
|
15552
|
-
{ provide: 'googleTagManagerId', useValue: "G-XK4L5JFYTN" }
|
|
15656
|
+
{ provide: HTTP_INTERCEPTORS, useClass: ErrorInterceptor, multi: true }
|
|
15553
15657
|
], imports: [CommonModule,
|
|
15554
15658
|
HttpClientModule,
|
|
15555
15659
|
MatInputModule,
|
|
@@ -15575,7 +15679,6 @@ FabrikantenCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", v
|
|
|
15575
15679
|
MatProgressSpinnerModule,
|
|
15576
15680
|
MatSelectModule,
|
|
15577
15681
|
MatSnackBarModule,
|
|
15578
|
-
//GoogleTagManagerModule.forRoot(),
|
|
15579
15682
|
RouterModule.forRoot(routes, {
|
|
15580
15683
|
scrollPositionRestoration: 'enabled',
|
|
15581
15684
|
anchorScrolling: 'enabled',
|
|
@@ -15609,7 +15712,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImpor
|
|
|
15609
15712
|
MatProgressSpinnerModule,
|
|
15610
15713
|
MatSelectModule,
|
|
15611
15714
|
MatSnackBarModule,
|
|
15612
|
-
//GoogleTagManagerModule.forRoot(),
|
|
15613
15715
|
RouterModule.forRoot(routes, {
|
|
15614
15716
|
scrollPositionRestoration: 'enabled',
|
|
15615
15717
|
anchorScrolling: 'enabled',
|
|
@@ -15697,7 +15799,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImpor
|
|
|
15697
15799
|
ToebehorenService,
|
|
15698
15800
|
TextureService,
|
|
15699
15801
|
SVGService,
|
|
15700
|
-
|
|
15802
|
+
StatisticsService,
|
|
15701
15803
|
MobileService,
|
|
15702
15804
|
TranslateService,
|
|
15703
15805
|
FabrikantenService,
|
|
@@ -15713,8 +15815,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImpor
|
|
|
15713
15815
|
ProductsApiClient,
|
|
15714
15816
|
ProjectSettingApiClient,
|
|
15715
15817
|
{ provide: HTTP_INTERCEPTORS, useClass: BasicAuthInterceptor, multi: true },
|
|
15716
|
-
{ provide: HTTP_INTERCEPTORS, useClass: ErrorInterceptor, multi: true }
|
|
15717
|
-
{ provide: 'googleTagManagerId', useValue: "G-XK4L5JFYTN" }
|
|
15818
|
+
{ provide: HTTP_INTERCEPTORS, useClass: ErrorInterceptor, multi: true }
|
|
15718
15819
|
],
|
|
15719
15820
|
exports: [
|
|
15720
15821
|
FabFiltersComponent,
|