@memberjunction/ng-dashboards 2.117.0 → 2.118.0
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/dist/Testing/components/testing-analytics.component.d.ts +56 -0
- package/dist/Testing/components/testing-analytics.component.d.ts.map +1 -0
- package/dist/Testing/components/testing-analytics.component.js +746 -0
- package/dist/Testing/components/testing-analytics.component.js.map +1 -0
- package/dist/Testing/components/testing-execution.component.d.ts +59 -0
- package/dist/Testing/components/testing-execution.component.d.ts.map +1 -0
- package/dist/Testing/components/testing-execution.component.js +649 -0
- package/dist/Testing/components/testing-execution.component.js.map +1 -0
- package/dist/Testing/components/testing-feedback.component.d.ts +55 -0
- package/dist/Testing/components/testing-feedback.component.d.ts.map +1 -0
- package/dist/Testing/components/testing-feedback.component.js +789 -0
- package/dist/Testing/components/testing-feedback.component.js.map +1 -0
- package/dist/Testing/components/testing-overview.component.d.ts +30 -0
- package/dist/Testing/components/testing-overview.component.d.ts.map +1 -0
- package/dist/Testing/components/testing-overview.component.js +342 -0
- package/dist/Testing/components/testing-overview.component.js.map +1 -0
- package/dist/Testing/components/testing-version-comparison.component.d.ts +58 -0
- package/dist/Testing/components/testing-version-comparison.component.d.ts.map +1 -0
- package/dist/Testing/components/testing-version-comparison.component.js +801 -0
- package/dist/Testing/components/testing-version-comparison.component.js.map +1 -0
- package/dist/Testing/components/widgets/cost-display.component.d.ts +16 -0
- package/dist/Testing/components/widgets/cost-display.component.d.ts.map +1 -0
- package/dist/Testing/components/widgets/cost-display.component.js +88 -0
- package/dist/Testing/components/widgets/cost-display.component.js.map +1 -0
- package/dist/Testing/components/widgets/oracle-breakdown-table.component.d.ts +20 -0
- package/dist/Testing/components/widgets/oracle-breakdown-table.component.d.ts.map +1 -0
- package/dist/Testing/components/widgets/oracle-breakdown-table.component.js +280 -0
- package/dist/Testing/components/widgets/oracle-breakdown-table.component.js.map +1 -0
- package/dist/Testing/components/widgets/score-indicator.component.d.ts +13 -0
- package/dist/Testing/components/widgets/score-indicator.component.d.ts.map +1 -0
- package/dist/Testing/components/widgets/score-indicator.component.js +93 -0
- package/dist/Testing/components/widgets/score-indicator.component.js.map +1 -0
- package/dist/Testing/components/widgets/suite-tree.component.d.ts +28 -0
- package/dist/Testing/components/widgets/suite-tree.component.d.ts.map +1 -0
- package/dist/Testing/components/widgets/suite-tree.component.js +275 -0
- package/dist/Testing/components/widgets/suite-tree.component.js.map +1 -0
- package/dist/Testing/components/widgets/test-run-detail-panel.component.d.ts +34 -0
- package/dist/Testing/components/widgets/test-run-detail-panel.component.d.ts.map +1 -0
- package/dist/Testing/components/widgets/test-run-detail-panel.component.js +373 -0
- package/dist/Testing/components/widgets/test-run-detail-panel.component.js.map +1 -0
- package/dist/Testing/components/widgets/test-run-dialog.component.d.ts +63 -0
- package/dist/Testing/components/widgets/test-run-dialog.component.d.ts.map +1 -0
- package/dist/Testing/components/widgets/test-run-dialog.component.js +989 -0
- package/dist/Testing/components/widgets/test-run-dialog.component.js.map +1 -0
- package/dist/Testing/components/widgets/test-status-badge.component.d.ts +10 -0
- package/dist/Testing/components/widgets/test-status-badge.component.d.ts.map +1 -0
- package/dist/Testing/components/widgets/test-status-badge.component.js +68 -0
- package/dist/Testing/components/widgets/test-status-badge.component.js.map +1 -0
- package/dist/Testing/services/testing-instrumentation.service.d.ts +152 -0
- package/dist/Testing/services/testing-instrumentation.service.d.ts.map +1 -0
- package/dist/Testing/services/testing-instrumentation.service.js +579 -0
- package/dist/Testing/services/testing-instrumentation.service.js.map +1 -0
- package/dist/Testing/testing-dashboard.component.d.ts +52 -0
- package/dist/Testing/testing-dashboard.component.d.ts.map +1 -0
- package/dist/Testing/testing-dashboard.component.js +273 -0
- package/dist/Testing/testing-dashboard.component.js.map +1 -0
- package/dist/module.d.ts +33 -20
- package/dist/module.d.ts.map +1 -1
- package/dist/module.js +55 -6
- package/dist/module.js.map +1 -1
- package/dist/public-api.d.ts +1 -0
- package/dist/public-api.d.ts.map +1 -1
- package/dist/public-api.js +3 -0
- package/dist/public-api.js.map +1 -1
- package/package.json +12 -10
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { AfterViewInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { BaseDashboard } from '../generic/base-dashboard';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
interface TestingDashboardState {
|
|
5
|
+
activeTab: string;
|
|
6
|
+
overviewState: any;
|
|
7
|
+
executionState: any;
|
|
8
|
+
analyticsState: any;
|
|
9
|
+
versionState: any;
|
|
10
|
+
feedbackState: any;
|
|
11
|
+
}
|
|
12
|
+
export declare class TestingDashboardComponent extends BaseDashboard implements AfterViewInit, OnDestroy {
|
|
13
|
+
private cdr;
|
|
14
|
+
isLoading: boolean;
|
|
15
|
+
activeTab: string;
|
|
16
|
+
selectedIndex: number;
|
|
17
|
+
overviewState: any;
|
|
18
|
+
executionState: any;
|
|
19
|
+
analyticsState: any;
|
|
20
|
+
versionState: any;
|
|
21
|
+
feedbackState: any;
|
|
22
|
+
private visitedTabs;
|
|
23
|
+
navigationItems: string[];
|
|
24
|
+
navigationConfig: {
|
|
25
|
+
text: string;
|
|
26
|
+
icon: string;
|
|
27
|
+
selected: boolean;
|
|
28
|
+
}[];
|
|
29
|
+
private stateChangeSubject;
|
|
30
|
+
constructor(cdr: ChangeDetectorRef);
|
|
31
|
+
ngAfterViewInit(): void;
|
|
32
|
+
ngOnDestroy(): void;
|
|
33
|
+
onTabChange(tabId: string): void;
|
|
34
|
+
hasVisited(tabId: string): boolean;
|
|
35
|
+
private setupStateManagement;
|
|
36
|
+
private emitStateChange;
|
|
37
|
+
onOverviewStateChange(state: any): void;
|
|
38
|
+
onExecutionStateChange(state: any): void;
|
|
39
|
+
onAnalyticsStateChange(state: any): void;
|
|
40
|
+
onVersionStateChange(state: any): void;
|
|
41
|
+
onFeedbackStateChange(state: any): void;
|
|
42
|
+
loadUserState(state: Partial<TestingDashboardState>): void;
|
|
43
|
+
initDashboard(): void;
|
|
44
|
+
loadData(): void;
|
|
45
|
+
getCurrentTabLabel(): string;
|
|
46
|
+
private updateNavigationSelection;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TestingDashboardComponent, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestingDashboardComponent, "mj-testing-dashboard", never, {}, {}, never, never, false, never>;
|
|
49
|
+
}
|
|
50
|
+
export declare function LoadTestingDashboard(): void;
|
|
51
|
+
export {};
|
|
52
|
+
//# sourceMappingURL=testing-dashboard.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"testing-dashboard.component.d.ts","sourceRoot":"","sources":["../../src/Testing/testing-dashboard.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,aAAa,EAAE,SAAS,EAAE,iBAAiB,EAA2B,MAAM,eAAe,CAAC;AAChH,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;;AAK1D,UAAU,qBAAqB;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,GAAG,CAAC;IACnB,cAAc,EAAE,GAAG,CAAC;IACpB,cAAc,EAAE,GAAG,CAAC;IACpB,YAAY,EAAE,GAAG,CAAC;IAClB,aAAa,EAAE,GAAG,CAAC;CACpB;AAED,qBAOa,yBAA0B,SAAQ,aAAc,YAAW,aAAa,EAAE,SAAS;IA6BlF,OAAO,CAAC,GAAG;IA3BhB,SAAS,UAAS;IAClB,SAAS,SAAc;IACvB,aAAa,SAAK;IAGlB,aAAa,EAAE,GAAG,CAAQ;IAC1B,cAAc,EAAE,GAAG,CAAQ;IAC3B,cAAc,EAAE,GAAG,CAAQ;IAC3B,YAAY,EAAE,GAAG,CAAQ;IACzB,aAAa,EAAE,GAAG,CAAQ;IAGjC,OAAO,CAAC,WAAW,CAAqB;IAGjC,eAAe,EAAE,MAAM,EAAE,CAAiE;IAE1F,gBAAgB;;;;QAMrB;IAEF,OAAO,CAAC,kBAAkB,CAAwC;gBAE9C,GAAG,EAAE,iBAAiB;IAM1C,eAAe,IAAI,IAAI;IAOvB,WAAW,IAAI,IAAI;IAIZ,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAUhC,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO;IAIzC,OAAO,CAAC,oBAAoB;IAQ5B,OAAO,CAAC,eAAe;IAahB,qBAAqB,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAKvC,sBAAsB,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAKxC,sBAAsB,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAKxC,oBAAoB,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAKtC,qBAAqB,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAKvC,aAAa,CAAC,KAAK,EAAE,OAAO,CAAC,qBAAqB,CAAC,GAAG,IAAI;IAkBjE,aAAa,IAAI,IAAI;IAWrB,QAAQ,IAAI,IAAI;IAYT,kBAAkB,IAAI,MAAM;IAMnC,OAAO,CAAC,yBAAyB;yCAzJtB,yBAAyB;2CAAzB,yBAAyB;CA8JrC;AAED,wBAAgB,oBAAoB,SAEnC"}
|
|
@@ -0,0 +1,273 @@
|
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
import { Component, ChangeDetectionStrategy } from '@angular/core';
|
|
8
|
+
import { BaseDashboard } from '../generic/base-dashboard';
|
|
9
|
+
import { RegisterClass } from '@memberjunction/global';
|
|
10
|
+
import { Subject } from 'rxjs';
|
|
11
|
+
import { debounceTime } from 'rxjs/operators';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
13
|
+
import * as i1 from "@progress/kendo-angular-dialog";
|
|
14
|
+
import * as i2 from "./components/testing-overview.component";
|
|
15
|
+
import * as i3 from "./components/testing-execution.component";
|
|
16
|
+
import * as i4 from "./components/testing-analytics.component";
|
|
17
|
+
import * as i5 from "./components/testing-version-comparison.component";
|
|
18
|
+
import * as i6 from "./components/testing-feedback.component";
|
|
19
|
+
function TestingDashboardComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
20
|
+
i0.ɵɵelementStart(0, "div", 2)(1, "div", 4)(2, "div", 5);
|
|
21
|
+
i0.ɵɵelement(3, "div", 6)(4, "div", 6)(5, "div", 6);
|
|
22
|
+
i0.ɵɵelementEnd();
|
|
23
|
+
i0.ɵɵelementStart(6, "div", 7);
|
|
24
|
+
i0.ɵɵtext(7, "Loading Testing Dashboard...");
|
|
25
|
+
i0.ɵɵelementEnd()()();
|
|
26
|
+
} }
|
|
27
|
+
function TestingDashboardComponent_Conditional_3_For_3_Template(rf, ctx) { if (rf & 1) {
|
|
28
|
+
const _r1 = i0.ɵɵgetCurrentView();
|
|
29
|
+
i0.ɵɵelementStart(0, "div", 12);
|
|
30
|
+
i0.ɵɵlistener("click", function TestingDashboardComponent_Conditional_3_For_3_Template_div_click_0_listener() { const $index_r2 = i0.ɵɵrestoreView(_r1).$index; const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.onTabChange(ctx_r2.navigationItems[$index_r2])); });
|
|
31
|
+
i0.ɵɵelement(1, "i");
|
|
32
|
+
i0.ɵɵelementStart(2, "span");
|
|
33
|
+
i0.ɵɵtext(3);
|
|
34
|
+
i0.ɵɵelementEnd()();
|
|
35
|
+
} if (rf & 2) {
|
|
36
|
+
const navItem_r4 = ctx.$implicit;
|
|
37
|
+
i0.ɵɵclassProp("active", navItem_r4.selected);
|
|
38
|
+
i0.ɵɵadvance();
|
|
39
|
+
i0.ɵɵclassMap(navItem_r4.icon);
|
|
40
|
+
i0.ɵɵadvance(2);
|
|
41
|
+
i0.ɵɵtextInterpolate(navItem_r4.text);
|
|
42
|
+
} }
|
|
43
|
+
function TestingDashboardComponent_Conditional_3_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
44
|
+
const _r5 = i0.ɵɵgetCurrentView();
|
|
45
|
+
i0.ɵɵelementStart(0, "app-testing-overview", 13);
|
|
46
|
+
i0.ɵɵlistener("stateChange", function TestingDashboardComponent_Conditional_3_Conditional_5_Template_app_testing_overview_stateChange_0_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.onOverviewStateChange($event)); });
|
|
47
|
+
i0.ɵɵelementEnd();
|
|
48
|
+
} if (rf & 2) {
|
|
49
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
50
|
+
i0.ɵɵproperty("initialState", ctx_r2.overviewState);
|
|
51
|
+
} }
|
|
52
|
+
function TestingDashboardComponent_Conditional_3_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
53
|
+
const _r6 = i0.ɵɵgetCurrentView();
|
|
54
|
+
i0.ɵɵelementStart(0, "app-testing-execution", 13);
|
|
55
|
+
i0.ɵɵlistener("stateChange", function TestingDashboardComponent_Conditional_3_Conditional_6_Template_app_testing_execution_stateChange_0_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.onExecutionStateChange($event)); });
|
|
56
|
+
i0.ɵɵelementEnd();
|
|
57
|
+
} if (rf & 2) {
|
|
58
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
59
|
+
i0.ɵɵproperty("initialState", ctx_r2.executionState);
|
|
60
|
+
} }
|
|
61
|
+
function TestingDashboardComponent_Conditional_3_Conditional_7_Template(rf, ctx) { if (rf & 1) {
|
|
62
|
+
const _r7 = i0.ɵɵgetCurrentView();
|
|
63
|
+
i0.ɵɵelementStart(0, "app-testing-analytics", 13);
|
|
64
|
+
i0.ɵɵlistener("stateChange", function TestingDashboardComponent_Conditional_3_Conditional_7_Template_app_testing_analytics_stateChange_0_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.onAnalyticsStateChange($event)); });
|
|
65
|
+
i0.ɵɵelementEnd();
|
|
66
|
+
} if (rf & 2) {
|
|
67
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
68
|
+
i0.ɵɵproperty("initialState", ctx_r2.analyticsState);
|
|
69
|
+
} }
|
|
70
|
+
function TestingDashboardComponent_Conditional_3_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
71
|
+
const _r8 = i0.ɵɵgetCurrentView();
|
|
72
|
+
i0.ɵɵelementStart(0, "app-testing-version-comparison", 13);
|
|
73
|
+
i0.ɵɵlistener("stateChange", function TestingDashboardComponent_Conditional_3_Conditional_8_Template_app_testing_version_comparison_stateChange_0_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.onVersionStateChange($event)); });
|
|
74
|
+
i0.ɵɵelementEnd();
|
|
75
|
+
} if (rf & 2) {
|
|
76
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
77
|
+
i0.ɵɵproperty("initialState", ctx_r2.versionState);
|
|
78
|
+
} }
|
|
79
|
+
function TestingDashboardComponent_Conditional_3_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
80
|
+
const _r9 = i0.ɵɵgetCurrentView();
|
|
81
|
+
i0.ɵɵelementStart(0, "app-testing-feedback", 13);
|
|
82
|
+
i0.ɵɵlistener("stateChange", function TestingDashboardComponent_Conditional_3_Conditional_9_Template_app_testing_feedback_stateChange_0_listener($event) { i0.ɵɵrestoreView(_r9); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.onFeedbackStateChange($event)); });
|
|
83
|
+
i0.ɵɵelementEnd();
|
|
84
|
+
} if (rf & 2) {
|
|
85
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
86
|
+
i0.ɵɵproperty("initialState", ctx_r2.feedbackState);
|
|
87
|
+
} }
|
|
88
|
+
function TestingDashboardComponent_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
89
|
+
i0.ɵɵelementStart(0, "div", 3)(1, "div", 8);
|
|
90
|
+
i0.ɵɵrepeaterCreate(2, TestingDashboardComponent_Conditional_3_For_3_Template, 4, 5, "div", 9, i0.ɵɵrepeaterTrackByIndex);
|
|
91
|
+
i0.ɵɵelementEnd();
|
|
92
|
+
i0.ɵɵelementStart(4, "div", 10);
|
|
93
|
+
i0.ɵɵtemplate(5, TestingDashboardComponent_Conditional_3_Conditional_5_Template, 1, 1, "app-testing-overview", 11)(6, TestingDashboardComponent_Conditional_3_Conditional_6_Template, 1, 1, "app-testing-execution", 11)(7, TestingDashboardComponent_Conditional_3_Conditional_7_Template, 1, 1, "app-testing-analytics", 11)(8, TestingDashboardComponent_Conditional_3_Conditional_8_Template, 1, 1, "app-testing-version-comparison", 11)(9, TestingDashboardComponent_Conditional_3_Conditional_9_Template, 1, 1, "app-testing-feedback", 11);
|
|
94
|
+
i0.ɵɵelementEnd()();
|
|
95
|
+
} if (rf & 2) {
|
|
96
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
97
|
+
i0.ɵɵadvance(2);
|
|
98
|
+
i0.ɵɵrepeater(ctx_r2.navigationConfig);
|
|
99
|
+
i0.ɵɵadvance(3);
|
|
100
|
+
i0.ɵɵconditional(ctx_r2.activeTab === "overview" && ctx_r2.hasVisited("overview") ? 5 : -1);
|
|
101
|
+
i0.ɵɵadvance();
|
|
102
|
+
i0.ɵɵconditional(ctx_r2.activeTab === "execution" && ctx_r2.hasVisited("execution") ? 6 : -1);
|
|
103
|
+
i0.ɵɵadvance();
|
|
104
|
+
i0.ɵɵconditional(ctx_r2.activeTab === "analytics" && ctx_r2.hasVisited("analytics") ? 7 : -1);
|
|
105
|
+
i0.ɵɵadvance();
|
|
106
|
+
i0.ɵɵconditional(ctx_r2.activeTab === "version" && ctx_r2.hasVisited("version") ? 8 : -1);
|
|
107
|
+
i0.ɵɵadvance();
|
|
108
|
+
i0.ɵɵconditional(ctx_r2.activeTab === "feedback" && ctx_r2.hasVisited("feedback") ? 9 : -1);
|
|
109
|
+
} }
|
|
110
|
+
let TestingDashboardComponent = class TestingDashboardComponent extends BaseDashboard {
|
|
111
|
+
cdr;
|
|
112
|
+
isLoading = false;
|
|
113
|
+
activeTab = 'overview';
|
|
114
|
+
selectedIndex = 0;
|
|
115
|
+
// Component states
|
|
116
|
+
overviewState = null;
|
|
117
|
+
executionState = null;
|
|
118
|
+
analyticsState = null;
|
|
119
|
+
versionState = null;
|
|
120
|
+
feedbackState = null;
|
|
121
|
+
// Track visited tabs for lazy loading
|
|
122
|
+
visitedTabs = new Set();
|
|
123
|
+
// Navigation items
|
|
124
|
+
navigationItems = ['overview', 'execution', 'analytics', 'version', 'feedback'];
|
|
125
|
+
navigationConfig = [
|
|
126
|
+
{ text: 'Overview', icon: 'fa-solid fa-chart-line', selected: false },
|
|
127
|
+
{ text: 'Execution', icon: 'fa-solid fa-play-circle', selected: false },
|
|
128
|
+
{ text: 'Analytics', icon: 'fa-solid fa-chart-bar', selected: false },
|
|
129
|
+
{ text: 'Version', icon: 'fa-solid fa-code-compare', selected: false },
|
|
130
|
+
{ text: 'Feedback', icon: 'fa-solid fa-clipboard-check', selected: false }
|
|
131
|
+
];
|
|
132
|
+
stateChangeSubject = new Subject();
|
|
133
|
+
constructor(cdr) {
|
|
134
|
+
super();
|
|
135
|
+
this.cdr = cdr;
|
|
136
|
+
this.setupStateManagement();
|
|
137
|
+
this.updateNavigationSelection();
|
|
138
|
+
}
|
|
139
|
+
ngAfterViewInit() {
|
|
140
|
+
this.visitedTabs.add(this.activeTab);
|
|
141
|
+
this.updateNavigationSelection();
|
|
142
|
+
this.emitStateChange();
|
|
143
|
+
this.cdr.detectChanges();
|
|
144
|
+
}
|
|
145
|
+
ngOnDestroy() {
|
|
146
|
+
this.stateChangeSubject.complete();
|
|
147
|
+
}
|
|
148
|
+
onTabChange(tabId) {
|
|
149
|
+
this.activeTab = tabId;
|
|
150
|
+
const index = this.navigationItems.indexOf(tabId);
|
|
151
|
+
this.selectedIndex = index >= 0 ? index : 0;
|
|
152
|
+
this.updateNavigationSelection();
|
|
153
|
+
this.visitedTabs.add(tabId);
|
|
154
|
+
this.emitStateChange();
|
|
155
|
+
this.cdr.markForCheck();
|
|
156
|
+
}
|
|
157
|
+
hasVisited(tabId) {
|
|
158
|
+
return this.visitedTabs.has(tabId);
|
|
159
|
+
}
|
|
160
|
+
setupStateManagement() {
|
|
161
|
+
this.stateChangeSubject.pipe(debounceTime(50)).subscribe(state => {
|
|
162
|
+
this.UserStateChanged.emit(state);
|
|
163
|
+
});
|
|
164
|
+
}
|
|
165
|
+
emitStateChange() {
|
|
166
|
+
const state = {
|
|
167
|
+
activeTab: this.activeTab,
|
|
168
|
+
overviewState: this.overviewState || {},
|
|
169
|
+
executionState: this.executionState || {},
|
|
170
|
+
analyticsState: this.analyticsState || {},
|
|
171
|
+
versionState: this.versionState || {},
|
|
172
|
+
feedbackState: this.feedbackState || {}
|
|
173
|
+
};
|
|
174
|
+
this.stateChangeSubject.next(state);
|
|
175
|
+
}
|
|
176
|
+
onOverviewStateChange(state) {
|
|
177
|
+
this.overviewState = state;
|
|
178
|
+
this.emitStateChange();
|
|
179
|
+
}
|
|
180
|
+
onExecutionStateChange(state) {
|
|
181
|
+
this.executionState = state;
|
|
182
|
+
this.emitStateChange();
|
|
183
|
+
}
|
|
184
|
+
onAnalyticsStateChange(state) {
|
|
185
|
+
this.analyticsState = state;
|
|
186
|
+
this.emitStateChange();
|
|
187
|
+
}
|
|
188
|
+
onVersionStateChange(state) {
|
|
189
|
+
this.versionState = state;
|
|
190
|
+
this.emitStateChange();
|
|
191
|
+
}
|
|
192
|
+
onFeedbackStateChange(state) {
|
|
193
|
+
this.feedbackState = state;
|
|
194
|
+
this.emitStateChange();
|
|
195
|
+
}
|
|
196
|
+
loadUserState(state) {
|
|
197
|
+
if (state.activeTab) {
|
|
198
|
+
this.activeTab = state.activeTab;
|
|
199
|
+
const index = this.navigationItems.indexOf(state.activeTab);
|
|
200
|
+
this.selectedIndex = index >= 0 ? index : 0;
|
|
201
|
+
this.visitedTabs.add(state.activeTab);
|
|
202
|
+
this.updateNavigationSelection();
|
|
203
|
+
}
|
|
204
|
+
if (state.overviewState)
|
|
205
|
+
this.overviewState = state.overviewState;
|
|
206
|
+
if (state.executionState)
|
|
207
|
+
this.executionState = state.executionState;
|
|
208
|
+
if (state.analyticsState)
|
|
209
|
+
this.analyticsState = state.analyticsState;
|
|
210
|
+
if (state.versionState)
|
|
211
|
+
this.versionState = state.versionState;
|
|
212
|
+
if (state.feedbackState)
|
|
213
|
+
this.feedbackState = state.feedbackState;
|
|
214
|
+
this.cdr.markForCheck();
|
|
215
|
+
}
|
|
216
|
+
initDashboard() {
|
|
217
|
+
try {
|
|
218
|
+
this.isLoading = true;
|
|
219
|
+
}
|
|
220
|
+
catch (error) {
|
|
221
|
+
console.error('Error initializing Testing dashboard:', error);
|
|
222
|
+
this.Error.emit(new Error('Failed to initialize Testing dashboard. Please try again.'));
|
|
223
|
+
}
|
|
224
|
+
finally {
|
|
225
|
+
this.isLoading = false;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
loadData() {
|
|
229
|
+
if (this.Config?.userState) {
|
|
230
|
+
setTimeout(() => {
|
|
231
|
+
if (this.Config?.userState) {
|
|
232
|
+
this.loadUserState(this.Config.userState);
|
|
233
|
+
}
|
|
234
|
+
}, 0);
|
|
235
|
+
}
|
|
236
|
+
this.LoadingComplete.emit();
|
|
237
|
+
}
|
|
238
|
+
getCurrentTabLabel() {
|
|
239
|
+
const tabIndex = this.navigationItems.indexOf(this.activeTab);
|
|
240
|
+
const labels = ['Overview', 'Execution', 'Analytics', 'Version', 'Feedback'];
|
|
241
|
+
return tabIndex >= 0 ? labels[tabIndex] : 'Testing Dashboard';
|
|
242
|
+
}
|
|
243
|
+
updateNavigationSelection() {
|
|
244
|
+
this.navigationConfig.forEach((item, index) => {
|
|
245
|
+
item.selected = this.navigationItems[index] === this.activeTab;
|
|
246
|
+
});
|
|
247
|
+
}
|
|
248
|
+
static ɵfac = function TestingDashboardComponent_Factory(t) { return new (t || TestingDashboardComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); };
|
|
249
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TestingDashboardComponent, selectors: [["mj-testing-dashboard"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 4, vars: 2, consts: [[1, "testing-dashboard-container"], ["kendoDialogContainer", ""], [1, "loading-container"], [1, "dashboard-content-wrapper"], [1, "loading-content"], [1, "loading-spinner"], [1, "spinner-ring"], [1, "loading-text"], [1, "testing-dashboard-nav"], [1, "nav-item", 3, "active"], [1, "dashboard-content"], [3, "initialState"], [1, "nav-item", 3, "click"], [3, "stateChange", "initialState"]], template: function TestingDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
250
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
251
|
+
i0.ɵɵelement(1, "div", 1);
|
|
252
|
+
i0.ɵɵtemplate(2, TestingDashboardComponent_Conditional_2_Template, 8, 0, "div", 2)(3, TestingDashboardComponent_Conditional_3_Template, 10, 5, "div", 3);
|
|
253
|
+
i0.ɵɵelementEnd();
|
|
254
|
+
} if (rf & 2) {
|
|
255
|
+
i0.ɵɵadvance(2);
|
|
256
|
+
i0.ɵɵconditional(ctx.isLoading ? 2 : -1);
|
|
257
|
+
i0.ɵɵadvance();
|
|
258
|
+
i0.ɵɵconditional(!ctx.isLoading ? 3 : -1);
|
|
259
|
+
} }, dependencies: [i1.DialogContainerDirective, i2.TestingOverviewComponent, i3.TestingExecutionComponent, i4.TestingAnalyticsComponent, i5.TestingVersionComparisonComponent, i6.TestingFeedbackComponent], styles: [".testing-dashboard-container[_ngcontent-%COMP%] {\n height: 100%;\n background: #f5f7fa;\n position: relative;\n overflow: hidden;\n}\n\n.loading-container[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n justify-content: center;\n height: 100%;\n background: rgba(255, 255, 255, 0.9);\n}\n\n.loading-content[_ngcontent-%COMP%] {\n text-align: center;\n}\n\n.loading-spinner[_ngcontent-%COMP%] {\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n}\n\n.spinner-ring[_ngcontent-%COMP%] {\n box-sizing: border-box;\n display: block;\n position: absolute;\n width: 64px;\n height: 64px;\n margin: 8px;\n border: 8px solid #2196f3;\n border-radius: 50%;\n animation: _ngcontent-%COMP%_spinner-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;\n border-color: #2196f3 transparent transparent transparent;\n}\n\n.spinner-ring[_ngcontent-%COMP%]:nth-child(1) {\n animation-delay: -0.45s;\n}\n\n.spinner-ring[_ngcontent-%COMP%]:nth-child(2) {\n animation-delay: -0.3s;\n}\n\n.spinner-ring[_ngcontent-%COMP%]:nth-child(3) {\n animation-delay: -0.15s;\n}\n\n@keyframes _ngcontent-%COMP%_spinner-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n\n.loading-text[_ngcontent-%COMP%] {\n margin-top: 20px;\n font-size: 16px;\n color: #666;\n font-weight: 500;\n}\n\n.dashboard-content-wrapper[_ngcontent-%COMP%] {\n height: 100%;\n display: flex;\n flex-direction: column;\n}\n\n.dashboard-content[_ngcontent-%COMP%] {\n flex: 1;\n overflow: hidden;\n}\n\n.testing-dashboard-nav[_ngcontent-%COMP%] {\n display: flex;\n justify-content: flex-start;\n gap: 4px;\n background: white;\n border-bottom: 1px solid #e0e0e0;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);\n padding: 0;\n}\n\n.nav-item[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n gap: 8px;\n padding: 14px 20px;\n cursor: pointer;\n color: #666;\n transition: all 0.2s ease;\n border-bottom: 2px solid transparent;\n white-space: nowrap;\n position: relative;\n}\n\n.nav-item[_ngcontent-%COMP%]:hover {\n background: rgba(33, 150, 243, 0.05);\n color: #2196f3;\n}\n\n.nav-item.active[_ngcontent-%COMP%] {\n color: #2196f3;\n border-bottom-color: #2196f3;\n background: rgba(33, 150, 243, 0.08);\n}\n\n.nav-item[_ngcontent-%COMP%] i[_ngcontent-%COMP%] {\n font-size: 16px;\n}\n\n.nav-item[_ngcontent-%COMP%] span[_ngcontent-%COMP%] {\n font-size: 13px;\n font-weight: 500;\n}\n\n@media (max-width: 768px) {\n .nav-item[_ngcontent-%COMP%] span[_ngcontent-%COMP%] {\n font-size: 9px;\n }\n\n .nav-item[_ngcontent-%COMP%] i[_ngcontent-%COMP%] {\n font-size: 18px;\n }\n}"], changeDetection: 0 });
|
|
260
|
+
};
|
|
261
|
+
TestingDashboardComponent = __decorate([
|
|
262
|
+
RegisterClass(BaseDashboard, 'TestingDashboard')
|
|
263
|
+
], TestingDashboardComponent);
|
|
264
|
+
export { TestingDashboardComponent };
|
|
265
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TestingDashboardComponent, [{
|
|
266
|
+
type: Component,
|
|
267
|
+
args: [{ selector: 'mj-testing-dashboard', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"testing-dashboard-container\">\n <div kendoDialogContainer></div>\n\n @if (isLoading) {\n <div class=\"loading-container\">\n <div class=\"loading-content\">\n <div class=\"loading-spinner\">\n <div class=\"spinner-ring\"></div>\n <div class=\"spinner-ring\"></div>\n <div class=\"spinner-ring\"></div>\n </div>\n <div class=\"loading-text\">Loading Testing Dashboard...</div>\n </div>\n </div>\n }\n\n @if (!isLoading) {\n <div class=\"dashboard-content-wrapper\">\n <div class=\"testing-dashboard-nav\">\n @for (navItem of navigationConfig; track $index) {\n <div\n class=\"nav-item\"\n [class.active]=\"navItem.selected\"\n (click)=\"onTabChange(navigationItems[$index])\"\n >\n <i [class]=\"navItem.icon\"></i>\n <span>{{ navItem.text }}</span>\n </div>\n }\n </div>\n\n <div class=\"dashboard-content\">\n @if (activeTab === 'overview' && hasVisited('overview')) {\n <app-testing-overview\n [initialState]=\"overviewState\"\n (stateChange)=\"onOverviewStateChange($event)\"\n ></app-testing-overview>\n }\n\n @if (activeTab === 'execution' && hasVisited('execution')) {\n <app-testing-execution\n [initialState]=\"executionState\"\n (stateChange)=\"onExecutionStateChange($event)\"\n ></app-testing-execution>\n }\n\n @if (activeTab === 'analytics' && hasVisited('analytics')) {\n <app-testing-analytics\n [initialState]=\"analyticsState\"\n (stateChange)=\"onAnalyticsStateChange($event)\"\n ></app-testing-analytics>\n }\n\n @if (activeTab === 'version' && hasVisited('version')) {\n <app-testing-version-comparison\n [initialState]=\"versionState\"\n (stateChange)=\"onVersionStateChange($event)\"\n ></app-testing-version-comparison>\n }\n\n @if (activeTab === 'feedback' && hasVisited('feedback')) {\n <app-testing-feedback\n [initialState]=\"feedbackState\"\n (stateChange)=\"onFeedbackStateChange($event)\"\n ></app-testing-feedback>\n }\n </div>\n </div>\n }\n</div>\n", styles: [".testing-dashboard-container {\n height: 100%;\n background: #f5f7fa;\n position: relative;\n overflow: hidden;\n}\n\n.loading-container {\n display: flex;\n align-items: center;\n justify-content: center;\n height: 100%;\n background: rgba(255, 255, 255, 0.9);\n}\n\n.loading-content {\n text-align: center;\n}\n\n.loading-spinner {\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n}\n\n.spinner-ring {\n box-sizing: border-box;\n display: block;\n position: absolute;\n width: 64px;\n height: 64px;\n margin: 8px;\n border: 8px solid #2196f3;\n border-radius: 50%;\n animation: spinner-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;\n border-color: #2196f3 transparent transparent transparent;\n}\n\n.spinner-ring:nth-child(1) {\n animation-delay: -0.45s;\n}\n\n.spinner-ring:nth-child(2) {\n animation-delay: -0.3s;\n}\n\n.spinner-ring:nth-child(3) {\n animation-delay: -0.15s;\n}\n\n@keyframes spinner-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n\n.loading-text {\n margin-top: 20px;\n font-size: 16px;\n color: #666;\n font-weight: 500;\n}\n\n.dashboard-content-wrapper {\n height: 100%;\n display: flex;\n flex-direction: column;\n}\n\n.dashboard-content {\n flex: 1;\n overflow: hidden;\n}\n\n.testing-dashboard-nav {\n display: flex;\n justify-content: flex-start;\n gap: 4px;\n background: white;\n border-bottom: 1px solid #e0e0e0;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);\n padding: 0;\n}\n\n.nav-item {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n gap: 8px;\n padding: 14px 20px;\n cursor: pointer;\n color: #666;\n transition: all 0.2s ease;\n border-bottom: 2px solid transparent;\n white-space: nowrap;\n position: relative;\n}\n\n.nav-item:hover {\n background: rgba(33, 150, 243, 0.05);\n color: #2196f3;\n}\n\n.nav-item.active {\n color: #2196f3;\n border-bottom-color: #2196f3;\n background: rgba(33, 150, 243, 0.08);\n}\n\n.nav-item i {\n font-size: 16px;\n}\n\n.nav-item span {\n font-size: 13px;\n font-weight: 500;\n}\n\n@media (max-width: 768px) {\n .nav-item span {\n font-size: 9px;\n }\n\n .nav-item i {\n font-size: 18px;\n }\n}\n"] }]
|
|
268
|
+
}], () => [{ type: i0.ChangeDetectorRef }], null); })();
|
|
269
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(TestingDashboardComponent, { className: "TestingDashboardComponent", filePath: "src/Testing/testing-dashboard.component.ts", lineNumber: 23 }); })();
|
|
270
|
+
export function LoadTestingDashboard() {
|
|
271
|
+
// Prevents tree-shaking
|
|
272
|
+
}
|
|
273
|
+
//# sourceMappingURL=testing-dashboard.component.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"testing-dashboard.component.js","sourceRoot":"","sources":["../../src/Testing/testing-dashboard.component.ts","../../src/Testing/testing-dashboard.component.html"],"names":[],"mappings":"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"}
|
package/dist/module.d.ts
CHANGED
|
@@ -40,28 +40,41 @@ import * as i38 from "./Scheduling/components/scheduling-jobs.component";
|
|
|
40
40
|
import * as i39 from "./Scheduling/components/scheduling-history.component";
|
|
41
41
|
import * as i40 from "./Scheduling/components/scheduling-types.component";
|
|
42
42
|
import * as i41 from "./Scheduling/components/scheduling-health.component";
|
|
43
|
-
import * as i42 from "
|
|
44
|
-
import * as i43 from "
|
|
45
|
-
import * as i44 from "
|
|
46
|
-
import * as i45 from "
|
|
47
|
-
import * as i46 from "
|
|
48
|
-
import * as i47 from "
|
|
49
|
-
import * as i48 from "
|
|
50
|
-
import * as i49 from "
|
|
51
|
-
import * as i50 from "
|
|
52
|
-
import * as i51 from "
|
|
53
|
-
import * as i52 from "
|
|
54
|
-
import * as i53 from "
|
|
55
|
-
import * as i54 from "
|
|
56
|
-
import * as i55 from "@
|
|
57
|
-
import * as i56 from "@
|
|
58
|
-
import * as i57 from "@
|
|
59
|
-
import * as i58 from "@progress/kendo-angular-
|
|
60
|
-
import * as i59 from "@
|
|
61
|
-
import * as i60 from "@
|
|
43
|
+
import * as i42 from "./Testing/testing-dashboard.component";
|
|
44
|
+
import * as i43 from "./Testing/components/testing-overview.component";
|
|
45
|
+
import * as i44 from "./Testing/components/testing-execution.component";
|
|
46
|
+
import * as i45 from "./Testing/components/testing-analytics.component";
|
|
47
|
+
import * as i46 from "./Testing/components/testing-version-comparison.component";
|
|
48
|
+
import * as i47 from "./Testing/components/testing-feedback.component";
|
|
49
|
+
import * as i48 from "./Testing/components/widgets/test-status-badge.component";
|
|
50
|
+
import * as i49 from "./Testing/components/widgets/score-indicator.component";
|
|
51
|
+
import * as i50 from "./Testing/components/widgets/cost-display.component";
|
|
52
|
+
import * as i51 from "./Testing/components/widgets/suite-tree.component";
|
|
53
|
+
import * as i52 from "./Testing/components/widgets/oracle-breakdown-table.component";
|
|
54
|
+
import * as i53 from "./Testing/components/widgets/test-run-detail-panel.component";
|
|
55
|
+
import * as i54 from "./Testing/components/widgets/test-run-dialog.component";
|
|
56
|
+
import * as i55 from "@angular/common";
|
|
57
|
+
import * as i56 from "@angular/forms";
|
|
58
|
+
import * as i57 from "@progress/kendo-angular-indicators";
|
|
59
|
+
import * as i58 from "@progress/kendo-angular-dropdowns";
|
|
60
|
+
import * as i59 from "@progress/kendo-angular-inputs";
|
|
61
|
+
import * as i60 from "@progress/kendo-angular-dateinputs";
|
|
62
|
+
import * as i61 from "@progress/kendo-angular-layout";
|
|
63
|
+
import * as i62 from "@progress/kendo-angular-dialog";
|
|
64
|
+
import * as i63 from "@memberjunction/ng-container-directives";
|
|
65
|
+
import * as i64 from "@progress/kendo-angular-navigation";
|
|
66
|
+
import * as i65 from "@memberjunction/ng-code-editor";
|
|
67
|
+
import * as i66 from "@progress/kendo-angular-treeview";
|
|
68
|
+
import * as i67 from "@progress/kendo-angular-buttons";
|
|
69
|
+
import * as i68 from "@memberjunction/ng-action-gallery";
|
|
70
|
+
import * as i69 from "@memberjunction/ng-ai-test-harness";
|
|
71
|
+
import * as i70 from "@memberjunction/ng-core-entity-forms";
|
|
72
|
+
import * as i71 from "@progress/kendo-angular-grid";
|
|
73
|
+
import * as i72 from "@memberjunction/ng-react";
|
|
74
|
+
import * as i73 from "@memberjunction/ng-notifications";
|
|
62
75
|
export declare class DashboardsModule {
|
|
63
76
|
static ɵfac: i0.ɵɵFactoryDeclaration<DashboardsModule, never>;
|
|
64
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DashboardsModule, [typeof i1.EntityAdminDashboardComponent, typeof i2.ERDCompositeComponent, typeof i3.EntityFilterPanelComponent, typeof i4.EntityDetailsComponent, typeof i5.ERDDiagramComponent, typeof i6.AIDashboardComponent, typeof i7.ModelManagementV2Component, typeof i8.PromptManagementV2Component, typeof i9.PromptFilterPanelComponent, typeof i10.AgentConfigurationComponent, typeof i11.AgentFilterPanelComponent, typeof i12.AgentEditorComponent, typeof i13.ExecutionMonitoringComponent, typeof i14.SystemConfigurationComponent, typeof i15.SystemConfigFilterPanelComponent, typeof i16.ActionsManagementDashboardComponent, typeof i17.ActionsOverviewComponent, typeof i18.ExecutionMonitoringComponent, typeof i19.ScheduledActionsComponent, typeof i20.CodeManagementComponent, typeof i21.EntityIntegrationComponent, typeof i22.SecurityPermissionsComponent, typeof i23.ActionsListViewComponent, typeof i24.ExecutionsListViewComponent, typeof i25.CategoriesListViewComponent, typeof i26.ModelPromptPriorityMatrixComponent, typeof i27.PromptVersionControlComponent, typeof i28.KPICardComponent, typeof i29.LiveExecutionWidgetComponent, typeof i30.TimeSeriesChartComponent, typeof i31.PerformanceHeatmapComponent, typeof i32.ComponentStudioDashboardComponent, typeof i33.TextImportDialogComponent, typeof i34.ArtifactSelectionDialogComponent, typeof i35.ArtifactLoadDialogComponent, typeof i36.SchedulingDashboardComponent, typeof i37.SchedulingMonitoringComponent, typeof i38.SchedulingJobsComponent, typeof i39.SchedulingHistoryComponent, typeof i40.SchedulingTypesComponent, typeof i41.SchedulingHealthComponent], [typeof
|
|
77
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DashboardsModule, [typeof i1.EntityAdminDashboardComponent, typeof i2.ERDCompositeComponent, typeof i3.EntityFilterPanelComponent, typeof i4.EntityDetailsComponent, typeof i5.ERDDiagramComponent, typeof i6.AIDashboardComponent, typeof i7.ModelManagementV2Component, typeof i8.PromptManagementV2Component, typeof i9.PromptFilterPanelComponent, typeof i10.AgentConfigurationComponent, typeof i11.AgentFilterPanelComponent, typeof i12.AgentEditorComponent, typeof i13.ExecutionMonitoringComponent, typeof i14.SystemConfigurationComponent, typeof i15.SystemConfigFilterPanelComponent, typeof i16.ActionsManagementDashboardComponent, typeof i17.ActionsOverviewComponent, typeof i18.ExecutionMonitoringComponent, typeof i19.ScheduledActionsComponent, typeof i20.CodeManagementComponent, typeof i21.EntityIntegrationComponent, typeof i22.SecurityPermissionsComponent, typeof i23.ActionsListViewComponent, typeof i24.ExecutionsListViewComponent, typeof i25.CategoriesListViewComponent, typeof i26.ModelPromptPriorityMatrixComponent, typeof i27.PromptVersionControlComponent, typeof i28.KPICardComponent, typeof i29.LiveExecutionWidgetComponent, typeof i30.TimeSeriesChartComponent, typeof i31.PerformanceHeatmapComponent, typeof i32.ComponentStudioDashboardComponent, typeof i33.TextImportDialogComponent, typeof i34.ArtifactSelectionDialogComponent, typeof i35.ArtifactLoadDialogComponent, typeof i36.SchedulingDashboardComponent, typeof i37.SchedulingMonitoringComponent, typeof i38.SchedulingJobsComponent, typeof i39.SchedulingHistoryComponent, typeof i40.SchedulingTypesComponent, typeof i41.SchedulingHealthComponent, typeof i42.TestingDashboardComponent, typeof i43.TestingOverviewComponent, typeof i44.TestingExecutionComponent, typeof i45.TestingAnalyticsComponent, typeof i46.TestingVersionComparisonComponent, typeof i47.TestingFeedbackComponent, typeof i48.TestStatusBadgeComponent, typeof i49.ScoreIndicatorComponent, typeof i50.CostDisplayComponent, typeof i51.SuiteTreeComponent, typeof i51.SuiteTreeNodeComponent, typeof i52.OracleBreakdownTableComponent, typeof i53.TestRunDetailPanelComponent, typeof i54.TestRunDialogComponent], [typeof i55.CommonModule, typeof i56.FormsModule, typeof i57.IndicatorsModule, typeof i58.DropDownsModule, typeof i59.InputsModule, typeof i60.DateInputsModule, typeof i61.LayoutModule, typeof i62.DialogsModule, typeof i62.WindowModule, typeof i63.ContainerDirectivesModule, typeof i64.NavigationModule, typeof i65.CodeEditorModule, typeof i66.TreeViewModule, typeof i67.ButtonsModule, typeof i68.ActionGalleryModule, typeof i69.AITestHarnessModule, typeof i70.MemberJunctionCoreEntityFormsModule, typeof i71.GridModule, typeof i72.MJReactModule, typeof i61.SplitterModule, typeof i61.TabStripModule, typeof i61.PanelBarModule, typeof i73.MJNotificationsModule], [typeof i1.EntityAdminDashboardComponent, typeof i6.AIDashboardComponent, typeof i16.ActionsManagementDashboardComponent, typeof i32.ComponentStudioDashboardComponent, typeof i36.SchedulingDashboardComponent, typeof i42.TestingDashboardComponent]>;
|
|
65
78
|
static ɵinj: i0.ɵɵInjectorDeclaration<DashboardsModule>;
|
|
66
79
|
}
|
|
67
80
|
//# sourceMappingURL=module.d.ts.map
|
package/dist/module.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../src/module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../src/module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkFA,qBAqGa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAI"}
|
package/dist/module.js
CHANGED
|
@@ -65,13 +65,29 @@ import { SchedulingHistoryComponent } from './Scheduling/components/scheduling-h
|
|
|
65
65
|
import { SchedulingTypesComponent } from './Scheduling/components/scheduling-types.component';
|
|
66
66
|
import { SchedulingHealthComponent } from './Scheduling/components/scheduling-health.component';
|
|
67
67
|
import { SchedulingInstrumentationService } from './Scheduling/services/scheduling-instrumentation.service';
|
|
68
|
+
// Testing Dashboard Components
|
|
69
|
+
import { TestingDashboardComponent } from './Testing/testing-dashboard.component';
|
|
70
|
+
import { TestingOverviewComponent } from './Testing/components/testing-overview.component';
|
|
71
|
+
import { TestingExecutionComponent } from './Testing/components/testing-execution.component';
|
|
72
|
+
import { TestingAnalyticsComponent } from './Testing/components/testing-analytics.component';
|
|
73
|
+
import { TestingVersionComparisonComponent } from './Testing/components/testing-version-comparison.component';
|
|
74
|
+
import { TestingFeedbackComponent } from './Testing/components/testing-feedback.component';
|
|
75
|
+
import { TestStatusBadgeComponent } from './Testing/components/widgets/test-status-badge.component';
|
|
76
|
+
import { ScoreIndicatorComponent } from './Testing/components/widgets/score-indicator.component';
|
|
77
|
+
import { CostDisplayComponent } from './Testing/components/widgets/cost-display.component';
|
|
78
|
+
import { SuiteTreeComponent, SuiteTreeNodeComponent } from './Testing/components/widgets/suite-tree.component';
|
|
79
|
+
import { OracleBreakdownTableComponent } from './Testing/components/widgets/oracle-breakdown-table.component';
|
|
80
|
+
import { TestRunDetailPanelComponent } from './Testing/components/widgets/test-run-detail-panel.component';
|
|
81
|
+
import { TestRunDialogComponent } from './Testing/components/widgets/test-run-dialog.component';
|
|
82
|
+
import { TestingInstrumentationService } from './Testing/services/testing-instrumentation.service';
|
|
68
83
|
import * as i0 from "@angular/core";
|
|
69
84
|
export class DashboardsModule {
|
|
70
85
|
static ɵfac = function DashboardsModule_Factory(t) { return new (t || DashboardsModule)(); };
|
|
71
86
|
static ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: DashboardsModule });
|
|
72
87
|
static ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [
|
|
73
88
|
AIInstrumentationService,
|
|
74
|
-
SchedulingInstrumentationService
|
|
89
|
+
SchedulingInstrumentationService,
|
|
90
|
+
TestingInstrumentationService
|
|
75
91
|
], imports: [CommonModule,
|
|
76
92
|
FormsModule,
|
|
77
93
|
IndicatorsModule,
|
|
@@ -143,7 +159,22 @@ export class DashboardsModule {
|
|
|
143
159
|
SchedulingJobsComponent,
|
|
144
160
|
SchedulingHistoryComponent,
|
|
145
161
|
SchedulingTypesComponent,
|
|
146
|
-
SchedulingHealthComponent
|
|
162
|
+
SchedulingHealthComponent,
|
|
163
|
+
// Testing Dashboard Components
|
|
164
|
+
TestingDashboardComponent,
|
|
165
|
+
TestingOverviewComponent,
|
|
166
|
+
TestingExecutionComponent,
|
|
167
|
+
TestingAnalyticsComponent,
|
|
168
|
+
TestingVersionComparisonComponent,
|
|
169
|
+
TestingFeedbackComponent,
|
|
170
|
+
TestStatusBadgeComponent,
|
|
171
|
+
ScoreIndicatorComponent,
|
|
172
|
+
CostDisplayComponent,
|
|
173
|
+
SuiteTreeComponent,
|
|
174
|
+
SuiteTreeNodeComponent,
|
|
175
|
+
OracleBreakdownTableComponent,
|
|
176
|
+
TestRunDetailPanelComponent,
|
|
177
|
+
TestRunDialogComponent
|
|
147
178
|
],
|
|
148
179
|
imports: [
|
|
149
180
|
CommonModule,
|
|
@@ -172,14 +203,16 @@ export class DashboardsModule {
|
|
|
172
203
|
],
|
|
173
204
|
providers: [
|
|
174
205
|
AIInstrumentationService,
|
|
175
|
-
SchedulingInstrumentationService
|
|
206
|
+
SchedulingInstrumentationService,
|
|
207
|
+
TestingInstrumentationService
|
|
176
208
|
],
|
|
177
209
|
exports: [
|
|
178
210
|
EntityAdminDashboardComponent,
|
|
179
211
|
AIDashboardComponent,
|
|
180
212
|
ActionsManagementDashboardComponent,
|
|
181
213
|
ComponentStudioDashboardComponent,
|
|
182
|
-
SchedulingDashboardComponent
|
|
214
|
+
SchedulingDashboardComponent,
|
|
215
|
+
TestingDashboardComponent
|
|
183
216
|
]
|
|
184
217
|
}]
|
|
185
218
|
}], null, null); })();
|
|
@@ -226,7 +259,22 @@ export class DashboardsModule {
|
|
|
226
259
|
SchedulingJobsComponent,
|
|
227
260
|
SchedulingHistoryComponent,
|
|
228
261
|
SchedulingTypesComponent,
|
|
229
|
-
SchedulingHealthComponent
|
|
262
|
+
SchedulingHealthComponent,
|
|
263
|
+
// Testing Dashboard Components
|
|
264
|
+
TestingDashboardComponent,
|
|
265
|
+
TestingOverviewComponent,
|
|
266
|
+
TestingExecutionComponent,
|
|
267
|
+
TestingAnalyticsComponent,
|
|
268
|
+
TestingVersionComparisonComponent,
|
|
269
|
+
TestingFeedbackComponent,
|
|
270
|
+
TestStatusBadgeComponent,
|
|
271
|
+
ScoreIndicatorComponent,
|
|
272
|
+
CostDisplayComponent,
|
|
273
|
+
SuiteTreeComponent,
|
|
274
|
+
SuiteTreeNodeComponent,
|
|
275
|
+
OracleBreakdownTableComponent,
|
|
276
|
+
TestRunDetailPanelComponent,
|
|
277
|
+
TestRunDialogComponent], imports: [CommonModule,
|
|
230
278
|
FormsModule,
|
|
231
279
|
IndicatorsModule,
|
|
232
280
|
DropDownsModule,
|
|
@@ -252,5 +300,6 @@ export class DashboardsModule {
|
|
|
252
300
|
AIDashboardComponent,
|
|
253
301
|
ActionsManagementDashboardComponent,
|
|
254
302
|
ComponentStudioDashboardComponent,
|
|
255
|
-
SchedulingDashboardComponent
|
|
303
|
+
SchedulingDashboardComponent,
|
|
304
|
+
TestingDashboardComponent] }); })();
|
|
256
305
|
//# sourceMappingURL=module.js.map
|
package/dist/module.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.js","sourceRoot":"","sources":["../src/module.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"module.js","sourceRoot":"","sources":["../src/module.ts"],"names":[],"mappings":"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"}
|
package/dist/public-api.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export * from './AI/ai-dashboard.component';
|
|
|
4
4
|
export * from './Actions';
|
|
5
5
|
export * from './ComponentStudio';
|
|
6
6
|
export * from './Scheduling/scheduling-dashboard.component';
|
|
7
|
+
export * from './Testing/testing-dashboard.component';
|
|
7
8
|
export * from './Actions/index';
|
|
8
9
|
export * from './module';
|
|
9
10
|
//# sourceMappingURL=public-api.d.ts.map
|
package/dist/public-api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAYA,cAAc,0BAA0B,CAAC;AAGzC,cAAc,gDAAgD,CAAC;AAC/D,cAAc,6BAA6B,CAAC;AAC5C,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,6CAA6C,CAAC;AAC5D,cAAc,uCAAuC,CAAC;AAEtD,cAAc,iBAAiB,CAAC;AAGhC,cAAc,UAAU,CAAC"}
|
package/dist/public-api.js
CHANGED
|
@@ -6,6 +6,7 @@ import { LoadAIDashboard } from './AI/ai-dashboard.component';
|
|
|
6
6
|
import { LoadActionsManagementDashboard } from './Actions';
|
|
7
7
|
import { LoadComponentStudioDashboard } from './ComponentStudio/component-studio-dashboard.component';
|
|
8
8
|
import { LoadSchedulingDashboard } from './Scheduling/scheduling-dashboard.component';
|
|
9
|
+
import { LoadTestingDashboard } from './Testing/testing-dashboard.component';
|
|
9
10
|
// Base Dashboard
|
|
10
11
|
export * from './generic/base-dashboard';
|
|
11
12
|
// Dashboards
|
|
@@ -14,6 +15,7 @@ export * from './AI/ai-dashboard.component';
|
|
|
14
15
|
export * from './Actions';
|
|
15
16
|
export * from './ComponentStudio';
|
|
16
17
|
export * from './Scheduling/scheduling-dashboard.component';
|
|
18
|
+
export * from './Testing/testing-dashboard.component';
|
|
17
19
|
export * from './Actions/index';
|
|
18
20
|
// Module
|
|
19
21
|
export * from './module';
|
|
@@ -22,4 +24,5 @@ LoadAIDashboard(); // call tree shaking function to prevent tree shaking
|
|
|
22
24
|
LoadActionsManagementDashboard(); // call tree shaking function to prevent tree shaking
|
|
23
25
|
LoadComponentStudioDashboard(); // call tree shaking function to prevent tree shaking
|
|
24
26
|
LoadSchedulingDashboard(); // call tree shaking function to prevent tree shaking
|
|
27
|
+
LoadTestingDashboard(); // call tree shaking function to prevent tree shaking
|
|
25
28
|
//# sourceMappingURL=public-api.js.map
|
package/dist/public-api.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.js","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,wBAAwB,EAAE,MAAM,gDAAgD,CAAC;AAC1F,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAC9D,OAAO,EAAE,8BAA8B,EAAE,MAAM,WAAW,CAAC;AAC3D,OAAO,EAAE,4BAA4B,EAAE,MAAM,wDAAwD,CAAC;AACtG,OAAO,EAAE,uBAAuB,EAAE,MAAM,6CAA6C,CAAC;
|
|
1
|
+
{"version":3,"file":"public-api.js","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,wBAAwB,EAAE,MAAM,gDAAgD,CAAC;AAC1F,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAC9D,OAAO,EAAE,8BAA8B,EAAE,MAAM,WAAW,CAAC;AAC3D,OAAO,EAAE,4BAA4B,EAAE,MAAM,wDAAwD,CAAC;AACtG,OAAO,EAAE,uBAAuB,EAAE,MAAM,6CAA6C,CAAC;AACtF,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAE7E,iBAAiB;AACjB,cAAc,0BAA0B,CAAC;AAEzC,aAAa;AACb,cAAc,gDAAgD,CAAC;AAC/D,cAAc,6BAA6B,CAAC;AAC5C,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,6CAA6C,CAAC;AAC5D,cAAc,uCAAuC,CAAC;AAEtD,cAAc,iBAAiB,CAAC;AAEhC,SAAS;AACT,cAAc,UAAU,CAAC;AAEzB,wBAAwB,EAAE,CAAC,CAAC,qDAAqD;AACjF,eAAe,EAAE,CAAC,CAAC,qDAAqD;AACxE,8BAA8B,EAAE,CAAC,CAAC,qDAAqD;AACvF,4BAA4B,EAAE,CAAC,CAAC,qDAAqD;AACrF,uBAAuB,EAAE,CAAC,CAAC,qDAAqD;AAChF,oBAAoB,EAAE,CAAC,CAAC,qDAAqD"}
|