fabrikantencore 2.2.12 → 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 +63 -4
- 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/fesm2015/fabrikantencore.mjs +126 -23
- package/fesm2015/fabrikantencore.mjs.map +1 -1
- package/fesm2020/fabrikantencore.mjs +117 -23
- 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/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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fabrikantencore",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.13",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.3.0"
|
|
6
6
|
},
|
|
@@ -28,8 +28,7 @@
|
|
|
28
28
|
"ng-packagr": "^15.0.0",
|
|
29
29
|
"rxjs": "~7.5.0",
|
|
30
30
|
"typescript": "~4.8.4",
|
|
31
|
-
"zone.js": "~0.11.4"
|
|
32
|
-
"angular-google-tag-manager": "^1.7.0"
|
|
31
|
+
"zone.js": "~0.11.4"
|
|
33
32
|
},
|
|
34
33
|
"module": "fesm2015/fabrikantencore.mjs",
|
|
35
34
|
"es2020": "fesm2020/fabrikantencore.mjs",
|
|
@@ -3,6 +3,7 @@ import { ActivatedRoute } from '@angular/router';
|
|
|
3
3
|
import { FabrikantenApiClient, FabrikantenFilterViewModel, FabrikantenViewModel, FabrikantenProductViewModel, FabrikantenBCBProductViewModel, FabrikantenCategoryLayerViewModel, FabrikantenBCBProductToebehorenViewModel, FabrikantenCategoryViewModel, DynamicDisplayValueViewModel } from '../swagger/SwaggerClient';
|
|
4
4
|
import { BestekService } from './bestek.service';
|
|
5
5
|
import { NavigateService } from './navigate.service';
|
|
6
|
+
import { StatisticsService } from './statistics.service';
|
|
6
7
|
import { SVGService } from './svg.service';
|
|
7
8
|
import { TextureService } from './texture.service';
|
|
8
9
|
import { TranslateService } from './translate.service';
|
|
@@ -16,6 +17,7 @@ export declare class FabrikantenService {
|
|
|
16
17
|
private SVGService;
|
|
17
18
|
private TextureService;
|
|
18
19
|
private NavigateService;
|
|
20
|
+
private StatisticsService;
|
|
19
21
|
private Init;
|
|
20
22
|
Loading: boolean;
|
|
21
23
|
DownloadARKEYAdomiLoading: boolean;
|
|
@@ -31,7 +33,7 @@ export declare class FabrikantenService {
|
|
|
31
33
|
SelectedToebehoren: FabrikantenBCBProductToebehorenViewModel | null;
|
|
32
34
|
private SelectedTab;
|
|
33
35
|
Loaded: boolean;
|
|
34
|
-
constructor(FabrikantenApiClient: FabrikantenApiClient, BestekService: BestekService, TranslateService: TranslateService, WebGLService: WebGLService, SVGService: SVGService, TextureService: TextureService, NavigateService: NavigateService);
|
|
36
|
+
constructor(FabrikantenApiClient: FabrikantenApiClient, BestekService: BestekService, TranslateService: TranslateService, WebGLService: WebGLService, SVGService: SVGService, TextureService: TextureService, NavigateService: NavigateService, StatisticsService: StatisticsService);
|
|
35
37
|
ResetAllFilters(ChangeDetectorRef: ChangeDetectorRef): void;
|
|
36
38
|
SelectOption(filterid: number, filteroptionid: number, ChangeDetectorRef: ChangeDetectorRef): void;
|
|
37
39
|
SelectColour(filterid: number, colour: string, ChangeDetectorRef: ChangeDetectorRef): void;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { Router } from '@angular/router';
|
|
2
2
|
import { FabrikantenService } from './fabrikanten.service';
|
|
3
3
|
import { TranslateService } from './translate.service';
|
|
4
|
-
import {
|
|
4
|
+
import { StatisticsService } from './statistics.service';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class NavigateService {
|
|
7
7
|
private Router;
|
|
8
|
-
private
|
|
8
|
+
private StatisticsService;
|
|
9
9
|
FabrikantenService: FabrikantenService | null;
|
|
10
10
|
TranslateService: TranslateService | null;
|
|
11
|
-
constructor(Router: Router,
|
|
11
|
+
constructor(Router: Router, StatisticsService: StatisticsService);
|
|
12
12
|
RefreshPage(): void;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavigateService, never>;
|
|
14
14
|
static ɵprov: i0.ɵɵInjectableDeclaration<NavigateService>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class StatisticsService {
|
|
3
|
+
Active: boolean;
|
|
4
|
+
analytics: any;
|
|
5
|
+
AnalyticsCode: string;
|
|
6
|
+
private LastPageView;
|
|
7
|
+
constructor();
|
|
8
|
+
PageView(name: string): void;
|
|
9
|
+
SelectCategory(name: string): void;
|
|
10
|
+
SelectFilterOption(name: string): void;
|
|
11
|
+
SelectRangeValue(name: string): void;
|
|
12
|
+
SelectProduct(name: string): void;
|
|
13
|
+
DownloadFile(filetype: string, productname: string): void;
|
|
14
|
+
private Init;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StatisticsService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StatisticsService>;
|
|
17
|
+
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class GoogleAnalyticsService {
|
|
4
|
-
constructor() {
|
|
5
|
-
this.analytics = null;
|
|
6
|
-
}
|
|
7
|
-
PageView() {
|
|
8
|
-
//this.Init();
|
|
9
|
-
//this.analytics.page();
|
|
10
|
-
}
|
|
11
|
-
Init() {
|
|
12
|
-
//if (this.analytics == null) {
|
|
13
|
-
// this.analytics = Analytics({
|
|
14
|
-
// app: 'awesome-app',
|
|
15
|
-
// plugins: [
|
|
16
|
-
// googleTagManager({
|
|
17
|
-
// containerId: 'G-XK4L5JFYTN'
|
|
18
|
-
// })
|
|
19
|
-
// ]
|
|
20
|
-
// });
|
|
21
|
-
//}
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
GoogleAnalyticsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: GoogleAnalyticsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
25
|
-
GoogleAnalyticsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: GoogleAnalyticsService, providedIn: 'root' });
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: GoogleAnalyticsService, decorators: [{
|
|
27
|
-
type: Injectable,
|
|
28
|
-
args: [{
|
|
29
|
-
providedIn: 'root'
|
|
30
|
-
}]
|
|
31
|
-
}], ctorParameters: function () { return []; } });
|
|
32
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ29vZ2xlLmFuYWx5dGljcy5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2FwcC9tb2R1bGVzL2ZhYnJpa2FudGVuY29yZS9zZXJ2aWNlcy9nb29nbGUuYW5hbHl0aWNzLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFLM0MsTUFBTSxPQUFPLHNCQUFzQjtJQUlqQztRQUZPLGNBQVMsR0FBUSxJQUFJLENBQUM7SUFFYixDQUFDO0lBRVYsUUFBUTtRQUNiLGNBQWM7UUFFZCx3QkFBd0I7SUFDMUIsQ0FBQztJQUVPLElBQUk7UUFDViwrQkFBK0I7UUFDL0IsZ0NBQWdDO1FBQ2hDLHlCQUF5QjtRQUN6QixnQkFBZ0I7UUFDaEIsMEJBQTBCO1FBQzFCLHFDQUFxQztRQUNyQyxVQUFVO1FBQ1YsT0FBTztRQUNQLE9BQU87UUFDUCxHQUFHO0lBQ0wsQ0FBQzs7bUhBdkJVLHNCQUFzQjt1SEFBdEIsc0JBQXNCLGNBRnJCLE1BQU07MkZBRVAsc0JBQXNCO2tCQUhsQyxVQUFVO21CQUFDO29CQUNWLFVBQVUsRUFBRSxNQUFNO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCdcbn0pXG5leHBvcnQgY2xhc3MgR29vZ2xlQW5hbHl0aWNzU2VydmljZSB7XG5cbiAgcHVibGljIGFuYWx5dGljczogYW55ID0gbnVsbDtcblxuICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gIHB1YmxpYyBQYWdlVmlldygpOiB2b2lkIHtcbiAgICAvL3RoaXMuSW5pdCgpO1xuXG4gICAgLy90aGlzLmFuYWx5dGljcy5wYWdlKCk7XHJcbiAgfVxuXG4gIHByaXZhdGUgSW5pdCgpOiB2b2lkIHtcbiAgICAvL2lmICh0aGlzLmFuYWx5dGljcyA9PSBudWxsKSB7XG4gICAgLy8gIHRoaXMuYW5hbHl0aWNzID0gQW5hbHl0aWNzKHtcclxuICAgIC8vICAgIGFwcDogJ2F3ZXNvbWUtYXBwJyxcclxuICAgIC8vICAgIHBsdWdpbnM6IFtcclxuICAgIC8vICAgICAgZ29vZ2xlVGFnTWFuYWdlcih7XHJcbiAgICAvLyAgICAgICAgY29udGFpbmVySWQ6ICdHLVhLNEw1SkZZVE4nXHJcbiAgICAvLyAgICAgIH0pXHJcbiAgICAvLyAgICBdXHJcbiAgICAvLyAgfSk7XHJcbiAgICAvL31cclxuICB9XG59XG4iXX0=
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class GoogleAnalyticsService {
|
|
3
|
-
analytics: any;
|
|
4
|
-
constructor();
|
|
5
|
-
PageView(): void;
|
|
6
|
-
private Init;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleAnalyticsService, never>;
|
|
8
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<GoogleAnalyticsService>;
|
|
9
|
-
}
|