@memberjunction/ng-skip-chat 2.43.0 → 2.45.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/README.md +99 -7
- package/dist/lib/artifacts/skip-artifact-viewer.component.d.ts +33 -1
- package/dist/lib/artifacts/skip-artifact-viewer.component.d.ts.map +1 -1
- package/dist/lib/artifacts/skip-artifact-viewer.component.js +82 -86
- package/dist/lib/artifacts/skip-artifact-viewer.component.js.map +1 -1
- package/dist/lib/dynamic-report/base-report.d.ts.map +1 -1
- package/dist/lib/dynamic-report/base-report.js +2 -1
- package/dist/lib/dynamic-report/base-report.js.map +1 -1
- package/dist/lib/dynamic-report/dynamic-chart.d.ts.map +1 -1
- package/dist/lib/dynamic-report/dynamic-chart.js +5 -2
- package/dist/lib/dynamic-report/dynamic-chart.js.map +1 -1
- package/dist/lib/dynamic-report/dynamic-grid.d.ts.map +1 -1
- package/dist/lib/dynamic-report/dynamic-grid.js +6 -3
- package/dist/lib/dynamic-report/dynamic-grid.js.map +1 -1
- package/dist/lib/dynamic-report/dynamic-html-report.d.ts +90 -11
- package/dist/lib/dynamic-report/dynamic-html-report.d.ts.map +1 -1
- package/dist/lib/dynamic-report/dynamic-html-report.js +1001 -163
- package/dist/lib/dynamic-report/dynamic-html-report.js.map +1 -1
- package/dist/lib/dynamic-report/linear-report.d.ts +4 -0
- package/dist/lib/dynamic-report/linear-report.d.ts.map +1 -1
- package/dist/lib/dynamic-report/linear-report.js +78 -76
- package/dist/lib/dynamic-report/linear-report.js.map +1 -1
- package/dist/lib/dynamic-report/skip-react-component-host.d.ts +106 -0
- package/dist/lib/dynamic-report/skip-react-component-host.d.ts.map +1 -0
- package/dist/lib/dynamic-report/skip-react-component-host.js +450 -0
- package/dist/lib/dynamic-report/skip-react-component-host.js.map +1 -0
- package/dist/lib/skip-chat/skip-chat.component.d.ts +54 -0
- package/dist/lib/skip-chat/skip-chat.component.d.ts.map +1 -1
- package/dist/lib/skip-chat/skip-chat.component.js +107 -6
- package/dist/lib/skip-chat/skip-chat.component.js.map +1 -1
- package/dist/lib/split-panel/skip-split-panel.component.d.ts +18 -1
- package/dist/lib/split-panel/skip-split-panel.component.d.ts.map +1 -1
- package/dist/lib/split-panel/skip-split-panel.component.js +135 -8
- package/dist/lib/split-panel/skip-split-panel.component.js.map +1 -1
- package/package.json +17 -13
package/README.md
CHANGED
|
@@ -74,7 +74,6 @@ export class YourModule { }
|
|
|
74
74
|
import { Component, OnInit } from '@angular/core';
|
|
75
75
|
import { Router } from '@angular/router';
|
|
76
76
|
import { CompositeKey } from '@memberjunction/core';
|
|
77
|
-
import { ChatWelcomeQuestion } from '@memberjunction/ng-skip-chat';
|
|
78
77
|
import { MJNotificationService } from '@memberjunction/ng-notifications';
|
|
79
78
|
|
|
80
79
|
@Component({
|
|
@@ -284,6 +283,7 @@ The main component for the Skip chat interface.
|
|
|
284
283
|
- `SharingExcludeRoleNames`: string[] - Role names to exclude from sharing
|
|
285
284
|
- `SharingExcludeEmails`: string[] - User emails to exclude from sharing
|
|
286
285
|
- `WelcomeQuestions`: ChatWelcomeQuestion[] - Array of welcome questions/prompts
|
|
286
|
+
- Each ChatWelcomeQuestion has: `topLine` (main title), `bottomLine` (subtitle), `prompt` (actual message sent)
|
|
287
287
|
- `AutoLoad`: boolean - Whether to automatically load data (default: true)
|
|
288
288
|
- `VerboseLogging`: boolean - Whether to enable verbose logging (default: false)
|
|
289
289
|
- `EnableArtifactSplitView`: boolean - Whether to enable split-panel viewing for artifacts (default: true)
|
|
@@ -356,10 +356,52 @@ Component for managing the split-panel layout.
|
|
|
356
356
|
The package includes several components for rendering dynamic reports:
|
|
357
357
|
|
|
358
358
|
- `SkipDynamicReportWrapperComponent`: Main wrapper for reports
|
|
359
|
-
- `
|
|
360
|
-
- `
|
|
361
|
-
- `
|
|
362
|
-
- `
|
|
359
|
+
- `SkipDynamicLinearReportComponent`: For linear report layouts
|
|
360
|
+
- `SkipDynamicChartComponent`: For chart visualizations
|
|
361
|
+
- `SkipDynamicGridComponent`: For data grid displays
|
|
362
|
+
- `SkipDynamicHTMLReportComponent`: For HTML formatted reports
|
|
363
|
+
- `SkipArtifactsCounterComponent`: For displaying artifact count badges
|
|
364
|
+
|
|
365
|
+
### Utility Classes
|
|
366
|
+
|
|
367
|
+
#### DrillDownInfo
|
|
368
|
+
|
|
369
|
+
A utility class for managing drill-down operations within reports.
|
|
370
|
+
|
|
371
|
+
```typescript
|
|
372
|
+
import { DrillDownInfo } from '@memberjunction/ng-skip-chat';
|
|
373
|
+
|
|
374
|
+
const drillDown = new DrillDownInfo('Customers', 'Country = "USA"');
|
|
375
|
+
drillDown.BaseFilter = 'Active = 1'; // Optional base filter
|
|
376
|
+
|
|
377
|
+
// Get parameters for UserViewGrid
|
|
378
|
+
const gridParams = drillDown.UserViewGridParams;
|
|
379
|
+
// Returns: { EntityName: 'Customers', ExtraFilter: '(Country = "USA") AND (Active = 1)' }
|
|
380
|
+
```
|
|
381
|
+
|
|
382
|
+
#### SkipConversationReportCache
|
|
383
|
+
|
|
384
|
+
A singleton cache manager for conversation reports to minimize network requests.
|
|
385
|
+
|
|
386
|
+
```typescript
|
|
387
|
+
import { SkipConversationReportCache } from '@memberjunction/ng-skip-chat';
|
|
388
|
+
|
|
389
|
+
// Get reports for a conversation (cached after first load)
|
|
390
|
+
const reports = await SkipConversationReportCache.Instance.GetConversationReports(
|
|
391
|
+
conversationId,
|
|
392
|
+
provider, // optional IRunViewProvider
|
|
393
|
+
forceRefresh // optional boolean to force reload
|
|
394
|
+
);
|
|
395
|
+
|
|
396
|
+
// Add a new report to cache
|
|
397
|
+
SkipConversationReportCache.Instance.AddConversationReport(conversationId, reportEntity);
|
|
398
|
+
|
|
399
|
+
// Update existing report in cache
|
|
400
|
+
SkipConversationReportCache.Instance.UpdateConversationReport(conversationId, reportEntity);
|
|
401
|
+
|
|
402
|
+
// Remove report from cache
|
|
403
|
+
SkipConversationReportCache.Instance.RemoveConversationReport(conversationId, reportId);
|
|
404
|
+
```
|
|
363
405
|
|
|
364
406
|
## Conversation Flow
|
|
365
407
|
|
|
@@ -373,7 +415,45 @@ The package includes several components for rendering dynamic reports:
|
|
|
373
415
|
|
|
374
416
|
## Styling
|
|
375
417
|
|
|
376
|
-
The component includes extensive CSS styling that can be customized to match your application's design.
|
|
418
|
+
The component includes extensive CSS styling that can be customized to match your application's design. Key CSS classes include:
|
|
419
|
+
|
|
420
|
+
- `.skip-chat-container`: Main container for the entire component
|
|
421
|
+
- `.conversation-list`: Styles for the conversation list panel
|
|
422
|
+
- `.chat-messages`: Container for message display
|
|
423
|
+
- `.skip-message`: Individual message styling
|
|
424
|
+
- `.artifact-indicator`: Styling for artifact indicators in messages
|
|
425
|
+
- `.split-panel`: Split panel container styling
|
|
426
|
+
- `.welcome-screen`: Welcome screen with suggested prompts
|
|
427
|
+
|
|
428
|
+
## Module Configuration
|
|
429
|
+
|
|
430
|
+
When importing the SkipChatModule, ensure your application includes:
|
|
431
|
+
|
|
432
|
+
1. **Font Awesome**: Required for icons throughout the component
|
|
433
|
+
2. **Angular CDK**: Required for overlay functionality
|
|
434
|
+
3. **Kendo UI Theme**: Required for Kendo components (grid, dialogs, etc.)
|
|
435
|
+
|
|
436
|
+
```typescript
|
|
437
|
+
// In your app.module.ts or feature module
|
|
438
|
+
import { SkipChatModule } from '@memberjunction/ng-skip-chat';
|
|
439
|
+
import { MarkdownModule } from 'ngx-markdown';
|
|
440
|
+
|
|
441
|
+
@NgModule({
|
|
442
|
+
imports: [
|
|
443
|
+
SkipChatModule,
|
|
444
|
+
MarkdownModule.forRoot(), // Already included in SkipChatModule but needed at app level
|
|
445
|
+
// ... other imports
|
|
446
|
+
]
|
|
447
|
+
})
|
|
448
|
+
export class AppModule { }
|
|
449
|
+
```
|
|
450
|
+
|
|
451
|
+
## Build and Deployment Notes
|
|
452
|
+
|
|
453
|
+
- This package is built using Angular's ng-packagr
|
|
454
|
+
- Ensure all peer dependencies are installed at the correct versions
|
|
455
|
+
- The package uses TypeScript strict mode
|
|
456
|
+
- All Kendo UI components must have a valid license for production use
|
|
377
457
|
|
|
378
458
|
## Dependencies
|
|
379
459
|
|
|
@@ -388,4 +468,16 @@ The component includes extensive CSS styling that can be customized to match you
|
|
|
388
468
|
- `@progress/kendo-angular-listview`: For conversation list
|
|
389
469
|
- `@progress/kendo-angular-dialog`: For dialog components
|
|
390
470
|
- `ngx-markdown`: For markdown rendering
|
|
391
|
-
- `plotly.js-dist-min`: For chart rendering
|
|
471
|
+
- `plotly.js-dist-min`: For chart rendering
|
|
472
|
+
- `@angular/cdk`: For overlay functionality
|
|
473
|
+
|
|
474
|
+
## Version Compatibility
|
|
475
|
+
|
|
476
|
+
This package requires:
|
|
477
|
+
- Angular 18.0.2 or compatible version
|
|
478
|
+
- TypeScript 4.9 or higher
|
|
479
|
+
- Node.js 16 or higher
|
|
480
|
+
|
|
481
|
+
## License
|
|
482
|
+
|
|
483
|
+
This package is part of the MemberJunction framework. See the main repository for license information.
|
|
@@ -26,6 +26,21 @@ export declare class SkipArtifactViewerComponent extends BaseAngularComponent im
|
|
|
26
26
|
* This event fires whenever a drill down is requested within a given report.
|
|
27
27
|
*/
|
|
28
28
|
DrillDownEvent: EventEmitter<DrillDownInfo>;
|
|
29
|
+
/**
|
|
30
|
+
* Event that emits the artifact info for display in parent components
|
|
31
|
+
*/
|
|
32
|
+
ArtifactInfoChanged: EventEmitter<{
|
|
33
|
+
title: string;
|
|
34
|
+
type: string;
|
|
35
|
+
date: Date | null;
|
|
36
|
+
version: string;
|
|
37
|
+
versionList?: {
|
|
38
|
+
ID: string;
|
|
39
|
+
Version: string | number;
|
|
40
|
+
__mj_CreatedAt: Date;
|
|
41
|
+
}[] | undefined;
|
|
42
|
+
selectedVersionId?: string | undefined;
|
|
43
|
+
}>;
|
|
29
44
|
isLoading: boolean;
|
|
30
45
|
artifact: ConversationArtifactEntity | null;
|
|
31
46
|
artifactVersion: ConversationArtifactVersionEntity | null;
|
|
@@ -35,6 +50,7 @@ export declare class SkipArtifactViewerComponent extends BaseAngularComponent im
|
|
|
35
50
|
error: string | null;
|
|
36
51
|
artifactVersions: ConversationArtifactVersionEntity[];
|
|
37
52
|
selectedVersionId: string;
|
|
53
|
+
showVersionDropdown: boolean;
|
|
38
54
|
private reportComponentRef;
|
|
39
55
|
private conversationDetailRecord;
|
|
40
56
|
constructor(notificationService: MJNotificationService, componentFactoryResolver: ComponentFactoryResolver, cdRef: ChangeDetectorRef, injector: Injector);
|
|
@@ -72,8 +88,24 @@ export declare class SkipArtifactViewerComponent extends BaseAngularComponent im
|
|
|
72
88
|
get isMarkdown(): boolean;
|
|
73
89
|
get isCode(): boolean;
|
|
74
90
|
get isHtml(): boolean;
|
|
91
|
+
/**
|
|
92
|
+
* Toggles the version dropdown menu
|
|
93
|
+
*/
|
|
94
|
+
toggleVersionDropdown(): void;
|
|
95
|
+
/**
|
|
96
|
+
* Selects a version and closes the dropdown
|
|
97
|
+
*/
|
|
98
|
+
selectVersion(versionId: string): void;
|
|
99
|
+
/**
|
|
100
|
+
* Gets the current version number for display
|
|
101
|
+
*/
|
|
102
|
+
getCurrentVersionNumber(): string;
|
|
103
|
+
/**
|
|
104
|
+
* Emits the current artifact info to parent components
|
|
105
|
+
*/
|
|
106
|
+
private emitArtifactInfo;
|
|
75
107
|
get isPlainText(): boolean;
|
|
76
108
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkipArtifactViewerComponent, never>;
|
|
77
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkipArtifactViewerComponent, "skip-artifact-viewer", never, { "ArtifactID": { "alias": "ArtifactID"; "required": false; }; "ArtifactVersionID": { "alias": "ArtifactVersionID"; "required": false; }; "DataContext": { "alias": "DataContext"; "required": false; }; }, { "NavigateToMatchingReport": "NavigateToMatchingReport"; "NewReportCreated": "NewReportCreated"; "DrillDownEvent": "DrillDownEvent"; }, never, never, false, never>;
|
|
109
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkipArtifactViewerComponent, "skip-artifact-viewer", never, { "ArtifactID": { "alias": "ArtifactID"; "required": false; }; "ArtifactVersionID": { "alias": "ArtifactVersionID"; "required": false; }; "DataContext": { "alias": "DataContext"; "required": false; }; }, { "NavigateToMatchingReport": "NavigateToMatchingReport"; "NewReportCreated": "NewReportCreated"; "DrillDownEvent": "DrillDownEvent"; "ArtifactInfoChanged": "ArtifactInfoChanged"; }, never, never, false, never>;
|
|
78
110
|
}
|
|
79
111
|
//# sourceMappingURL=skip-artifact-viewer.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skip-artifact-viewer.component.d.ts","sourceRoot":"","sources":["../../../src/lib/artifacts/skip-artifact-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,SAAS,EAAE,aAAa,EAAa,gBAAgB,EAAgB,aAAa,EAAE,wBAAwB,EAAE,QAAQ,EAAU,YAAY,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAC1N,OAAO,EAAE,0BAA0B,EAAsB,iCAAiC,EAA4B,MAAM,+BAA+B,CAAC;AAE5J,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC3D,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AAErE,OAAO,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAC;AAGzE,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;;AAEnD,qBAKa,2BAA4B,SAAQ,oBAAqB,YAAW,MAAM,EAAE,SAAS,EAAE,aAAa;
|
|
1
|
+
{"version":3,"file":"skip-artifact-viewer.component.d.ts","sourceRoot":"","sources":["../../../src/lib/artifacts/skip-artifact-viewer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,SAAS,EAAE,aAAa,EAAa,gBAAgB,EAAgB,aAAa,EAAE,wBAAwB,EAAE,QAAQ,EAAU,YAAY,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAC1N,OAAO,EAAE,0BAA0B,EAAsB,iCAAiC,EAA4B,MAAM,+BAA+B,CAAC;AAE5J,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC3D,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AAErE,OAAO,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAC;AAGzE,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;;AAEnD,qBAKa,2BAA4B,SAAQ,oBAAqB,YAAW,MAAM,EAAE,SAAS,EAAE,aAAa;IAgD7G,OAAO,CAAC,mBAAmB;IAC3B,OAAO,CAAC,wBAAwB;IAChC,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,QAAQ;IAlDF,UAAU,EAAE,MAAM,CAAM;IACxB,iBAAiB,EAAE,MAAM,CAAM;IAC/B,WAAW,EAAE,WAAW,GAAG,IAAI,CAAQ;IAEkB,eAAe,EAAG,gBAAgB,CAAC;IAE5G;;OAEG;IACO,wBAAwB,uBAA8B;IAEhE;;OAEG;IACO,gBAAgB,uBAA8B;IAExD;;OAEG;IACO,cAAc,8BAAqC;IAE7D;;OAEG;IACO,mBAAmB;eACpB,MAAM;cACP,MAAM;cACN,IAAI,GAAG,IAAI;iBACR,MAAM;;gBACU,MAAM;qBAAW,MAAM,GAAG,MAAM;4BAAkB,IAAI;;;OAE5E;IAEE,SAAS,EAAE,OAAO,CAAS;IAC3B,QAAQ,EAAE,0BAA0B,GAAG,IAAI,CAAQ;IACnD,eAAe,EAAE,iCAAiC,GAAG,IAAI,CAAQ;IACjE,YAAY,EAAE,GAAG,CAAQ;IACzB,WAAW,EAAE,MAAM,CAAM;IACzB,cAAc,EAAE,GAAG,CAAQ;IAC3B,KAAK,EAAE,MAAM,GAAG,IAAI,CAAQ;IAC5B,gBAAgB,EAAE,iCAAiC,EAAE,CAAM;IAC3D,iBAAiB,EAAE,MAAM,CAAM;IAC/B,mBAAmB,EAAE,OAAO,CAAS;IAC5C,OAAO,CAAC,kBAAkB,CAAkC;IAC5D,OAAO,CAAC,wBAAwB,CAAyC;gBAG/D,mBAAmB,EAAE,qBAAqB,EAC1C,wBAAwB,EAAE,wBAAwB,EAClD,KAAK,EAAE,iBAAiB,EACxB,QAAQ,EAAE,QAAQ;IAI5B,QAAQ,IAAI,IAAI;IAMhB,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAOzC,eAAe,IAAI,IAAI;YAuBT,YAAY;IAsE1B;;OAEG;YACW,oBAAoB;IAgBlC;;OAEG;IACH,OAAO,CAAC,2BAA2B;IAUnC;;OAEG;IACU,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC;IA4C7C;;OAEG;YACW,qBAAqB;IA8FnC;;OAEG;YACW,sBAAsB;IAwBpC;;OAEG;IACH,OAAO,CAAC,sBAAsB;IAO9B,IAAW,aAAa,IAAI,MAAM,CAEjC;IAED,IAAW,gBAAgB,IAAI,MAAM,CAEpC;IAED,IAAW,MAAM,IAAI,OAAO,CAE3B;IAED,IAAW,UAAU,IAAI,OAAO,CAE/B;IAED,IAAW,MAAM,IAAI,OAAO,CAO3B;IAED,IAAW,MAAM,IAAI,OAAO,CAE3B;IAED;;OAEG;IACI,qBAAqB,IAAI,IAAI;IAIpC;;OAEG;IACI,aAAa,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI;IAM7C;;OAEG;IACI,uBAAuB,IAAI,MAAM;IAKxC;;OAEG;IACH,OAAO,CAAC,gBAAgB;IAiBxB,IAAW,WAAW,IAAI,OAAO,CAEhC;yCAjcU,2BAA2B;2CAA3B,2BAA2B;CAkcvC"}
|
|
@@ -14,60 +14,21 @@ import { SkipDynamicReportWrapperComponent } from '../dynamic-report/skip-dynami
|
|
|
14
14
|
import { SkipResponsePhase } from '@memberjunction/skip-types';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
import * as i1 from "@memberjunction/ng-notifications";
|
|
17
|
-
import * as i2 from "@angular
|
|
18
|
-
import * as i3 from "@
|
|
19
|
-
import * as i4 from "@progress/kendo-angular-label";
|
|
20
|
-
import * as i5 from "@angular/common";
|
|
17
|
+
import * as i2 from "@progress/kendo-angular-indicators";
|
|
18
|
+
import * as i3 from "@angular/common";
|
|
21
19
|
const _c0 = ["reportContainer"];
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
i0.ɵɵ
|
|
25
|
-
i0.ɵɵ
|
|
26
|
-
i0.ɵɵelementEnd()();
|
|
27
|
-
} if (rf & 2) {
|
|
28
|
-
const ctx_r0 = i0.ɵɵnextContext();
|
|
29
|
-
i0.ɵɵadvance(2);
|
|
30
|
-
i0.ɵɵtextInterpolate(ctx_r0.artifact.Description);
|
|
31
|
-
} }
|
|
32
|
-
function SkipArtifactViewerComponent_Conditional_8_For_5_Template(rf, ctx) { if (rf & 1) {
|
|
33
|
-
i0.ɵɵelementStart(0, "option", 14);
|
|
34
|
-
i0.ɵɵtext(1);
|
|
35
|
-
i0.ɵɵelementEnd();
|
|
36
|
-
} if (rf & 2) {
|
|
37
|
-
const version_r3 = ctx.$implicit;
|
|
38
|
-
i0.ɵɵproperty("value", version_r3.ID);
|
|
39
|
-
i0.ɵɵadvance();
|
|
40
|
-
i0.ɵɵtextInterpolate(version_r3.Version);
|
|
41
|
-
} }
|
|
42
|
-
function SkipArtifactViewerComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
43
|
-
const _r2 = i0.ɵɵgetCurrentView();
|
|
44
|
-
i0.ɵɵelementStart(0, "div", 7)(1, "label", 12);
|
|
45
|
-
i0.ɵɵtext(2, "Version:");
|
|
46
|
-
i0.ɵɵelementEnd();
|
|
47
|
-
i0.ɵɵelementStart(3, "select", 13);
|
|
48
|
-
i0.ɵɵtwoWayListener("ngModelChange", function SkipArtifactViewerComponent_Conditional_8_Template_select_ngModelChange_3_listener($event) { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(); i0.ɵɵtwoWayBindingSet(ctx_r0.selectedVersionId, $event) || (ctx_r0.selectedVersionId = $event); return i0.ɵɵresetView($event); });
|
|
49
|
-
i0.ɵɵlistener("change", function SkipArtifactViewerComponent_Conditional_8_Template_select_change_3_listener() { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.onVersionChange()); });
|
|
50
|
-
i0.ɵɵrepeaterCreate(4, SkipArtifactViewerComponent_Conditional_8_For_5_Template, 2, 2, "option", 14, _forTrack0);
|
|
51
|
-
i0.ɵɵelementEnd()();
|
|
52
|
-
} if (rf & 2) {
|
|
53
|
-
const ctx_r0 = i0.ɵɵnextContext();
|
|
54
|
-
i0.ɵɵadvance(3);
|
|
55
|
-
i0.ɵɵtwoWayProperty("ngModel", ctx_r0.selectedVersionId);
|
|
56
|
-
i0.ɵɵadvance();
|
|
57
|
-
i0.ɵɵrepeater(ctx_r0.artifactVersions);
|
|
58
|
-
} }
|
|
59
|
-
function SkipArtifactViewerComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
60
|
-
i0.ɵɵelementStart(0, "div", 9);
|
|
61
|
-
i0.ɵɵelement(1, "kendo-loader", 15);
|
|
62
|
-
i0.ɵɵelementStart(2, "div", 16);
|
|
20
|
+
function SkipArtifactViewerComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
21
|
+
i0.ɵɵelementStart(0, "div", 3);
|
|
22
|
+
i0.ɵɵelement(1, "kendo-loader", 6);
|
|
23
|
+
i0.ɵɵelementStart(2, "div", 7);
|
|
63
24
|
i0.ɵɵtext(3, "Loading artifact...");
|
|
64
25
|
i0.ɵɵelementEnd()();
|
|
65
26
|
} }
|
|
66
|
-
function
|
|
67
|
-
i0.ɵɵelementStart(0, "div",
|
|
68
|
-
i0.ɵɵelement(2, "i",
|
|
27
|
+
function SkipArtifactViewerComponent_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
28
|
+
i0.ɵɵelementStart(0, "div", 4)(1, "div", 8);
|
|
29
|
+
i0.ɵɵelement(2, "i", 9);
|
|
69
30
|
i0.ɵɵelementEnd();
|
|
70
|
-
i0.ɵɵelementStart(3, "div",
|
|
31
|
+
i0.ɵɵelementStart(3, "div", 10);
|
|
71
32
|
i0.ɵɵtext(4);
|
|
72
33
|
i0.ɵɵelementEnd()();
|
|
73
34
|
} if (rf & 2) {
|
|
@@ -75,19 +36,19 @@ function SkipArtifactViewerComponent_Conditional_11_Template(rf, ctx) { if (rf &
|
|
|
75
36
|
i0.ɵɵadvance(4);
|
|
76
37
|
i0.ɵɵtextInterpolate(ctx_r0.error);
|
|
77
38
|
} }
|
|
78
|
-
function
|
|
79
|
-
i0.ɵɵelementStart(0, "div",
|
|
80
|
-
i0.ɵɵelement(2, "i",
|
|
39
|
+
function SkipArtifactViewerComponent_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
40
|
+
i0.ɵɵelementStart(0, "div", 5)(1, "div", 11);
|
|
41
|
+
i0.ɵɵelement(2, "i", 12);
|
|
81
42
|
i0.ɵɵelementEnd();
|
|
82
|
-
i0.ɵɵelementStart(3, "div",
|
|
43
|
+
i0.ɵɵelementStart(3, "div", 13);
|
|
83
44
|
i0.ɵɵtext(4, "No artifact selected");
|
|
84
45
|
i0.ɵɵelementEnd()();
|
|
85
46
|
} }
|
|
86
|
-
function
|
|
87
|
-
i0.ɵɵelementStart(0, "div",
|
|
47
|
+
function SkipArtifactViewerComponent_Conditional_5_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
48
|
+
i0.ɵɵelementStart(0, "div", 16)(1, "span", 17);
|
|
88
49
|
i0.ɵɵtext(2, "Created:");
|
|
89
50
|
i0.ɵɵelementEnd();
|
|
90
|
-
i0.ɵɵelementStart(3, "span",
|
|
51
|
+
i0.ɵɵelementStart(3, "span", 18);
|
|
91
52
|
i0.ɵɵtext(4);
|
|
92
53
|
i0.ɵɵpipe(5, "date");
|
|
93
54
|
i0.ɵɵelementEnd()();
|
|
@@ -96,18 +57,18 @@ function SkipArtifactViewerComponent_Conditional_13_Conditional_2_Conditional_1_
|
|
|
96
57
|
i0.ɵɵadvance(4);
|
|
97
58
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(5, 1, ctx_r0.artifactVersion.__mj_CreatedAt, "medium"));
|
|
98
59
|
} }
|
|
99
|
-
function
|
|
100
|
-
i0.ɵɵelementStart(0, "div",
|
|
101
|
-
i0.ɵɵtemplate(1,
|
|
60
|
+
function SkipArtifactViewerComponent_Conditional_5_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
61
|
+
i0.ɵɵelementStart(0, "div", 15);
|
|
62
|
+
i0.ɵɵtemplate(1, SkipArtifactViewerComponent_Conditional_5_Conditional_2_Conditional_1_Template, 6, 4, "div", 16);
|
|
102
63
|
i0.ɵɵelementEnd();
|
|
103
64
|
} if (rf & 2) {
|
|
104
65
|
const ctx_r0 = i0.ɵɵnextContext(2);
|
|
105
66
|
i0.ɵɵadvance();
|
|
106
67
|
i0.ɵɵconditional(ctx_r0.artifactVersion.__mj_CreatedAt ? 1 : -1);
|
|
107
68
|
} }
|
|
108
|
-
function
|
|
109
|
-
i0.ɵɵelement(0, "div",
|
|
110
|
-
i0.ɵɵtemplate(2,
|
|
69
|
+
function SkipArtifactViewerComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
70
|
+
i0.ɵɵelement(0, "div", 14, 0);
|
|
71
|
+
i0.ɵɵtemplate(2, SkipArtifactViewerComponent_Conditional_5_Conditional_2_Template, 2, 1, "div", 15);
|
|
111
72
|
} if (rf & 2) {
|
|
112
73
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
113
74
|
i0.ɵɵadvance(2);
|
|
@@ -135,6 +96,10 @@ export class SkipArtifactViewerComponent extends BaseAngularComponent {
|
|
|
135
96
|
* This event fires whenever a drill down is requested within a given report.
|
|
136
97
|
*/
|
|
137
98
|
this.DrillDownEvent = new EventEmitter();
|
|
99
|
+
/**
|
|
100
|
+
* Event that emits the artifact info for display in parent components
|
|
101
|
+
*/
|
|
102
|
+
this.ArtifactInfoChanged = new EventEmitter();
|
|
138
103
|
this.isLoading = false;
|
|
139
104
|
this.artifact = null;
|
|
140
105
|
this.artifactVersion = null;
|
|
@@ -144,6 +109,7 @@ export class SkipArtifactViewerComponent extends BaseAngularComponent {
|
|
|
144
109
|
this.error = null;
|
|
145
110
|
this.artifactVersions = [];
|
|
146
111
|
this.selectedVersionId = '';
|
|
112
|
+
this.showVersionDropdown = false;
|
|
147
113
|
this.reportComponentRef = null;
|
|
148
114
|
this.conversationDetailRecord = null;
|
|
149
115
|
}
|
|
@@ -218,6 +184,8 @@ export class SkipArtifactViewerComponent extends BaseAngularComponent {
|
|
|
218
184
|
else {
|
|
219
185
|
throw new Error('No artifact versions found');
|
|
220
186
|
}
|
|
187
|
+
// Emit artifact info for parent components
|
|
188
|
+
this.emitArtifactInfo();
|
|
221
189
|
// Create the report component after a short delay to ensure Angular has time to initialize the view
|
|
222
190
|
this.isLoading = false;
|
|
223
191
|
this.cdRef.detectChanges(); // Trigger change detection to update the view
|
|
@@ -286,6 +254,8 @@ export class SkipArtifactViewerComponent extends BaseAngularComponent {
|
|
|
286
254
|
this.destroyReportComponent();
|
|
287
255
|
// Load the selected version
|
|
288
256
|
this.loadSpecificArtifactVersion(this.selectedVersionId);
|
|
257
|
+
// Emit updated artifact info
|
|
258
|
+
this.emitArtifactInfo();
|
|
289
259
|
this.isLoading = false;
|
|
290
260
|
this.cdRef.detectChanges(); // Trigger change detection to update the view
|
|
291
261
|
// Wait for the next Angular cycle and ensure reportContainer is available
|
|
@@ -461,6 +431,48 @@ export class SkipArtifactViewerComponent extends BaseAngularComponent {
|
|
|
461
431
|
get isHtml() {
|
|
462
432
|
return this.contentType.includes('html');
|
|
463
433
|
}
|
|
434
|
+
/**
|
|
435
|
+
* Toggles the version dropdown menu
|
|
436
|
+
*/
|
|
437
|
+
toggleVersionDropdown() {
|
|
438
|
+
this.showVersionDropdown = !this.showVersionDropdown;
|
|
439
|
+
}
|
|
440
|
+
/**
|
|
441
|
+
* Selects a version and closes the dropdown
|
|
442
|
+
*/
|
|
443
|
+
selectVersion(versionId) {
|
|
444
|
+
this.selectedVersionId = versionId;
|
|
445
|
+
this.showVersionDropdown = false;
|
|
446
|
+
this.onVersionChange();
|
|
447
|
+
}
|
|
448
|
+
/**
|
|
449
|
+
* Gets the current version number for display
|
|
450
|
+
*/
|
|
451
|
+
getCurrentVersionNumber() {
|
|
452
|
+
if (!this.artifactVersion)
|
|
453
|
+
return '1';
|
|
454
|
+
return String(this.artifactVersion.Version || '1');
|
|
455
|
+
}
|
|
456
|
+
/**
|
|
457
|
+
* Emits the current artifact info to parent components
|
|
458
|
+
*/
|
|
459
|
+
emitArtifactInfo() {
|
|
460
|
+
var _a, _b;
|
|
461
|
+
if (this.artifact) {
|
|
462
|
+
this.ArtifactInfoChanged.emit({
|
|
463
|
+
title: this.artifactTitle,
|
|
464
|
+
type: this.artifactTypeName,
|
|
465
|
+
date: ((_a = this.artifactVersion) === null || _a === void 0 ? void 0 : _a.__mj_CreatedAt) || null,
|
|
466
|
+
version: this.getCurrentVersionNumber(),
|
|
467
|
+
versionList: this.artifactVersions.map(v => ({
|
|
468
|
+
ID: v.ID,
|
|
469
|
+
Version: v.Version,
|
|
470
|
+
__mj_CreatedAt: v.__mj_CreatedAt
|
|
471
|
+
})),
|
|
472
|
+
selectedVersionId: ((_b = this.artifactVersion) === null || _b === void 0 ? void 0 : _b.ID) || ''
|
|
473
|
+
});
|
|
474
|
+
}
|
|
475
|
+
}
|
|
464
476
|
get isPlainText() {
|
|
465
477
|
return this.contentType.includes('text/plain');
|
|
466
478
|
}
|
|
@@ -471,35 +483,17 @@ SkipArtifactViewerComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type:
|
|
|
471
483
|
} if (rf & 2) {
|
|
472
484
|
let _t;
|
|
473
485
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.reportContainer = _t.first);
|
|
474
|
-
} }, inputs: { ArtifactID: "ArtifactID", ArtifactVersionID: "ArtifactVersionID", DataContext: "DataContext" }, outputs: { NavigateToMatchingReport: "NavigateToMatchingReport", NewReportCreated: "NewReportCreated", DrillDownEvent: "DrillDownEvent" }, features: [i0.ɵɵInheritDefinitionFeature, i0.ɵɵNgOnChangesFeature], decls:
|
|
475
|
-
i0.ɵɵelementStart(0, "div", 1)(1, "div", 2)
|
|
476
|
-
i0.ɵɵ
|
|
477
|
-
i0.ɵɵelementEnd();
|
|
478
|
-
i0.ɵɵelementStart(5, "span", 5);
|
|
479
|
-
i0.ɵɵtext(6);
|
|
480
|
-
i0.ɵɵelementEnd();
|
|
481
|
-
i0.ɵɵtemplate(7, SkipArtifactViewerComponent_Conditional_7_Template, 3, 1, "div", 6);
|
|
482
|
-
i0.ɵɵelementEnd();
|
|
483
|
-
i0.ɵɵtemplate(8, SkipArtifactViewerComponent_Conditional_8_Template, 6, 1, "div", 7);
|
|
484
|
-
i0.ɵɵelementEnd();
|
|
485
|
-
i0.ɵɵelementStart(9, "div", 8);
|
|
486
|
-
i0.ɵɵtemplate(10, SkipArtifactViewerComponent_Conditional_10_Template, 4, 0, "div", 9)(11, SkipArtifactViewerComponent_Conditional_11_Template, 5, 1, "div", 10)(12, SkipArtifactViewerComponent_Conditional_12_Template, 5, 0, "div", 11)(13, SkipArtifactViewerComponent_Conditional_13_Template, 3, 1);
|
|
486
|
+
} }, inputs: { ArtifactID: "ArtifactID", ArtifactVersionID: "ArtifactVersionID", DataContext: "DataContext" }, outputs: { NavigateToMatchingReport: "NavigateToMatchingReport", NewReportCreated: "NewReportCreated", DrillDownEvent: "DrillDownEvent", ArtifactInfoChanged: "ArtifactInfoChanged" }, features: [i0.ɵɵInheritDefinitionFeature, i0.ɵɵNgOnChangesFeature], decls: 6, vars: 1, consts: [["reportContainer", ""], [1, "skip-artifact-viewer-container"], [1, "skip-artifact-viewer-content"], [1, "loading-container"], [1, "error-container"], [1, "empty-state"], ["size", "large"], [1, "loading-text"], [1, "error-icon"], [1, "fa-solid", "fa-exclamation-circle"], [1, "error-message"], [1, "empty-icon"], [1, "fa-solid", "fa-file-alt"], [1, "empty-message"], [1, "report-container"], [1, "artifact-metadata"], [1, "metadata-item"], [1, "metadata-label"], [1, "metadata-value"]], template: function SkipArtifactViewerComponent_Template(rf, ctx) { if (rf & 1) {
|
|
487
|
+
i0.ɵɵelementStart(0, "div", 1)(1, "div", 2);
|
|
488
|
+
i0.ɵɵtemplate(2, SkipArtifactViewerComponent_Conditional_2_Template, 4, 0, "div", 3)(3, SkipArtifactViewerComponent_Conditional_3_Template, 5, 1, "div", 4)(4, SkipArtifactViewerComponent_Conditional_4_Template, 5, 0, "div", 5)(5, SkipArtifactViewerComponent_Conditional_5_Template, 3, 1);
|
|
487
489
|
i0.ɵɵelementEnd()();
|
|
488
490
|
} if (rf & 2) {
|
|
489
|
-
i0.ɵɵadvance(4);
|
|
490
|
-
i0.ɵɵtextInterpolate(ctx.artifactTitle);
|
|
491
491
|
i0.ɵɵadvance(2);
|
|
492
|
-
i0.ɵɵ
|
|
493
|
-
|
|
494
|
-
i0.ɵɵconditional((ctx.artifact == null ? null : ctx.artifact.Description) ? 7 : -1);
|
|
495
|
-
i0.ɵɵadvance();
|
|
496
|
-
i0.ɵɵconditional(ctx.artifactVersions && ctx.artifactVersions.length > 0 ? 8 : -1);
|
|
497
|
-
i0.ɵɵadvance(2);
|
|
498
|
-
i0.ɵɵconditional(ctx.isLoading ? 10 : ctx.error ? 11 : !ctx.artifact ? 12 : 13);
|
|
499
|
-
} }, dependencies: [i2.NgSelectOption, i2.ɵNgSelectMultipleOption, i2.SelectControlValueAccessor, i2.NgControlStatus, i2.NgModel, i3.LoaderComponent, i4.LabelDirective, i5.DatePipe], styles: [".skip-artifact-viewer-container[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n height: 100%;\n overflow: hidden;\n}\n\n.skip-artifact-viewer-header[_ngcontent-%COMP%] {\n padding: 12px 16px;\n border-bottom: 1px solid #eee;\n background-color: #fafafa;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.version-selector[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n\n.version-selector[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n font-size: 13px;\n color: #555;\n}\n\n.version-selector[_ngcontent-%COMP%] select[_ngcontent-%COMP%] {\n padding: 4px 8px;\n border-radius: 4px;\n border: 1px solid #ccc;\n background-color: white;\n font-size: 13px;\n}\n\n.report-container[_ngcontent-%COMP%] {\n margin-top: 16px;\n width: 100%;\n}\n\n.artifact-info[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n}\n\n.artifact-title[_ngcontent-%COMP%] {\n margin: 0 0 4px 0;\n font-size: 16px;\n font-weight: 600;\n color: #333;\n}\n\n.artifact-type[_ngcontent-%COMP%] {\n font-size: 12px;\n color: #666;\n}\n\n.skip-artifact-viewer-content[_ngcontent-%COMP%] {\n flex: 1;\n overflow: auto;\n padding: 16px;\n}\n\n.content-container[_ngcontent-%COMP%] {\n margin-bottom: 16px;\n background-color: #fff;\n border-radius: 6px;\n border: 1px solid #eee;\n overflow: auto;\n}\n\n.markdown-content[_ngcontent-%COMP%] {\n padding: 16px;\n}\n\n.code-content[_ngcontent-%COMP%], .json-content[_ngcontent-%COMP%] {\n padding: 0;\n}\n\n.code-content[_ngcontent-%COMP%] pre[_ngcontent-%COMP%], .json-content[_ngcontent-%COMP%] pre[_ngcontent-%COMP%] {\n margin: 0;\n padding: 16px;\n font-family: 'Monaco', 'Menlo', 'Consolas', monospace;\n font-size: 14px;\n line-height: 1.4;\n background-color: #f5f7f9;\n border-radius: 4px;\n overflow: auto;\n white-space: pre-wrap;\n}\n\n.text-content[_ngcontent-%COMP%] pre[_ngcontent-%COMP%] {\n margin: 0;\n padding: 16px;\n font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n font-size: 14px;\n line-height: 1.5;\n white-space: pre-wrap;\n}\n\n.html-content[_ngcontent-%COMP%] {\n padding: 16px;\n}\n\n.artifact-description[_ngcontent-%COMP%] {\n margin-top: 16px;\n padding: 16px;\n background-color: #f9f9f9;\n border-radius: 6px;\n}\n\n.artifact-description[_ngcontent-%COMP%] h4[_ngcontent-%COMP%] {\n margin: 0 0 8px 0;\n font-size: 14px;\n font-weight: 600;\n color: #555;\n}\n\n.artifact-description[_ngcontent-%COMP%] p[_ngcontent-%COMP%] {\n margin: 0;\n font-size: 14px;\n line-height: 1.5;\n color: #333;\n}\n\n.artifact-metadata[_ngcontent-%COMP%] {\n margin-top: 16px;\n padding: 12px 16px;\n background-color: #f5f5f5;\n border-radius: 6px;\n font-size: 13px;\n}\n\n.metadata-item[_ngcontent-%COMP%] {\n display: flex;\n margin-bottom: 4px;\n}\n\n.metadata-label[_ngcontent-%COMP%] {\n width: 80px;\n font-weight: 500;\n color: #555;\n}\n\n.metadata-value[_ngcontent-%COMP%] {\n color: #333;\n}\n\n.loading-container[_ngcontent-%COMP%], .error-container[_ngcontent-%COMP%], .empty-state[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n height: 200px;\n text-align: center;\n}\n\n.loading-text[_ngcontent-%COMP%] {\n margin-top: 16px;\n font-size: 14px;\n color: #666;\n}\n\n.error-icon[_ngcontent-%COMP%], .empty-icon[_ngcontent-%COMP%] {\n font-size: 32px;\n margin-bottom: 16px;\n}\n\n.error-icon[_ngcontent-%COMP%] {\n color: #e33d3d;\n}\n\n.empty-icon[_ngcontent-%COMP%] {\n color: #aaa;\n}\n\n.error-message[_ngcontent-%COMP%] {\n font-size: 14px;\n color: #e33d3d;\n max-width: 300px;\n}\n\n.empty-message[_ngcontent-%COMP%] {\n font-size: 14px;\n color: #888;\n}"] });
|
|
492
|
+
i0.ɵɵconditional(ctx.isLoading ? 2 : ctx.error ? 3 : !ctx.artifact ? 4 : 5);
|
|
493
|
+
} }, dependencies: [i2.LoaderComponent, i3.DatePipe], styles: [".skip-artifact-viewer-container[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n height: 100%;\n overflow: hidden;\n}\n\n.skip-artifact-viewer-header[_ngcontent-%COMP%] {\n padding: 8px 16px;\n background-color: #ffffff;\n display: flex;\n justify-content: space-between;\n align-items: center;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);\n z-index: 10;\n}\n\n.version-selector[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n\n.version-selector[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n font-size: 13px;\n color: #555;\n}\n\n.version-selector[_ngcontent-%COMP%] select[_ngcontent-%COMP%] {\n padding: 6px 12px;\n border-radius: 6px;\n border: 1px solid #e0e0e0;\n background-color: white;\n font-size: 13px;\n font-weight: 500;\n cursor: pointer;\n transition: all 0.2s ease;\n}\n\n.version-selector[_ngcontent-%COMP%] select[_ngcontent-%COMP%]:hover {\n border-color: #1976d2;\n}\n\n.version-selector[_ngcontent-%COMP%] select[_ngcontent-%COMP%]:focus {\n outline: none;\n border-color: #1976d2;\n box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);\n}\n\n.report-container[_ngcontent-%COMP%] {\n width: 100%;\n}\n\n.artifact-header-content[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n}\n\n.artifact-title-row[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 12px;\n}\n\n.version-info[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n gap: 12px;\n flex-shrink: 0;\n}\n\n.version-info[_ngcontent-%COMP%] .version-date[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n gap: 6px;\n font-size: 13px;\n color: #666;\n white-space: nowrap;\n}\n\n.version-info[_ngcontent-%COMP%] .version-date[_ngcontent-%COMP%] i[_ngcontent-%COMP%] {\n font-size: 12px;\n color: #888;\n}\n\n.artifact-title[_ngcontent-%COMP%] {\n margin: 0;\n font-size: 16px;\n font-weight: 600;\n color: #1a1a1a;\n display: flex;\n align-items: center;\n gap: 8px;\n line-height: 1.2;\n flex: 1;\n min-width: 0;\n}\n\n.artifact-type-badge[_ngcontent-%COMP%] {\n display: inline-flex;\n align-items: center;\n padding: 4px 10px;\n background-color: #e8f0fe;\n color: #1976d2;\n border-radius: 12px;\n font-size: 11px;\n font-weight: 600;\n text-transform: uppercase;\n letter-spacing: 0.5px;\n white-space: nowrap;\n flex-shrink: 0;\n}\n\n\n\n.version-dropdown-wrapper[_ngcontent-%COMP%] {\n position: relative;\n}\n\n.version-dropdown-button[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n gap: 6px;\n padding: 4px 10px;\n background-color: transparent;\n border: 1px solid #e0e0e0;\n border-radius: 16px;\n cursor: pointer;\n font-size: 12px;\n font-weight: 500;\n color: #555;\n transition: all 0.15s ease;\n white-space: nowrap;\n}\n\n.version-dropdown-button[_ngcontent-%COMP%]:hover:not(:disabled) {\n border-color: #1976d2;\n color: #1976d2;\n}\n\n.version-dropdown-button[_ngcontent-%COMP%]:disabled {\n cursor: default;\n opacity: 0.7;\n}\n\n.version-dropdown-button.open[_ngcontent-%COMP%] {\n border-color: #1976d2;\n color: #1976d2;\n background-color: #f8f9fa;\n}\n\n.version-label[_ngcontent-%COMP%] {\n font-weight: 500;\n}\n\n.dropdown-icon[_ngcontent-%COMP%] {\n font-size: 9px;\n transition: transform 0.2s ease;\n color: inherit;\n}\n\n.version-dropdown-button.open[_ngcontent-%COMP%] .dropdown-icon[_ngcontent-%COMP%] {\n transform: rotate(180deg);\n}\n\n.version-dropdown-menu[_ngcontent-%COMP%] {\n position: absolute;\n top: calc(100% + 6px);\n right: 0;\n min-width: 220px;\n background-color: white;\n border: 1px solid #e0e0e0;\n border-radius: 12px;\n box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);\n z-index: 1000;\n overflow: hidden;\n animation: _ngcontent-%COMP%_dropdownFadeIn 0.2s ease-out;\n}\n\n@keyframes _ngcontent-%COMP%_dropdownFadeIn {\n from {\n opacity: 0;\n transform: translateY(-8px);\n }\n to {\n opacity: 1;\n transform: translateY(0);\n }\n}\n\n.version-option[_ngcontent-%COMP%] {\n display: flex;\n justify-content: space-between;\n align-items: center;\n width: 100%;\n padding: 10px 14px;\n background: none;\n border: none;\n cursor: pointer;\n text-align: left;\n transition: background-color 0.15s ease;\n border-bottom: 1px solid #f0f0f0;\n}\n\n.version-option[_ngcontent-%COMP%]:last-child {\n border-bottom: none;\n}\n\n.version-option[_ngcontent-%COMP%]:hover {\n background-color: #f8f9fa;\n}\n\n.version-option.selected[_ngcontent-%COMP%] {\n background-color: #e8f0fe;\n color: #1976d2;\n}\n\n.version-option.selected[_ngcontent-%COMP%] .version-date[_ngcontent-%COMP%] {\n color: #1976d2;\n opacity: 0.8;\n}\n\n.version-number[_ngcontent-%COMP%] {\n font-size: 13px;\n font-weight: 500;\n}\n\n.version-date[_ngcontent-%COMP%] {\n font-size: 11px;\n color: #888;\n font-weight: 400;\n}\n\n.skip-artifact-viewer-content[_ngcontent-%COMP%] {\n flex: 1;\n overflow: auto;\n padding: 0;\n background-color: #ffffff;\n}\n\n.content-container[_ngcontent-%COMP%] {\n margin-bottom: 16px;\n background-color: #fff;\n border-radius: 8px;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);\n overflow: auto;\n transition: box-shadow 0.2s ease;\n}\n\n.content-container[_ngcontent-%COMP%]:hover {\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);\n}\n\n.markdown-content[_ngcontent-%COMP%] {\n padding: 16px;\n}\n\n.code-content[_ngcontent-%COMP%], .json-content[_ngcontent-%COMP%] {\n padding: 0;\n}\n\n.code-content[_ngcontent-%COMP%] pre[_ngcontent-%COMP%], .json-content[_ngcontent-%COMP%] pre[_ngcontent-%COMP%] {\n margin: 0;\n padding: 16px;\n font-family: 'Monaco', 'Menlo', 'Consolas', monospace;\n font-size: 14px;\n line-height: 1.4;\n background-color: #f5f7f9;\n border-radius: 4px;\n overflow: auto;\n white-space: pre-wrap;\n}\n\n.text-content[_ngcontent-%COMP%] pre[_ngcontent-%COMP%] {\n margin: 0;\n padding: 16px;\n font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n font-size: 14px;\n line-height: 1.5;\n white-space: pre-wrap;\n}\n\n.html-content[_ngcontent-%COMP%] {\n padding: 16px;\n}\n\n.artifact-description[_ngcontent-%COMP%] {\n margin-top: 16px;\n padding: 16px;\n background-color: #f9f9f9;\n border-radius: 6px;\n}\n\n.artifact-description[_ngcontent-%COMP%] h4[_ngcontent-%COMP%] {\n margin: 0 0 8px 0;\n font-size: 14px;\n font-weight: 600;\n color: #555;\n}\n\n.artifact-description[_ngcontent-%COMP%] p[_ngcontent-%COMP%] {\n margin: 0;\n font-size: 14px;\n line-height: 1.5;\n color: #333;\n}\n\n\n\n\n.artifact-metadata[_ngcontent-%COMP%] {\n margin-top: 16px;\n padding: 12px 16px;\n background-color: #f5f5f5;\n border-radius: 6px;\n font-size: 13px;\n}\n\n.metadata-item[_ngcontent-%COMP%] {\n display: flex;\n margin-bottom: 4px;\n}\n\n.metadata-label[_ngcontent-%COMP%] {\n width: 80px;\n font-weight: 500;\n color: #555;\n}\n\n.metadata-value[_ngcontent-%COMP%] {\n color: #333;\n}\n\n.loading-container[_ngcontent-%COMP%], .error-container[_ngcontent-%COMP%], .empty-state[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n height: 200px;\n text-align: center;\n}\n\n.loading-text[_ngcontent-%COMP%] {\n margin-top: 16px;\n font-size: 14px;\n color: #666;\n}\n\n.error-icon[_ngcontent-%COMP%], .empty-icon[_ngcontent-%COMP%] {\n font-size: 32px;\n margin-bottom: 16px;\n}\n\n.error-icon[_ngcontent-%COMP%] {\n color: #e33d3d;\n}\n\n.empty-icon[_ngcontent-%COMP%] {\n color: #aaa;\n}\n\n.error-message[_ngcontent-%COMP%] {\n font-size: 14px;\n color: #e33d3d;\n max-width: 300px;\n}\n\n.empty-message[_ngcontent-%COMP%] {\n font-size: 14px;\n color: #888;\n}"] });
|
|
500
494
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SkipArtifactViewerComponent, [{
|
|
501
495
|
type: Component,
|
|
502
|
-
args: [{ selector: 'skip-artifact-viewer', template: "<div class=\"skip-artifact-viewer-container\">\n <div class=\"skip-artifact-viewer-
|
|
496
|
+
args: [{ selector: 'skip-artifact-viewer', template: "<div class=\"skip-artifact-viewer-container\">\n <div class=\"skip-artifact-viewer-content\">\n @if (isLoading) {\n <div class=\"loading-container\">\n <kendo-loader size=\"large\"></kendo-loader>\n <div class=\"loading-text\">Loading artifact...</div>\n </div>\n } @else if (error) {\n <div class=\"error-container\">\n <div class=\"error-icon\">\n <i class=\"fa-solid fa-exclamation-circle\"></i>\n </div>\n <div class=\"error-message\">{{ error }}</div>\n </div>\n } @else if (!artifact) {\n <div class=\"empty-state\">\n <div class=\"empty-icon\">\n <i class=\"fa-solid fa-file-alt\"></i>\n </div>\n <div class=\"empty-message\">No artifact selected</div>\n </div>\n } @else {\n <div class=\"report-container\" #reportContainer>\n <!-- The dynamic report component will be inserted here -->\n </div>\n\n @if (artifactVersion) {\n <div class=\"artifact-metadata\">\n @if (artifactVersion.__mj_CreatedAt) {\n <div class=\"metadata-item\">\n <span class=\"metadata-label\">Created:</span>\n <span class=\"metadata-value\">{{ artifactVersion.__mj_CreatedAt | date:'medium' }}</span>\n </div>\n }\n </div>\n }\n }\n </div>\n</div>", styles: [".skip-artifact-viewer-container {\n display: flex;\n flex-direction: column;\n height: 100%;\n overflow: hidden;\n}\n\n.skip-artifact-viewer-header {\n padding: 8px 16px;\n background-color: #ffffff;\n display: flex;\n justify-content: space-between;\n align-items: center;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);\n z-index: 10;\n}\n\n.version-selector {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n\n.version-selector label {\n font-size: 13px;\n color: #555;\n}\n\n.version-selector select {\n padding: 6px 12px;\n border-radius: 6px;\n border: 1px solid #e0e0e0;\n background-color: white;\n font-size: 13px;\n font-weight: 500;\n cursor: pointer;\n transition: all 0.2s ease;\n}\n\n.version-selector select:hover {\n border-color: #1976d2;\n}\n\n.version-selector select:focus {\n outline: none;\n border-color: #1976d2;\n box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);\n}\n\n.report-container {\n width: 100%;\n}\n\n.artifact-header-content {\n display: flex;\n flex-direction: column;\n}\n\n.artifact-title-row {\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 12px;\n}\n\n.version-info {\n display: flex;\n align-items: center;\n gap: 12px;\n flex-shrink: 0;\n}\n\n.version-info .version-date {\n display: flex;\n align-items: center;\n gap: 6px;\n font-size: 13px;\n color: #666;\n white-space: nowrap;\n}\n\n.version-info .version-date i {\n font-size: 12px;\n color: #888;\n}\n\n.artifact-title {\n margin: 0;\n font-size: 16px;\n font-weight: 600;\n color: #1a1a1a;\n display: flex;\n align-items: center;\n gap: 8px;\n line-height: 1.2;\n flex: 1;\n min-width: 0;\n}\n\n.artifact-type-badge {\n display: inline-flex;\n align-items: center;\n padding: 4px 10px;\n background-color: #e8f0fe;\n color: #1976d2;\n border-radius: 12px;\n font-size: 11px;\n font-weight: 600;\n text-transform: uppercase;\n letter-spacing: 0.5px;\n white-space: nowrap;\n flex-shrink: 0;\n}\n\n/* Version Dropdown */\n.version-dropdown-wrapper {\n position: relative;\n}\n\n.version-dropdown-button {\n display: flex;\n align-items: center;\n gap: 6px;\n padding: 4px 10px;\n background-color: transparent;\n border: 1px solid #e0e0e0;\n border-radius: 16px;\n cursor: pointer;\n font-size: 12px;\n font-weight: 500;\n color: #555;\n transition: all 0.15s ease;\n white-space: nowrap;\n}\n\n.version-dropdown-button:hover:not(:disabled) {\n border-color: #1976d2;\n color: #1976d2;\n}\n\n.version-dropdown-button:disabled {\n cursor: default;\n opacity: 0.7;\n}\n\n.version-dropdown-button.open {\n border-color: #1976d2;\n color: #1976d2;\n background-color: #f8f9fa;\n}\n\n.version-label {\n font-weight: 500;\n}\n\n.dropdown-icon {\n font-size: 9px;\n transition: transform 0.2s ease;\n color: inherit;\n}\n\n.version-dropdown-button.open .dropdown-icon {\n transform: rotate(180deg);\n}\n\n.version-dropdown-menu {\n position: absolute;\n top: calc(100% + 6px);\n right: 0;\n min-width: 220px;\n background-color: white;\n border: 1px solid #e0e0e0;\n border-radius: 12px;\n box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);\n z-index: 1000;\n overflow: hidden;\n animation: dropdownFadeIn 0.2s ease-out;\n}\n\n@keyframes dropdownFadeIn {\n from {\n opacity: 0;\n transform: translateY(-8px);\n }\n to {\n opacity: 1;\n transform: translateY(0);\n }\n}\n\n.version-option {\n display: flex;\n justify-content: space-between;\n align-items: center;\n width: 100%;\n padding: 10px 14px;\n background: none;\n border: none;\n cursor: pointer;\n text-align: left;\n transition: background-color 0.15s ease;\n border-bottom: 1px solid #f0f0f0;\n}\n\n.version-option:last-child {\n border-bottom: none;\n}\n\n.version-option:hover {\n background-color: #f8f9fa;\n}\n\n.version-option.selected {\n background-color: #e8f0fe;\n color: #1976d2;\n}\n\n.version-option.selected .version-date {\n color: #1976d2;\n opacity: 0.8;\n}\n\n.version-number {\n font-size: 13px;\n font-weight: 500;\n}\n\n.version-date {\n font-size: 11px;\n color: #888;\n font-weight: 400;\n}\n\n.skip-artifact-viewer-content {\n flex: 1;\n overflow: auto;\n padding: 0;\n background-color: #ffffff;\n}\n\n.content-container {\n margin-bottom: 16px;\n background-color: #fff;\n border-radius: 8px;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);\n overflow: auto;\n transition: box-shadow 0.2s ease;\n}\n\n.content-container:hover {\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);\n}\n\n.markdown-content {\n padding: 16px;\n}\n\n.code-content, .json-content {\n padding: 0;\n}\n\n.code-content pre, .json-content pre {\n margin: 0;\n padding: 16px;\n font-family: 'Monaco', 'Menlo', 'Consolas', monospace;\n font-size: 14px;\n line-height: 1.4;\n background-color: #f5f7f9;\n border-radius: 4px;\n overflow: auto;\n white-space: pre-wrap;\n}\n\n.text-content pre {\n margin: 0;\n padding: 16px;\n font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n font-size: 14px;\n line-height: 1.5;\n white-space: pre-wrap;\n}\n\n.html-content {\n padding: 16px;\n}\n\n.artifact-description {\n margin-top: 16px;\n padding: 16px;\n background-color: #f9f9f9;\n border-radius: 6px;\n}\n\n.artifact-description h4 {\n margin: 0 0 8px 0;\n font-size: 14px;\n font-weight: 600;\n color: #555;\n}\n\n.artifact-description p {\n margin: 0;\n font-size: 14px;\n line-height: 1.5;\n color: #333;\n}\n\n/* Metadata Pills - Removed in favor of inline date display */\n\n.artifact-metadata {\n margin-top: 16px;\n padding: 12px 16px;\n background-color: #f5f5f5;\n border-radius: 6px;\n font-size: 13px;\n}\n\n.metadata-item {\n display: flex;\n margin-bottom: 4px;\n}\n\n.metadata-label {\n width: 80px;\n font-weight: 500;\n color: #555;\n}\n\n.metadata-value {\n color: #333;\n}\n\n.loading-container, .error-container, .empty-state {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n height: 200px;\n text-align: center;\n}\n\n.loading-text {\n margin-top: 16px;\n font-size: 14px;\n color: #666;\n}\n\n.error-icon, .empty-icon {\n font-size: 32px;\n margin-bottom: 16px;\n}\n\n.error-icon {\n color: #e33d3d;\n}\n\n.empty-icon {\n color: #aaa;\n}\n\n.error-message {\n font-size: 14px;\n color: #e33d3d;\n max-width: 300px;\n}\n\n.empty-message {\n font-size: 14px;\n color: #888;\n}"] }]
|
|
503
497
|
}], () => [{ type: i1.MJNotificationService }, { type: i0.ComponentFactoryResolver }, { type: i0.ChangeDetectorRef }, { type: i0.Injector }], { ArtifactID: [{
|
|
504
498
|
type: Input
|
|
505
499
|
}], ArtifactVersionID: [{
|
|
@@ -515,6 +509,8 @@ SkipArtifactViewerComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type:
|
|
|
515
509
|
type: Output
|
|
516
510
|
}], DrillDownEvent: [{
|
|
517
511
|
type: Output
|
|
512
|
+
}], ArtifactInfoChanged: [{
|
|
513
|
+
type: Output
|
|
518
514
|
}] }); })();
|
|
519
515
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SkipArtifactViewerComponent, { className: "SkipArtifactViewerComponent", filePath: "src/lib/artifacts/skip-artifact-viewer.component.ts", lineNumber: 17 }); })();
|
|
520
516
|
//# sourceMappingURL=skip-artifact-viewer.component.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skip-artifact-viewer.component.js","sourceRoot":"","sources":["../../../src/lib/artifacts/skip-artifact-viewer.component.ts","../../../src/lib/artifacts/skip-artifact-viewer.component.html"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"skip-artifact-viewer.component.js","sourceRoot":"","sources":["../../../src/lib/artifacts/skip-artifact-viewer.component.ts","../../../src/lib/artifacts/skip-artifact-viewer.component.html"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base-report.d.ts","sourceRoot":"","sources":["../../../src/lib/dynamic-report/base-report.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,iBAAiB,EAAwB,YAAY,EAAyB,MAAM,eAAe,CAAC;AAE5H,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAG3D,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAmB,+BAA+B,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAE9G,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;;AAEnD,8BACsB,qBAAuB,SAAQ,oBAAqB,YAAW,aAAa;IA4BpF,SAAS,CAAC,KAAK,EAAE,iBAAiB;IA3BrC,QAAQ,EAAE,+BAA+B,GAAG,SAAS,CAAC;IACtD,sBAAsB,EAAE,OAAO,CAAS;IACxC,cAAc,EAAE,MAAM,GAAG,IAAI,CAAQ;IACrC,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAQ;IACvC,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAQ;IAC3C,WAAW,EAAG,WAAW,CAAC;IAC1B,YAAY,CAAC,EAAE,YAAY,CAAC;IAE3B,gBAAgB;iBAA8B,MAAM;eAAS,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM;;OAAyB;IAEjJ;;;OAGG;IACO,wBAAwB,uBAA8B;IAEhE;;OAEG;IACO,gBAAgB,uBAA8B;IAExD;;OAEG;IACO,cAAc,8BAAqC;gBAGvC,KAAK,EAAE,iBAAiB;IAI9C,eAAe;IAKR,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAQ;IACvC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAQ;IAChD,OAAO,CAAC,MAAM,CAAC,YAAY,CAAwG;IACnI,OAAO,CAAC,OAAO,CAAkB;IACpB,qBAAqB;IAmC3B,oBAAoB,CAAC,aAAa,EAAE,aAAa;IAKxD,IAAW,OAAO,IAAI,cAAc,EAAE,CAErC;IAED,SAAS,KAAK,UAAU,IAAI,MAAM,CAWjC;IACD,IAAW,OAAO,IAAI,OAAO,CAE5B;IACD,IAAW,OAAO,IAAI,OAAO,CAE5B;IACD,IAAW,MAAM,IAAI,OAAO,CAE3B;IAED;;;OAGG;IACI,kBAAkB,IAAI,MAAM;IASnC;;OAEG;IACH,IAAW,gBAAgB,IAAI,OAAO,CAErC;IACD,SAAS,CAAC,iBAAiB,EAAE,OAAO,CAAS;IAE7C;;OAEG;IACU,cAAc;IA2B3B,SAAS,CAAC,qBAAqB,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI7H;;OAEG;cACa,uBAAuB,IAAI,OAAO,CAAC;QAAE,QAAQ,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,YAAY,EAAE,MAAM,CAAA;KAAE,CAAC;IAyBpI;;;OAGG;IACU,eAAe;yCAlMR,qBAAqB;2CAArB,qBAAqB;
|
|
1
|
+
{"version":3,"file":"base-report.d.ts","sourceRoot":"","sources":["../../../src/lib/dynamic-report/base-report.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,iBAAiB,EAAwB,YAAY,EAAyB,MAAM,eAAe,CAAC;AAE5H,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAG3D,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAmB,+BAA+B,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAE9G,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;;AAEnD,8BACsB,qBAAuB,SAAQ,oBAAqB,YAAW,aAAa;IA4BpF,SAAS,CAAC,KAAK,EAAE,iBAAiB;IA3BrC,QAAQ,EAAE,+BAA+B,GAAG,SAAS,CAAC;IACtD,sBAAsB,EAAE,OAAO,CAAS;IACxC,cAAc,EAAE,MAAM,GAAG,IAAI,CAAQ;IACrC,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAQ;IACvC,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAQ;IAC3C,WAAW,EAAG,WAAW,CAAC;IAC1B,YAAY,CAAC,EAAE,YAAY,CAAC;IAE3B,gBAAgB;iBAA8B,MAAM;eAAS,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM;;OAAyB;IAEjJ;;;OAGG;IACO,wBAAwB,uBAA8B;IAEhE;;OAEG;IACO,gBAAgB,uBAA8B;IAExD;;OAEG;IACO,cAAc,8BAAqC;gBAGvC,KAAK,EAAE,iBAAiB;IAI9C,eAAe;IAKR,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAQ;IACvC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAQ;IAChD,OAAO,CAAC,MAAM,CAAC,YAAY,CAAwG;IACnI,OAAO,CAAC,OAAO,CAAkB;IACpB,qBAAqB;IAmC3B,oBAAoB,CAAC,aAAa,EAAE,aAAa;IAKxD,IAAW,OAAO,IAAI,cAAc,EAAE,CAErC;IAED,SAAS,KAAK,UAAU,IAAI,MAAM,CAWjC;IACD,IAAW,OAAO,IAAI,OAAO,CAE5B;IACD,IAAW,OAAO,IAAI,OAAO,CAE5B;IACD,IAAW,MAAM,IAAI,OAAO,CAE3B;IAED;;;OAGG;IACI,kBAAkB,IAAI,MAAM;IASnC;;OAEG;IACH,IAAW,gBAAgB,IAAI,OAAO,CAErC;IACD,SAAS,CAAC,iBAAiB,EAAE,OAAO,CAAS;IAE7C;;OAEG;IACU,cAAc;IA2B3B,SAAS,CAAC,qBAAqB,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI7H;;OAEG;cACa,uBAAuB,IAAI,OAAO,CAAC;QAAE,QAAQ,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,YAAY,EAAE,MAAM,CAAA;KAAE,CAAC;IAyBpI;;;OAGG;IACU,eAAe;yCAlMR,qBAAqB;2CAArB,qBAAqB;CAyQ1C"}
|
|
@@ -238,7 +238,8 @@ export class SkipDynamicReportBase extends BaseAngularComponent {
|
|
|
238
238
|
newSkipData.resultType = this.SkipData.resultType;
|
|
239
239
|
newSkipData.responsePhase = this.SkipData.responsePhase;
|
|
240
240
|
newSkipData.messages = this.SkipData.messages; // this is the array of messages that are used to create the report from the original message, we don't want message from the refresh, it is simple message
|
|
241
|
-
newSkipData.reportTitle = this.SkipData.reportTitle; //
|
|
241
|
+
newSkipData.reportTitle = this.SkipData.reportTitle; // legacy property, carry it over if it exists
|
|
242
|
+
newSkipData.title = this.SkipData.title || this.SkipData.reportTitle; // favor the new title but fallback to the legacy reportTitle. This is the title of the component, we don't want to change it
|
|
242
243
|
newSkipData.drillDown = this.SkipData.drillDown; // this is the drill down data, we don't want to change it
|
|
243
244
|
this.ReportEntity.Configuration = JSON.stringify(newSkipData);
|
|
244
245
|
const saveResult = yield this.ReportEntity.Save();
|