@eric-emg/symphiq-components 1.3.84 → 1.3.86
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/fesm2022/symphiq-components.mjs +180 -160
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles.css +5 -7
- package/styles.css +11 -7
- package/types/symphiq-components.d.ts +79 -75
- package/types/symphiq-components.d.ts.map +1 -1
|
@@ -13561,6 +13561,17 @@ class ProfileContextService {
|
|
|
13561
13561
|
console.log('[ProfileContextService] indexProfile - recommendations with relatedCompetitorIds:', index.recommendations.filter(r => r.relatedCompetitorIds && r.relatedCompetitorIds.length > 0).map(r => ({ id: r.id, relatedCompetitorIds: r.relatedCompetitorIds })));
|
|
13562
13562
|
this.contextIndex.set(index);
|
|
13563
13563
|
}
|
|
13564
|
+
addRecommendations(recommendations) {
|
|
13565
|
+
const currentIndex = this.contextIndex();
|
|
13566
|
+
const existingIds = new Set(currentIndex.recommendations.map(r => r.id));
|
|
13567
|
+
const newRecs = recommendations.filter(r => !existingIds.has(r.id));
|
|
13568
|
+
const mergedRecommendations = [...currentIndex.recommendations, ...newRecs];
|
|
13569
|
+
console.log('[ProfileContextService] addRecommendations - adding', newRecs.length, 'new recommendations, total:', mergedRecommendations.length);
|
|
13570
|
+
this.contextIndex.set({
|
|
13571
|
+
...currentIndex,
|
|
13572
|
+
recommendations: mergedRecommendations
|
|
13573
|
+
});
|
|
13574
|
+
}
|
|
13564
13575
|
getRegions() {
|
|
13565
13576
|
return this.contextIndex().regions;
|
|
13566
13577
|
}
|
|
@@ -26556,7 +26567,7 @@ class ConfidenceLevelCardComponent {
|
|
|
26556
26567
|
i0.ɵɵconditional(ctx.confidenceData().nextDashboardAction && ctx.confidenceData().nextDashboardGrade ? 31 : -1);
|
|
26557
26568
|
i0.ɵɵadvance();
|
|
26558
26569
|
i0.ɵɵconditional(!ctx.confidenceData().currentStepAction && ctx.confidenceData().nextStepAction && ctx.confidenceData().potentialGrade ? 32 : -1);
|
|
26559
|
-
} }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_confidence-fade-in-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes _ngcontent-%COMP%_pulse-glow{0%,to{opacity:1;transform:scale(1);box-shadow:0 0 20px #10b9814d}50%{opacity:1;transform:scale(1.08);box-shadow:0 0 40px #10b98199}}@keyframes _ngcontent-%COMP%_shimmer{0%{background-position:-200% center}to{background-position:200% center}}@keyframes _ngcontent-%COMP%_grade-change{0%{transform:scale(1);opacity:1}50%{transform:scale(1.1);opacity:.9}to{transform:scale(1);opacity:1}}.confidence-card-animate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_confidence-fade-in-up .6s ease-out forwards}.animate-pulse-glow[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_pulse-glow 2s ease-in-out infinite}.grade-change-animate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_grade-change .8s ease-out}
|
|
26570
|
+
} }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_confidence-fade-in-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes _ngcontent-%COMP%_pulse-glow{0%,to{opacity:1;transform:scale(1);box-shadow:0 0 20px #10b9814d}50%{opacity:1;transform:scale(1.08);box-shadow:0 0 40px #10b98199}}@keyframes _ngcontent-%COMP%_shimmer{0%{background-position:-200% center}to{background-position:200% center}}@keyframes _ngcontent-%COMP%_grade-change{0%{transform:scale(1);opacity:1}50%{transform:scale(1.1);opacity:.9}to{transform:scale(1);opacity:1}}.confidence-card-animate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_confidence-fade-in-up .6s ease-out forwards}.animate-pulse-glow[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_pulse-glow 2s ease-in-out infinite}.grade-change-animate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_grade-change .8s ease-out}.confidence-card-animate[_ngcontent-%COMP%], .animate-pulse-glow[_ngcontent-%COMP%], .grade-change-animate[_ngcontent-%COMP%]{animation:none;opacity:1}"], changeDetection: 0 }); }
|
|
26560
26571
|
}
|
|
26561
26572
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ConfidenceLevelCardComponent, [{
|
|
26562
26573
|
type: Component,
|
|
@@ -26677,9 +26688,9 @@ class ConfidenceLevelCardComponent {
|
|
|
26677
26688
|
</div>
|
|
26678
26689
|
</div>
|
|
26679
26690
|
</div>
|
|
26680
|
-
`, styles: ["@keyframes confidence-fade-in-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes pulse-glow{0%,to{opacity:1;transform:scale(1);box-shadow:0 0 20px #10b9814d}50%{opacity:1;transform:scale(1.08);box-shadow:0 0 40px #10b98199}}@keyframes shimmer{0%{background-position:-200% center}to{background-position:200% center}}@keyframes grade-change{0%{transform:scale(1);opacity:1}50%{transform:scale(1.1);opacity:.9}to{transform:scale(1);opacity:1}}.confidence-card-animate{animation:confidence-fade-in-up .6s ease-out forwards}.animate-pulse-glow{animation:pulse-glow 2s ease-in-out infinite}.grade-change-animate{animation:grade-change .8s ease-out}
|
|
26691
|
+
`, styles: ["@keyframes confidence-fade-in-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes pulse-glow{0%,to{opacity:1;transform:scale(1);box-shadow:0 0 20px #10b9814d}50%{opacity:1;transform:scale(1.08);box-shadow:0 0 40px #10b98199}}@keyframes shimmer{0%{background-position:-200% center}to{background-position:200% center}}@keyframes grade-change{0%{transform:scale(1);opacity:1}50%{transform:scale(1.1);opacity:.9}to{transform:scale(1);opacity:1}}.confidence-card-animate{animation:confidence-fade-in-up .6s ease-out forwards}.animate-pulse-glow{animation:pulse-glow 2s ease-in-out infinite}.grade-change-animate{animation:grade-change .8s ease-out}.confidence-card-animate,.animate-pulse-glow,.grade-change-animate{animation:none;opacity:1}\n"] }]
|
|
26681
26692
|
}], () => [], { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], currentStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentStepId", required: false }] }], focusAreaDetails: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaDetails", required: false }] }], currentFocusAreaDomain: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentFocusAreaDomain", required: false }] }], currentMetric: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentMetric", required: false }] }], targets: [{ type: i0.Input, args: [{ isSignal: true, alias: "targets", required: false }] }], isCurrentStepComplete: [{ type: i0.Input, args: [{ isSignal: true, alias: "isCurrentStepComplete", required: false }] }] }); })();
|
|
26682
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ConfidenceLevelCardComponent, { className: "ConfidenceLevelCardComponent", filePath: "lib/components/shared/confidence-level-card.component.ts", lineNumber:
|
|
26693
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ConfidenceLevelCardComponent, { className: "ConfidenceLevelCardComponent", filePath: "lib/components/shared/confidence-level-card.component.ts", lineNumber: 214 }); })();
|
|
26683
26694
|
|
|
26684
26695
|
function ContinueYourJourneyComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
26685
26696
|
i0.ɵɵnamespaceSVG();
|
|
@@ -51689,7 +51700,7 @@ class DashboardHeaderComponent {
|
|
|
51689
51700
|
: 'bg-slate-800 hover:bg-slate-700 text-slate-300 border border-slate-700';
|
|
51690
51701
|
}
|
|
51691
51702
|
static { this.ɵfac = function DashboardHeaderComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || DashboardHeaderComponent)(); }; }
|
|
51692
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DashboardHeaderComponent, selectors: [["symphiq-dashboard-header"]], inputs: { requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], title: [1, "title"], subtitle: [1, "subtitle"], viewMode: [1, "viewMode"], viewModeLabel: [1, "viewModeLabel"], currentSection: [1, "currentSection"], currentSubsection: [1, "currentSubsection"], sectionFading: [1, "sectionFading"], subsectionFading: [1, "subsectionFading"], isLoading: [1, "isLoading"], showSearchControl: [1, "showSearchControl"], showViewModeControl: [1, "showViewModeControl"], hasCondensedLeftContent: [1, "hasCondensedLeftContent"], size: [1, "size"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"] }, outputs: { searchClick: "searchClick", viewModeClick: "viewModeClick" }, ngContentSelectors: _c1$m, decls: 30, vars: 29, consts: [[1, "sticky", "top-0", "z-50", "overflow-hidden", 2, "transition", "height 300ms ease-in-out", 3, "ngClass"], [1, "transition-opacity", "duration-300", "ease-in-out", "h-full"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4", "h-full", "flex", "items-center"], [1, "flex", "items-center", "justify-between", "w-full"], [1, "flex-1", "min-w-0"], [1, "flex", "items-center", "gap-3", "min-w-0"], [1, "truncate", 3, "mouseenter", "mouseleave", "ngClass"], ["title", "Refreshing data...", 1, "animate-spin", "w-4", "h-4", "border-2", "border-blue-500/30", "border-t-blue-500", "rounded-full"], [1, "flex", "
|
|
51703
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DashboardHeaderComponent, selectors: [["symphiq-dashboard-header"]], inputs: { requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], title: [1, "title"], subtitle: [1, "subtitle"], viewMode: [1, "viewMode"], viewModeLabel: [1, "viewModeLabel"], currentSection: [1, "currentSection"], currentSubsection: [1, "currentSubsection"], sectionFading: [1, "sectionFading"], subsectionFading: [1, "subsectionFading"], isLoading: [1, "isLoading"], showSearchControl: [1, "showSearchControl"], showViewModeControl: [1, "showViewModeControl"], hasCondensedLeftContent: [1, "hasCondensedLeftContent"], size: [1, "size"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"] }, outputs: { searchClick: "searchClick", viewModeClick: "viewModeClick" }, ngContentSelectors: _c1$m, decls: 30, vars: 29, consts: [[1, "sticky", "top-0", "z-50", "overflow-hidden", 2, "transition", "height 300ms ease-in-out", 3, "ngClass"], [1, "transition-opacity", "duration-300", "ease-in-out", "h-full"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4", "h-full", "flex", "items-center"], [1, "flex", "items-center", "justify-between", "w-full"], [1, "flex-1", "min-w-0"], [1, "flex", "items-center", "gap-3", "min-w-0"], [1, "truncate", 3, "mouseenter", "mouseleave", "ngClass"], ["title", "Refreshing data...", 1, "animate-spin", "w-4", "h-4", "border-2", "border-blue-500/30", "border-t-blue-500", "rounded-full"], [1, "flex", "items-center", "gap-4"], [1, "truncate", "min-w-0", "flex-1", 3, "ngClass"], [1, "flex", "items-center", "gap-4", "flex-shrink-0"], [3, "isLightMode"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "ngClass"], [1, "flex", "flex-col", "gap-1", "min-w-[180px]"], [1, "absolute", "inset-x-0", "top-0", "h-full", "transition-opacity", "duration-300", "ease-in-out"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "h-full", "flex", "items-center"], [1, "flex", "items-center", "gap-3", "flex-1", "min-w-0", "mr-4"], [1, "flex-shrink-0", "!mb-0", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "text-sm", "flex-shrink-0"], [3, "isLightMode", "minimized"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-2", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "ngClass"], [3, "searchClick", "isLightMode"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 12a3 3 0 11-6 0 3 3 0 016 0z"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"], [1, "text-left", "sm:text-right"], [1, "text-xs"], [1, "text-sm", "font-medium"], [1, "hidden", "sm:inline", 3, "ngClass"], [1, "hidden", "sm:block", "truncate", "min-w-0", 3, "ngClass"], [1, "transition-opacity", "duration-300", 3, "ngClass"], [3, "searchClick", "isLightMode", "minimized"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-2", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"]], template: function DashboardHeaderComponent_Template(rf, ctx) { if (rf & 1) {
|
|
51693
51704
|
i0.ɵɵprojectionDef(_c0$O);
|
|
51694
51705
|
i0.ɵɵelementStart(0, "header", 0)(1, "div", 1)(2, "div", 2)(3, "div", 3)(4, "div", 4)(5, "div", 5)(6, "h1", 6);
|
|
51695
51706
|
i0.ɵɵlistener("mouseenter", function DashboardHeaderComponent_Template_h1_mouseenter_6_listener($event) { return ctx.onTitleMouseEnter($event); })("mouseleave", function DashboardHeaderComponent_Template_h1_mouseleave_6_listener() { return ctx.onTitleMouseLeave(); });
|
|
@@ -51713,7 +51724,7 @@ class DashboardHeaderComponent {
|
|
|
51713
51724
|
i0.ɵɵconditionalCreate(23, DashboardHeaderComponent_Conditional_23_Template, 4, 3);
|
|
51714
51725
|
i0.ɵɵprojection(24, 1);
|
|
51715
51726
|
i0.ɵɵelementEnd();
|
|
51716
|
-
i0.ɵɵelementStart(25, "div",
|
|
51727
|
+
i0.ɵɵelementStart(25, "div", 8);
|
|
51717
51728
|
i0.ɵɵconditionalCreate(26, DashboardHeaderComponent_Conditional_26_Template, 4, 7, "div", 18);
|
|
51718
51729
|
i0.ɵɵconditionalCreate(27, DashboardHeaderComponent_Conditional_27_Template, 1, 2, "symphiq-search-button", 19);
|
|
51719
51730
|
i0.ɵɵconditionalCreate(28, DashboardHeaderComponent_Conditional_28_Template, 4, 1, "button", 20);
|
|
@@ -51783,11 +51794,11 @@ class DashboardHeaderComponent {
|
|
|
51783
51794
|
<div class="animate-spin w-4 h-4 border-2 border-blue-500/30 border-t-blue-500 rounded-full" title="Refreshing data..."></div>
|
|
51784
51795
|
}
|
|
51785
51796
|
</div>
|
|
51786
|
-
<div class="flex
|
|
51787
|
-
<p [ngClass]="getSubtitleClasses()">
|
|
51797
|
+
<div class="flex items-center gap-4">
|
|
51798
|
+
<p [ngClass]="getSubtitleClasses()" class="truncate min-w-0 flex-1">
|
|
51788
51799
|
{{ subtitle() }}
|
|
51789
51800
|
</p>
|
|
51790
|
-
<div class="flex items-center gap-4">
|
|
51801
|
+
<div class="flex items-center gap-4 flex-shrink-0">
|
|
51791
51802
|
@if (showSearchControl()) {
|
|
51792
51803
|
<symphiq-search-button
|
|
51793
51804
|
[isLightMode]="isLightMode()"
|
|
@@ -88500,53 +88511,53 @@ class PriorityActionsStripComponent {
|
|
|
88500
88511
|
}], null, { items: [{ type: i0.Input, args: [{ isSignal: true, alias: "items", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], viewAllClicked: [{ type: i0.Output, args: ["viewAllClicked"] }] }); })();
|
|
88501
88512
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(PriorityActionsStripComponent, { className: "PriorityActionsStripComponent", filePath: "lib/components/shared/priority-actions-strip.component.ts", lineNumber: 48 }); })();
|
|
88502
88513
|
|
|
88503
|
-
function
|
|
88504
|
-
i0.ɵɵelement(0, "symphiq-grade-badge",
|
|
88514
|
+
function UnifiedExecutiveSummaryComponent_Conditional_0_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
88515
|
+
i0.ɵɵelement(0, "symphiq-grade-badge", 5);
|
|
88505
88516
|
} if (rf & 2) {
|
|
88506
88517
|
const summary_r1 = i0.ɵɵnextContext();
|
|
88507
88518
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
88508
88519
|
i0.ɵɵproperty("grade", summary_r1.overallGrade)("gradeRationale", summary_r1.gradeRationale || "")("viewMode", ctx_r1.viewMode());
|
|
88509
88520
|
} }
|
|
88510
|
-
function
|
|
88521
|
+
function UnifiedExecutiveSummaryComponent_Conditional_0_Conditional_11_Template(rf, ctx) { if (rf & 1) {
|
|
88511
88522
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
88512
|
-
i0.ɵɵelementStart(0, "symphiq-priority-actions-strip",
|
|
88513
|
-
i0.ɵɵlistener("viewAllClicked", function
|
|
88523
|
+
i0.ɵɵelementStart(0, "symphiq-priority-actions-strip", 10);
|
|
88524
|
+
i0.ɵɵlistener("viewAllClicked", function UnifiedExecutiveSummaryComponent_Conditional_0_Conditional_11_Template_symphiq_priority_actions_strip_viewAllClicked_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.viewAllPriorityActionsClick.emit()); });
|
|
88514
88525
|
i0.ɵɵelementEnd();
|
|
88515
88526
|
} if (rf & 2) {
|
|
88516
88527
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
88517
88528
|
i0.ɵɵproperty("items", ctx_r1.priorityActionItems())("viewMode", ctx_r1.viewMode());
|
|
88518
88529
|
} }
|
|
88519
88530
|
function UnifiedExecutiveSummaryComponent_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
88520
|
-
i0.ɵɵelementStart(0, "section", 0)(1, "div", 1)(2, "div", 2)(3, "div", 3)(4, "
|
|
88521
|
-
i0.ɵɵtext(
|
|
88531
|
+
i0.ɵɵelementStart(0, "section", 0)(1, "div", 1)(2, "div", 2)(3, "div", 3)(4, "h2", 4);
|
|
88532
|
+
i0.ɵɵtext(5, " Executive Summary ");
|
|
88533
|
+
i0.ɵɵelementEnd();
|
|
88534
|
+
i0.ɵɵconditionalCreate(6, UnifiedExecutiveSummaryComponent_Conditional_0_Conditional_6_Template, 1, 3, "symphiq-grade-badge", 5);
|
|
88522
88535
|
i0.ɵɵelementEnd();
|
|
88523
88536
|
i0.ɵɵelementStart(7, "p", 6);
|
|
88524
88537
|
i0.ɵɵtext(8);
|
|
88525
|
-
i0.ɵɵelementEnd()();
|
|
88526
|
-
i0.ɵɵconditionalCreate(9, UnifiedExecutiveSummaryComponent_Conditional_0_Conditional_9_Template, 1, 3, "symphiq-grade-badge", 7);
|
|
88527
88538
|
i0.ɵɵelementEnd();
|
|
88528
|
-
i0.ɵɵelement(
|
|
88529
|
-
i0.ɵɵconditionalCreate(
|
|
88539
|
+
i0.ɵɵelement(9, "symphiq-analysis-narrative", 7)(10, "symphiq-source-goals-summary-card", 8);
|
|
88540
|
+
i0.ɵɵconditionalCreate(11, UnifiedExecutiveSummaryComponent_Conditional_0_Conditional_11_Template, 1, 2, "symphiq-priority-actions-strip", 9);
|
|
88530
88541
|
i0.ɵɵelementEnd()()();
|
|
88531
88542
|
} if (rf & 2) {
|
|
88532
88543
|
const summary_r1 = ctx;
|
|
88533
88544
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
88534
88545
|
i0.ɵɵadvance();
|
|
88535
88546
|
i0.ɵɵproperty("ngClass", ctx_r1.bannerClasses());
|
|
88536
|
-
i0.ɵɵadvance(
|
|
88547
|
+
i0.ɵɵadvance(3);
|
|
88537
88548
|
i0.ɵɵproperty("ngClass", ctx_r1.sectionTitleClasses());
|
|
88538
88549
|
i0.ɵɵadvance(2);
|
|
88550
|
+
i0.ɵɵconditional(summary_r1.overallGrade ? 6 : -1);
|
|
88551
|
+
i0.ɵɵadvance();
|
|
88539
88552
|
i0.ɵɵproperty("ngClass", ctx_r1.textClasses());
|
|
88540
88553
|
i0.ɵɵadvance();
|
|
88541
88554
|
i0.ɵɵtextInterpolate1(" ", summary_r1.gradeRationale, " ");
|
|
88542
88555
|
i0.ɵɵadvance();
|
|
88543
|
-
i0.ɵɵconditional(summary_r1.overallGrade ? 9 : -1);
|
|
88544
|
-
i0.ɵɵadvance();
|
|
88545
88556
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("narrative", summary_r1.synthesisNarrative)("napkinVisual", summary_r1.napkinVisual);
|
|
88546
88557
|
i0.ɵɵadvance();
|
|
88547
88558
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("shopCounts", ctx_r1.shopCounts())("focusAreaCounts", ctx_r1.focusAreaCounts())("metricCounts", ctx_r1.metricCounts());
|
|
88548
88559
|
i0.ɵɵadvance();
|
|
88549
|
-
i0.ɵɵconditional(ctx_r1.priorityActionItems().length > 0 ?
|
|
88560
|
+
i0.ɵɵconditional(ctx_r1.priorityActionItems().length > 0 ? 11 : -1);
|
|
88550
88561
|
} }
|
|
88551
88562
|
class UnifiedExecutiveSummaryComponent {
|
|
88552
88563
|
constructor() {
|
|
@@ -88571,8 +88582,8 @@ class UnifiedExecutiveSummaryComponent {
|
|
|
88571
88582
|
this.textClasses = computed(() => this.isLightMode() ? 'text-slate-700' : 'text-slate-300', ...(ngDevMode ? [{ debugName: "textClasses" }] : []));
|
|
88572
88583
|
}
|
|
88573
88584
|
static { this.ɵfac = function UnifiedExecutiveSummaryComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || UnifiedExecutiveSummaryComponent)(); }; }
|
|
88574
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedExecutiveSummaryComponent, selectors: [["symphiq-unified-executive-summary"]], inputs: { summary: [1, "summary"], viewMode: [1, "viewMode"], shopCounts: [1, "shopCounts"], focusAreaCounts: [1, "focusAreaCounts"], metricCounts: [1, "metricCounts"] }, outputs: { viewAllPriorityActionsClick: "viewAllPriorityActionsClick" }, decls: 1, vars: 1, consts: [["id", "section-executive-summary", 1, "space-y-6", "scroll-mt-24"], [1, "rounded-2xl", "p-8", "shadow-xl", 3, "ngClass"], [1, "flex", "flex-col", "gap-6"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "
|
|
88575
|
-
i0.ɵɵconditionalCreate(0, UnifiedExecutiveSummaryComponent_Conditional_0_Template,
|
|
88585
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedExecutiveSummaryComponent, selectors: [["symphiq-unified-executive-summary"]], inputs: { summary: [1, "summary"], viewMode: [1, "viewMode"], shopCounts: [1, "shopCounts"], focusAreaCounts: [1, "focusAreaCounts"], metricCounts: [1, "metricCounts"] }, outputs: { viewAllPriorityActionsClick: "viewAllPriorityActionsClick" }, decls: 1, vars: 1, consts: [["id", "section-executive-summary", 1, "space-y-6", "scroll-mt-24"], [1, "rounded-2xl", "p-8", "shadow-xl", 3, "ngClass"], [1, "flex", "flex-col", "gap-6"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "text-2xl", "font-bold", 3, "ngClass"], [3, "grade", "gradeRationale", "viewMode"], [1, "text-lg", "leading-relaxed", 3, "ngClass"], ["title", "Synthesis Overview", 3, "viewMode", "narrative", "napkinVisual"], [3, "viewMode", "shopCounts", "focusAreaCounts", "metricCounts"], [3, "items", "viewMode"], [3, "viewAllClicked", "items", "viewMode"]], template: function UnifiedExecutiveSummaryComponent_Template(rf, ctx) { if (rf & 1) {
|
|
88586
|
+
i0.ɵɵconditionalCreate(0, UnifiedExecutiveSummaryComponent_Conditional_0_Template, 12, 13, "section", 0);
|
|
88576
88587
|
} if (rf & 2) {
|
|
88577
88588
|
let tmp_0_0;
|
|
88578
88589
|
i0.ɵɵconditional((tmp_0_0 = ctx.summary()) ? 0 : -1, tmp_0_0);
|
|
@@ -88600,14 +88611,9 @@ class UnifiedExecutiveSummaryComponent {
|
|
|
88600
88611
|
<div [ngClass]="bannerClasses()" class="rounded-2xl p-8 shadow-xl">
|
|
88601
88612
|
<div class="flex flex-col gap-6">
|
|
88602
88613
|
<div class="flex items-start justify-between gap-4">
|
|
88603
|
-
<
|
|
88604
|
-
|
|
88605
|
-
|
|
88606
|
-
</h2>
|
|
88607
|
-
<p [ngClass]="textClasses()" class="text-lg leading-relaxed">
|
|
88608
|
-
{{ summary.gradeRationale }}
|
|
88609
|
-
</p>
|
|
88610
|
-
</div>
|
|
88614
|
+
<h2 [ngClass]="sectionTitleClasses()" class="text-2xl font-bold">
|
|
88615
|
+
Executive Summary
|
|
88616
|
+
</h2>
|
|
88611
88617
|
@if (summary.overallGrade) {
|
|
88612
88618
|
<symphiq-grade-badge
|
|
88613
88619
|
[grade]="summary.overallGrade"
|
|
@@ -88616,6 +88622,9 @@ class UnifiedExecutiveSummaryComponent {
|
|
|
88616
88622
|
/>
|
|
88617
88623
|
}
|
|
88618
88624
|
</div>
|
|
88625
|
+
<p [ngClass]="textClasses()" class="text-lg leading-relaxed">
|
|
88626
|
+
{{ summary.gradeRationale }}
|
|
88627
|
+
</p>
|
|
88619
88628
|
|
|
88620
88629
|
<symphiq-analysis-narrative
|
|
88621
88630
|
[viewMode]="viewMode()"
|
|
@@ -88645,7 +88654,7 @@ class UnifiedExecutiveSummaryComponent {
|
|
|
88645
88654
|
`
|
|
88646
88655
|
}]
|
|
88647
88656
|
}], null, { summary: [{ type: i0.Input, args: [{ isSignal: true, alias: "summary", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], shopCounts: [{ type: i0.Input, args: [{ isSignal: true, alias: "shopCounts", required: false }] }], focusAreaCounts: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaCounts", required: false }] }], metricCounts: [{ type: i0.Input, args: [{ isSignal: true, alias: "metricCounts", required: false }] }], viewAllPriorityActionsClick: [{ type: i0.Output, args: ["viewAllPriorityActionsClick"] }] }); })();
|
|
88648
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedExecutiveSummaryComponent, { className: "UnifiedExecutiveSummaryComponent", filePath: "lib/components/profile-analysis-unified-dashboard/cards/unified-executive-summary.component.ts", lineNumber:
|
|
88657
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedExecutiveSummaryComponent, { className: "UnifiedExecutiveSummaryComponent", filePath: "lib/components/profile-analysis-unified-dashboard/cards/unified-executive-summary.component.ts", lineNumber: 72 }); })();
|
|
88649
88658
|
|
|
88650
88659
|
class FocusAreaHealthIndicatorComponent {
|
|
88651
88660
|
constructor() {
|
|
@@ -97150,8 +97159,8 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Template(rf,
|
|
|
97150
97159
|
i0.ɵɵadvance();
|
|
97151
97160
|
i0.ɵɵconditional(ctx_r1.shouldShowPostAnalysisShopProfile() ? 5 : -1);
|
|
97152
97161
|
} }
|
|
97153
|
-
function
|
|
97154
|
-
i0.ɵɵelement(0, "symphiq-grade-badge",
|
|
97162
|
+
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
97163
|
+
i0.ɵɵelement(0, "symphiq-grade-badge", 54);
|
|
97155
97164
|
} if (rf & 2) {
|
|
97156
97165
|
const summary_r10 = i0.ɵɵnextContext();
|
|
97157
97166
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -97159,70 +97168,63 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional
|
|
|
97159
97168
|
} }
|
|
97160
97169
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
97161
97170
|
const _r9 = i0.ɵɵgetCurrentView();
|
|
97162
|
-
i0.ɵɵelementStart(0, "section", 47)(1, "div", 50)(2, "div", 51)(3, "div", 52)(4, "
|
|
97163
|
-
i0.ɵɵtext(
|
|
97171
|
+
i0.ɵɵelementStart(0, "section", 47)(1, "div", 50)(2, "div", 51)(3, "div", 52)(4, "h2", 53);
|
|
97172
|
+
i0.ɵɵtext(5, " Executive Summary ");
|
|
97164
97173
|
i0.ɵɵelementEnd();
|
|
97165
|
-
i0.ɵɵ
|
|
97166
|
-
i0.ɵɵtext(8);
|
|
97167
|
-
i0.ɵɵelementEnd()();
|
|
97168
|
-
i0.ɵɵconditionalCreate(9, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_9_Template, 1, 3, "symphiq-grade-badge", 56);
|
|
97174
|
+
i0.ɵɵconditionalCreate(6, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_6_Template, 1, 3, "symphiq-grade-badge", 54);
|
|
97169
97175
|
i0.ɵɵelementEnd();
|
|
97170
|
-
i0.ɵɵelement(
|
|
97171
|
-
i0.ɵɵelementStart(
|
|
97172
|
-
i0.ɵɵlistener("click", function
|
|
97173
|
-
i0.ɵɵelementStart(
|
|
97174
|
-
i0.ɵɵtext(
|
|
97176
|
+
i0.ɵɵelement(7, "symphiq-analysis-narrative", 55);
|
|
97177
|
+
i0.ɵɵelementStart(8, "div", 56)(9, "button", 57);
|
|
97178
|
+
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Template_button_click_9_listener() { const summary_r10 = i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onKeyStrengthsClick(summary_r10)); });
|
|
97179
|
+
i0.ɵɵelementStart(10, "div", 58);
|
|
97180
|
+
i0.ɵɵtext(11, " Key Strengths ");
|
|
97175
97181
|
i0.ɵɵelementEnd();
|
|
97176
|
-
i0.ɵɵelementStart(
|
|
97177
|
-
i0.ɵɵtext(
|
|
97182
|
+
i0.ɵɵelementStart(12, "div", 59);
|
|
97183
|
+
i0.ɵɵtext(13);
|
|
97178
97184
|
i0.ɵɵelementEnd();
|
|
97179
|
-
i0.ɵɵelementStart(
|
|
97180
|
-
i0.ɵɵtext(
|
|
97185
|
+
i0.ɵɵelementStart(14, "div", 60)(15, "span", 61);
|
|
97186
|
+
i0.ɵɵtext(16, "View Details");
|
|
97181
97187
|
i0.ɵɵelementEnd();
|
|
97182
|
-
i0.ɵɵelement(
|
|
97188
|
+
i0.ɵɵelement(17, "symphiq-icon", 62);
|
|
97183
97189
|
i0.ɵɵelementEnd()();
|
|
97184
|
-
i0.ɵɵelementStart(
|
|
97185
|
-
i0.ɵɵlistener("click", function
|
|
97186
|
-
i0.ɵɵelementStart(
|
|
97187
|
-
i0.ɵɵtext(
|
|
97190
|
+
i0.ɵɵelementStart(18, "button", 57);
|
|
97191
|
+
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Template_button_click_18_listener() { const summary_r10 = i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onCriticalGapsClick(summary_r10)); });
|
|
97192
|
+
i0.ɵɵelementStart(19, "div", 58);
|
|
97193
|
+
i0.ɵɵtext(20, " Critical Gaps ");
|
|
97188
97194
|
i0.ɵɵelementEnd();
|
|
97189
|
-
i0.ɵɵelementStart(
|
|
97190
|
-
i0.ɵɵtext(
|
|
97195
|
+
i0.ɵɵelementStart(21, "div", 59);
|
|
97196
|
+
i0.ɵɵtext(22);
|
|
97191
97197
|
i0.ɵɵelementEnd();
|
|
97192
|
-
i0.ɵɵelementStart(
|
|
97193
|
-
i0.ɵɵtext(
|
|
97198
|
+
i0.ɵɵelementStart(23, "div", 60)(24, "span", 61);
|
|
97199
|
+
i0.ɵɵtext(25, "View Details");
|
|
97194
97200
|
i0.ɵɵelementEnd();
|
|
97195
|
-
i0.ɵɵelement(
|
|
97201
|
+
i0.ɵɵelement(26, "symphiq-icon", 62);
|
|
97196
97202
|
i0.ɵɵelementEnd()();
|
|
97197
|
-
i0.ɵɵelementStart(
|
|
97198
|
-
i0.ɵɵlistener("click", function
|
|
97199
|
-
i0.ɵɵelementStart(
|
|
97200
|
-
i0.ɵɵtext(
|
|
97203
|
+
i0.ɵɵelementStart(27, "button", 57);
|
|
97204
|
+
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Template_button_click_27_listener() { i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.scrollToQuickWins()); });
|
|
97205
|
+
i0.ɵɵelementStart(28, "div", 58);
|
|
97206
|
+
i0.ɵɵtext(29, " Quick Wins ");
|
|
97201
97207
|
i0.ɵɵelementEnd();
|
|
97202
|
-
i0.ɵɵelementStart(
|
|
97203
|
-
i0.ɵɵtext(
|
|
97208
|
+
i0.ɵɵelementStart(30, "div", 59);
|
|
97209
|
+
i0.ɵɵtext(31);
|
|
97204
97210
|
i0.ɵɵelementEnd();
|
|
97205
|
-
i0.ɵɵelementStart(
|
|
97206
|
-
i0.ɵɵtext(
|
|
97211
|
+
i0.ɵɵelementStart(32, "div", 60)(33, "span", 61);
|
|
97212
|
+
i0.ɵɵtext(34, "Details Below");
|
|
97207
97213
|
i0.ɵɵelementEnd();
|
|
97208
|
-
i0.ɵɵelement(
|
|
97214
|
+
i0.ɵɵelement(35, "symphiq-icon", 63);
|
|
97209
97215
|
i0.ɵɵelementEnd()()()()();
|
|
97210
|
-
i0.ɵɵelement(
|
|
97216
|
+
i0.ɵɵelement(36, "symphiq-quick-wins-grid", 64);
|
|
97211
97217
|
i0.ɵɵelementEnd();
|
|
97212
97218
|
} if (rf & 2) {
|
|
97213
|
-
let
|
|
97219
|
+
let tmp_31_0;
|
|
97214
97220
|
const summary_r10 = ctx;
|
|
97215
97221
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
97216
97222
|
i0.ɵɵadvance();
|
|
97217
97223
|
i0.ɵɵproperty("ngClass", ctx_r1.getBannerClasses());
|
|
97218
|
-
i0.ɵɵadvance(
|
|
97224
|
+
i0.ɵɵadvance(3);
|
|
97219
97225
|
i0.ɵɵproperty("ngClass", ctx_r1.getSectionTitleClasses());
|
|
97220
97226
|
i0.ɵɵadvance(2);
|
|
97221
|
-
i0.ɵɵ
|
|
97222
|
-
i0.ɵɵadvance();
|
|
97223
|
-
i0.ɵɵtextInterpolate1(" ", summary_r10.gradeRationale, " ");
|
|
97224
|
-
i0.ɵɵadvance();
|
|
97225
|
-
i0.ɵɵconditional(summary_r10.overallGrade ? 9 : -1);
|
|
97227
|
+
i0.ɵɵconditional(summary_r10.overallGrade ? 6 : -1);
|
|
97226
97228
|
i0.ɵɵadvance();
|
|
97227
97229
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("narrative", summary_r10.narrative)("napkinVisual", summary_r10.napkinVisual);
|
|
97228
97230
|
i0.ɵɵadvance(2);
|
|
@@ -97236,7 +97238,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional
|
|
|
97236
97238
|
i0.ɵɵadvance(2);
|
|
97237
97239
|
i0.ɵɵproperty("ngClass", ctx_r1.getKeyStrengthsButtonTextClasses());
|
|
97238
97240
|
i0.ɵɵadvance(2);
|
|
97239
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(
|
|
97241
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(30, _c3$1, ctx_r1.IconSourceEnum.HEROICONS))("ngClass", ctx_r1.getKeyStrengthsButtonTextClasses());
|
|
97240
97242
|
i0.ɵɵadvance();
|
|
97241
97243
|
i0.ɵɵproperty("ngClass", ctx_r1.getCriticalGapsStatCardClasses());
|
|
97242
97244
|
i0.ɵɵadvance();
|
|
@@ -97248,7 +97250,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional
|
|
|
97248
97250
|
i0.ɵɵadvance(2);
|
|
97249
97251
|
i0.ɵɵproperty("ngClass", ctx_r1.getCriticalGapsButtonTextClasses());
|
|
97250
97252
|
i0.ɵɵadvance(2);
|
|
97251
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(
|
|
97253
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(32, _c3$1, ctx_r1.IconSourceEnum.HEROICONS))("ngClass", ctx_r1.getCriticalGapsButtonTextClasses());
|
|
97252
97254
|
i0.ɵɵadvance();
|
|
97253
97255
|
i0.ɵɵproperty("ngClass", ctx_r1.getQuickWinsStatCardClasses());
|
|
97254
97256
|
i0.ɵɵadvance();
|
|
@@ -97260,13 +97262,13 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional
|
|
|
97260
97262
|
i0.ɵɵadvance(2);
|
|
97261
97263
|
i0.ɵɵproperty("ngClass", ctx_r1.getQuickWinsButtonTextClasses());
|
|
97262
97264
|
i0.ɵɵadvance(2);
|
|
97263
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(
|
|
97265
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(34, _c4, ctx_r1.IconSourceEnum.HEROICONS))("ngClass", ctx_r1.getQuickWinsButtonTextClasses());
|
|
97264
97266
|
i0.ɵɵadvance();
|
|
97265
|
-
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("quickWins", ((
|
|
97267
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("quickWins", ((tmp_31_0 = ctx_r1.executiveSummary()) == null ? null : tmp_31_0.quickWins) || i0.ɵɵpureFunction0(36, _c2$3))("allGoals", ctx_r1.allGoals());
|
|
97266
97268
|
} }
|
|
97267
97269
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
97268
97270
|
const _r11 = i0.ɵɵgetCurrentView();
|
|
97269
|
-
i0.ɵɵelementStart(0, "symphiq-metric-executive-summary",
|
|
97271
|
+
i0.ɵɵelementStart(0, "symphiq-metric-executive-summary", 65);
|
|
97270
97272
|
i0.ɵɵlistener("topPrioritiesClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_1_Template_symphiq_metric_executive_summary_topPrioritiesClick_0_listener() { i0.ɵɵrestoreView(_r11); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleMetricTopPrioritiesClick()); })("priorityDetailClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_1_Template_symphiq_metric_executive_summary_priorityDetailClick_0_listener($event) { i0.ɵɵrestoreView(_r11); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleMetricPriorityDetailClick($event)); })("viewMetricDetailsClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_1_Template_symphiq_metric_executive_summary_viewMetricDetailsClick_0_listener() { i0.ɵɵrestoreView(_r11); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleMetricViewDetailsClick()); });
|
|
97271
97273
|
i0.ɵɵelementEnd();
|
|
97272
97274
|
} if (rf & 2) {
|
|
@@ -97274,21 +97276,21 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional
|
|
|
97274
97276
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("summary", ctx)("metricName", ctx_r1.metricName())("allGoals", ctx_r1.allGoals());
|
|
97275
97277
|
} }
|
|
97276
97278
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
97277
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
97279
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 66);
|
|
97278
97280
|
} if (rf & 2) {
|
|
97279
97281
|
const sectionList_r12 = i0.ɵɵnextContext();
|
|
97280
97282
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
97281
97283
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r12[0].icon);
|
|
97282
97284
|
} }
|
|
97283
97285
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
97284
|
-
i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_2_Conditional_0_Template, 1, 2, "symphiq-section-divider",
|
|
97286
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_2_Conditional_0_Template, 1, 2, "symphiq-section-divider", 66);
|
|
97285
97287
|
} if (rf & 2) {
|
|
97286
97288
|
const sectionList_r12 = ctx;
|
|
97287
97289
|
i0.ɵɵconditional(sectionList_r12.length > 0 && sectionList_r12[0].icon ? 0 : -1);
|
|
97288
97290
|
} }
|
|
97289
97291
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
97290
|
-
i0.ɵɵelementStart(0, "div",
|
|
97291
|
-
i0.ɵɵelement(1, "symphiq-icon",
|
|
97292
|
+
i0.ɵɵelementStart(0, "div", 69);
|
|
97293
|
+
i0.ɵɵelement(1, "symphiq-icon", 73);
|
|
97292
97294
|
i0.ɵɵelementEnd();
|
|
97293
97295
|
} if (rf & 2) {
|
|
97294
97296
|
const section_r13 = i0.ɵɵnextContext().$implicit;
|
|
@@ -97298,8 +97300,8 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional
|
|
|
97298
97300
|
i0.ɵɵproperty("icon", section_r13.icon);
|
|
97299
97301
|
} }
|
|
97300
97302
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
97301
|
-
i0.ɵɵelementStart(0, "div",
|
|
97302
|
-
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder",
|
|
97303
|
+
i0.ɵɵelementStart(0, "div", 75);
|
|
97304
|
+
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 77);
|
|
97303
97305
|
i0.ɵɵelementEnd();
|
|
97304
97306
|
} if (rf & 2) {
|
|
97305
97307
|
const section_r13 = i0.ɵɵnextContext(2).$implicit;
|
|
@@ -97308,7 +97310,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional
|
|
|
97308
97310
|
i0.ɵɵproperty("visual", section_r13.visual)("viewMode", ctx_r1.viewMode());
|
|
97309
97311
|
} }
|
|
97310
97312
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
97311
|
-
i0.ɵɵelementStart(0, "div",
|
|
97313
|
+
i0.ɵɵelementStart(0, "div", 78)(1, "p", 79);
|
|
97312
97314
|
i0.ɵɵtext(2);
|
|
97313
97315
|
i0.ɵɵelementEnd()();
|
|
97314
97316
|
} if (rf & 2) {
|
|
@@ -97321,42 +97323,42 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional
|
|
|
97321
97323
|
i0.ɵɵtextInterpolate1(" ", section_r13.description, " ");
|
|
97322
97324
|
} }
|
|
97323
97325
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
97324
|
-
i0.ɵɵelementStart(0, "div",
|
|
97325
|
-
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div",
|
|
97326
|
-
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div",
|
|
97326
|
+
i0.ɵɵelementStart(0, "div", 74);
|
|
97327
|
+
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div", 75);
|
|
97328
|
+
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div", 76);
|
|
97327
97329
|
i0.ɵɵelementEnd();
|
|
97328
97330
|
} if (rf & 2) {
|
|
97329
97331
|
const ctx_r13 = i0.ɵɵnextContext();
|
|
97330
97332
|
const section_r13 = ctx_r13.$implicit;
|
|
97331
|
-
const ɵ$
|
|
97332
|
-
i0.ɵɵclassProp("lg:flex-row-reverse", ɵ$
|
|
97333
|
+
const ɵ$index_165_r15 = ctx_r13.$index;
|
|
97334
|
+
i0.ɵɵclassProp("lg:flex-row-reverse", ɵ$index_165_r15 % 2 === 0);
|
|
97333
97335
|
i0.ɵɵadvance();
|
|
97334
97336
|
i0.ɵɵconditional(section_r13.visual && section_r13.visual.enabled ? 1 : -1);
|
|
97335
97337
|
i0.ɵɵadvance();
|
|
97336
97338
|
i0.ɵɵconditional(section_r13.description ? 2 : -1);
|
|
97337
97339
|
} }
|
|
97338
97340
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
97339
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
97341
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 66);
|
|
97340
97342
|
} if (rf & 2) {
|
|
97341
|
-
const ɵ$
|
|
97343
|
+
const ɵ$index_165_r15 = i0.ɵɵnextContext().$index;
|
|
97342
97344
|
const sectionList_r16 = i0.ɵɵnextContext();
|
|
97343
97345
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
97344
|
-
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r16[ɵ$
|
|
97346
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r16[ɵ$index_165_r15 + 1].icon);
|
|
97345
97347
|
} }
|
|
97346
97348
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
97347
|
-
i0.ɵɵelementStart(0, "div",
|
|
97348
|
-
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_2_Template, 2, 2, "div",
|
|
97349
|
-
i0.ɵɵelementStart(3, "div",
|
|
97349
|
+
i0.ɵɵelementStart(0, "div", 67)(1, "div", 68);
|
|
97350
|
+
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_2_Template, 2, 2, "div", 69);
|
|
97351
|
+
i0.ɵɵelementStart(3, "div", 70)(4, "h3", 53);
|
|
97350
97352
|
i0.ɵɵtext(5);
|
|
97351
97353
|
i0.ɵɵelementEnd()()();
|
|
97352
|
-
i0.ɵɵconditionalCreate(6, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Template, 3, 4, "div",
|
|
97353
|
-
i0.ɵɵelement(7, "symphiq-profile-section-content",
|
|
97354
|
+
i0.ɵɵconditionalCreate(6, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Template, 3, 4, "div", 71);
|
|
97355
|
+
i0.ɵɵelement(7, "symphiq-profile-section-content", 72);
|
|
97354
97356
|
i0.ɵɵelementEnd();
|
|
97355
|
-
i0.ɵɵconditionalCreate(8, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider",
|
|
97357
|
+
i0.ɵɵconditionalCreate(8, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider", 66);
|
|
97356
97358
|
} if (rf & 2) {
|
|
97357
97359
|
const section_r13 = ctx.$implicit;
|
|
97358
|
-
const ɵ$
|
|
97359
|
-
const ɵ$
|
|
97360
|
+
const ɵ$index_165_r15 = ctx.$index;
|
|
97361
|
+
const ɵ$count_165_r17 = ctx.$count;
|
|
97360
97362
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
97361
97363
|
i0.ɵɵproperty("id", "section-" + section_r13.id)("ngClass", ctx_r1.getSectionCardClasses());
|
|
97362
97364
|
i0.ɵɵadvance(2);
|
|
@@ -97368,9 +97370,9 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional
|
|
|
97368
97370
|
i0.ɵɵadvance();
|
|
97369
97371
|
i0.ɵɵconditional(section_r13.description || section_r13.visual && section_r13.visual.enabled ? 6 : -1);
|
|
97370
97372
|
i0.ɵɵadvance();
|
|
97371
|
-
i0.ɵɵproperty("section", section_r13)("executiveSummary", section_r13.id === "executive-summary" ? ctx_r1.executiveSummary() : undefined)("viewMode", ctx_r1.viewMode())("sectionIndex", ɵ$
|
|
97373
|
+
i0.ɵɵproperty("section", section_r13)("executiveSummary", section_r13.id === "executive-summary" ? ctx_r1.executiveSummary() : undefined)("viewMode", ctx_r1.viewMode())("sectionIndex", ɵ$index_165_r15)("allGoals", ctx_r1.allGoals())("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("allInsights", ctx_r1.allInsights())("businessProfile", ctx_r1.profile());
|
|
97372
97374
|
i0.ɵɵadvance();
|
|
97373
|
-
i0.ɵɵconditional(!(ɵ$
|
|
97375
|
+
i0.ɵɵconditional(!(ɵ$index_165_r15 === ɵ$count_165_r17 - 1) ? 8 : -1);
|
|
97374
97376
|
} }
|
|
97375
97377
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
97376
97378
|
i0.ɵɵelementStart(0, "section", 49);
|
|
@@ -97381,7 +97383,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional
|
|
|
97381
97383
|
i0.ɵɵrepeater(ctx);
|
|
97382
97384
|
} }
|
|
97383
97385
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
97384
|
-
i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Template,
|
|
97386
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Template, 37, 37, "section", 47);
|
|
97385
97387
|
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_1_Template, 1, 4, "symphiq-metric-executive-summary", 48);
|
|
97386
97388
|
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_2_Template, 1, 1);
|
|
97387
97389
|
i0.ɵɵconditionalCreate(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_Template, 3, 0, "section", 49);
|
|
@@ -97466,7 +97468,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_23_Template(rf
|
|
|
97466
97468
|
} }
|
|
97467
97469
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template(rf, ctx) { if (rf & 1) {
|
|
97468
97470
|
const _r26 = i0.ɵɵgetCurrentView();
|
|
97469
|
-
i0.ɵɵelementStart(0, "symphiq-sticky-subscription-continue-button",
|
|
97471
|
+
i0.ɵɵelementStart(0, "symphiq-sticky-subscription-continue-button", 80);
|
|
97470
97472
|
i0.ɵɵlistener("continueClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template_symphiq_sticky_subscription_continue_button_continueClick_0_listener() { i0.ɵɵrestoreView(_r26); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleStickyButtonClick()); });
|
|
97471
97473
|
i0.ɵɵelementEnd();
|
|
97472
97474
|
} if (rf & 2) {
|
|
@@ -97475,7 +97477,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template(rf
|
|
|
97475
97477
|
} }
|
|
97476
97478
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template(rf, ctx) { if (rf & 1) {
|
|
97477
97479
|
const _r27 = i0.ɵɵgetCurrentView();
|
|
97478
|
-
i0.ɵɵelementStart(0, "symphiq-profile-sticky-footer",
|
|
97480
|
+
i0.ɵɵelementStart(0, "symphiq-profile-sticky-footer", 81);
|
|
97479
97481
|
i0.ɵɵlistener("continueClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template_symphiq_profile_sticky_footer_continueClick_0_listener() { i0.ɵɵrestoreView(_r27); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleShopProfileContinueClick()); });
|
|
97480
97482
|
i0.ɵɵelementEnd();
|
|
97481
97483
|
} if (rf & 2) {
|
|
@@ -97484,18 +97486,18 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template(rf
|
|
|
97484
97486
|
} }
|
|
97485
97487
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_29_Template(rf, ctx) { if (rf & 1) {
|
|
97486
97488
|
const _r28 = i0.ɵɵgetCurrentView();
|
|
97487
|
-
i0.ɵɵelementStart(0, "div", 27)(1, "div",
|
|
97489
|
+
i0.ɵɵelementStart(0, "div", 27)(1, "div", 82)(2, "div", 83)(3, "button", 84);
|
|
97488
97490
|
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_29_Template_button_click_3_listener() { i0.ɵɵrestoreView(_r28); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleCancelCurrencyEdit()); });
|
|
97489
97491
|
i0.ɵɵtext(4, " Cancel ");
|
|
97490
97492
|
i0.ɵɵelementEnd();
|
|
97491
|
-
i0.ɵɵelementStart(5, "button",
|
|
97493
|
+
i0.ɵɵelementStart(5, "button", 85);
|
|
97492
97494
|
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_29_Template_button_click_5_listener() { i0.ɵɵrestoreView(_r28); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleContinueToPlans()); });
|
|
97493
97495
|
i0.ɵɵelementStart(6, "span");
|
|
97494
97496
|
i0.ɵɵtext(7, "Continue to Plans");
|
|
97495
97497
|
i0.ɵɵelementEnd();
|
|
97496
97498
|
i0.ɵɵnamespaceSVG();
|
|
97497
|
-
i0.ɵɵelementStart(8, "svg",
|
|
97498
|
-
i0.ɵɵelement(9, "path",
|
|
97499
|
+
i0.ɵɵelementStart(8, "svg", 86);
|
|
97500
|
+
i0.ɵɵelement(9, "path", 87);
|
|
97499
97501
|
i0.ɵɵelementEnd()()()()();
|
|
97500
97502
|
} if (rf & 2) {
|
|
97501
97503
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -98549,7 +98551,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
98549
98551
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.planSelectionContainer = _t.first);
|
|
98550
98552
|
} }, hostBindings: function SymphiqProfileShopAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
98551
98553
|
i0.ɵɵlistener("scroll", function SymphiqProfileShopAnalysisDashboardComponent_scroll_HostBindingHandler() { return ctx.onWindowScroll(); }, i0.ɵɵresolveWindow);
|
|
98552
|
-
} }, inputs: { viewMode: [1, "viewMode"], requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], embedded: [1, "embedded"], profileAnalysis: [1, "profileAnalysis"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], focusAreaDetails: [1, "focusAreaDetails"], account: [1, "account"], profileShop: [1, "profileShop"], profileShopQuestions: [1, "profileShopQuestions"], profileAnswers: [1, "profileAnswers"], profileAnswerHistories: [1, "profileAnswerHistories"], itemStatusProfileShop: [1, "itemStatusProfileShop"], itemStatusProfileAnalysis: [1, "itemStatusProfileAnalysis"], planCardInfos: [1, "planCardInfos"], isOnboarded: [1, "isOnboarded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], users: [1, "users"], isLoading: [1, "isLoading"], forDemo: [1, "forDemo"], currentUser: [1, "currentUser"], maxAccessibleStepId: [1, "maxAccessibleStepId"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", currencySelectionClick: "currencySelectionClick", editCurrencyClick: "editCurrencyClick", periodUnitChanged: "periodUnitChanged", planSelected: "planSelected", checkoutPlanClick: "checkoutPlanClick", answerShopProfileQuestions: "answerShopProfileQuestions", continueShopProfileQuestions: "continueShopProfileQuestions", profileQuestionAnswerSave: "profileQuestionAnswerSave", shopProfileAdminAnswerAction: "shopProfileAdminAnswerAction", markAsReviewedClick: "markAsReviewedClick" }, features: [i0.ɵɵNgOnChangesFeature], decls: 31, vars: 61, consts: [["shopProfileStatusCard", ""], ["planSelectionContainer", ""], [1, "relative", 3, "ngClass"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [3, "viewMode", "progress", "embedded"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "currentSection", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showSearchControl", "showViewModeControl", "embedded", "scrollEvent"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative", "z-10", "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-12", "space-y-12"], [1, "mb-12"], ["title", "Loading Your Shop Profile Analysis", "subtitle", "Please wait while we prepare your personalized insights...", "size", "large", 3, "viewMode", "backdropBlur"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "close", "isOpen", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode"], [3, "isLightMode", "allMetrics", "allInsights", "allBusinessInsights", "allCharts"], [3, "goal", "viewMode", "isInModal", "allMetrics", "allCharts", "allInsights", "currentModalState", "businessProfile"], [3, "objectives", "goalTitle", "viewMode"], [3, "objective", "goalTitle", "viewMode"], [3, "strategy", "objectiveTitle", "goalTitle", "viewMode", "expandedRecommendationId", "allMetrics", "allCharts", "allInsights", "allBusinessInsights", "currentModalState"], [3, "category", "viewMode", "scrollToSection"], [3, "strength", "viewMode", "allFunnelStrengths", "currentModalState"], [3, "gap", "viewMode", "allGoals", "allWeaknesses", "currentModalState"], [3, "opportunity", "viewMode", "allStrengths", "currentModalState"], [3, "isLightMode", "viewMode", "allMetrics", "allInsights", "allCharts"], [3, "isLightMode"], [3, "viewMode", "isEnabled", "isLoading"], [3, "viewMode", "totalQuestions", "answeredQuestions", "buttonConfig"], [1, "fixed", "bottom-0", "left-0", "right-0", "z-50", "border-t", "backdrop-blur-lg", 3, "ngClass"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed", "isLoading"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "businessName", "isOnboarded", "analysisDate", "isShopProfileComplete"], [3, "viewMode", "metricName", "isOnboarded", "analysisDate"], [1, "mb-8"], [3, "viewMode", "totalQuestions", "answeredQuestions", "questions", "profileAnswers", "profileAnswerHistories", "users", "config", "groupConfig", "currentUser"], [3, "startCategoryQuestions", "answerSave", "adminAnswerAction", "viewMode", "totalQuestions", "answeredQuestions", "questions", "profileAnswers", "profileAnswerHistories", "users", "config", "groupConfig", "currentUser"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], ["title", "Generating Your Shop Profile", "subtitle", "We're analyzing your data to create shop specific questions and answers. They will appear when ready.", 3, "itemStatus", "viewMode"], [3, "goals", "viewMode"], ["subtitle", "We're analyzing your data to create your personalized analysis. It will appear when ready.", 3, "itemStatus", "viewMode", "title"], [3, "viewMoreClick", "goals", "viewMode"], [3, "viewMode", "selectedCurrency"], [3, "currencySelected", "selectionChanged", "viewMode", "isLoading", "initialCurrency"], [3, "viewMode"], [1, "mb-32"], [3, "periodUnitChanged", "planSelected", "editCurrency", "checkout", "viewMode", "selectedCurrency", "planCardInfos", "isLoading", "selectedPeriodUnit"], [3, "editCurrency", "viewMode", "selectedCurrency"], [3, "sections", "viewMode", "executiveSummary", "metricExecutiveSummary", "metricName", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["id", "section-executive-summary", 1, "space-y-6", "scroll-mt-24"], [3, "viewMode", "summary", "metricName", "allGoals"], [1, "space-y-8"], [1, "rounded-2xl", "p-8", "shadow-xl", 3, "ngClass"], [1, "space-y-6"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "
|
|
98554
|
+
} }, inputs: { viewMode: [1, "viewMode"], requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], embedded: [1, "embedded"], profileAnalysis: [1, "profileAnalysis"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], focusAreaDetails: [1, "focusAreaDetails"], account: [1, "account"], profileShop: [1, "profileShop"], profileShopQuestions: [1, "profileShopQuestions"], profileAnswers: [1, "profileAnswers"], profileAnswerHistories: [1, "profileAnswerHistories"], itemStatusProfileShop: [1, "itemStatusProfileShop"], itemStatusProfileAnalysis: [1, "itemStatusProfileAnalysis"], planCardInfos: [1, "planCardInfos"], isOnboarded: [1, "isOnboarded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], users: [1, "users"], isLoading: [1, "isLoading"], forDemo: [1, "forDemo"], currentUser: [1, "currentUser"], maxAccessibleStepId: [1, "maxAccessibleStepId"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", currencySelectionClick: "currencySelectionClick", editCurrencyClick: "editCurrencyClick", periodUnitChanged: "periodUnitChanged", planSelected: "planSelected", checkoutPlanClick: "checkoutPlanClick", answerShopProfileQuestions: "answerShopProfileQuestions", continueShopProfileQuestions: "continueShopProfileQuestions", profileQuestionAnswerSave: "profileQuestionAnswerSave", shopProfileAdminAnswerAction: "shopProfileAdminAnswerAction", markAsReviewedClick: "markAsReviewedClick" }, features: [i0.ɵɵNgOnChangesFeature], decls: 31, vars: 61, consts: [["shopProfileStatusCard", ""], ["planSelectionContainer", ""], [1, "relative", 3, "ngClass"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [3, "viewMode", "progress", "embedded"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "currentSection", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showSearchControl", "showViewModeControl", "embedded", "scrollEvent"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative", "z-10", "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-12", "space-y-12"], [1, "mb-12"], ["title", "Loading Your Shop Profile Analysis", "subtitle", "Please wait while we prepare your personalized insights...", "size", "large", 3, "viewMode", "backdropBlur"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "close", "isOpen", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode"], [3, "isLightMode", "allMetrics", "allInsights", "allBusinessInsights", "allCharts"], [3, "goal", "viewMode", "isInModal", "allMetrics", "allCharts", "allInsights", "currentModalState", "businessProfile"], [3, "objectives", "goalTitle", "viewMode"], [3, "objective", "goalTitle", "viewMode"], [3, "strategy", "objectiveTitle", "goalTitle", "viewMode", "expandedRecommendationId", "allMetrics", "allCharts", "allInsights", "allBusinessInsights", "currentModalState"], [3, "category", "viewMode", "scrollToSection"], [3, "strength", "viewMode", "allFunnelStrengths", "currentModalState"], [3, "gap", "viewMode", "allGoals", "allWeaknesses", "currentModalState"], [3, "opportunity", "viewMode", "allStrengths", "currentModalState"], [3, "isLightMode", "viewMode", "allMetrics", "allInsights", "allCharts"], [3, "isLightMode"], [3, "viewMode", "isEnabled", "isLoading"], [3, "viewMode", "totalQuestions", "answeredQuestions", "buttonConfig"], [1, "fixed", "bottom-0", "left-0", "right-0", "z-50", "border-t", "backdrop-blur-lg", 3, "ngClass"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed", "isLoading"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "businessName", "isOnboarded", "analysisDate", "isShopProfileComplete"], [3, "viewMode", "metricName", "isOnboarded", "analysisDate"], [1, "mb-8"], [3, "viewMode", "totalQuestions", "answeredQuestions", "questions", "profileAnswers", "profileAnswerHistories", "users", "config", "groupConfig", "currentUser"], [3, "startCategoryQuestions", "answerSave", "adminAnswerAction", "viewMode", "totalQuestions", "answeredQuestions", "questions", "profileAnswers", "profileAnswerHistories", "users", "config", "groupConfig", "currentUser"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], ["title", "Generating Your Shop Profile", "subtitle", "We're analyzing your data to create shop specific questions and answers. They will appear when ready.", 3, "itemStatus", "viewMode"], [3, "goals", "viewMode"], ["subtitle", "We're analyzing your data to create your personalized analysis. It will appear when ready.", 3, "itemStatus", "viewMode", "title"], [3, "viewMoreClick", "goals", "viewMode"], [3, "viewMode", "selectedCurrency"], [3, "currencySelected", "selectionChanged", "viewMode", "isLoading", "initialCurrency"], [3, "viewMode"], [1, "mb-32"], [3, "periodUnitChanged", "planSelected", "editCurrency", "checkout", "viewMode", "selectedCurrency", "planCardInfos", "isLoading", "selectedPeriodUnit"], [3, "editCurrency", "viewMode", "selectedCurrency"], [3, "sections", "viewMode", "executiveSummary", "metricExecutiveSummary", "metricName", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["id", "section-executive-summary", 1, "space-y-6", "scroll-mt-24"], [3, "viewMode", "summary", "metricName", "allGoals"], [1, "space-y-8"], [1, "rounded-2xl", "p-8", "shadow-xl", 3, "ngClass"], [1, "space-y-6"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "text-2xl", "font-bold", 3, "ngClass"], [3, "grade", "gradeRationale", "viewMode"], [3, "viewMode", "narrative", "napkinVisual"], [1, "grid", "grid-cols-1", "md:grid-cols-3", "gap-4"], ["type", "button", 1, "p-4", "rounded-xl", "text-left", "transition-all", "duration-200", "hover:scale-[1.02]", "active:scale-[0.98]", "group", "cursor-pointer", 3, "click", "ngClass"], [1, "text-xs", "font-semibold", "uppercase", "mb-1", 3, "ngClass"], [1, "text-3xl", "font-bold", "mb-2", 3, "ngClass"], [1, "flex", "items-center", "gap-1.5", "text-xs", "font-medium"], [3, "ngClass"], ["size", "w-4 h-4", 1, "transition-transform", "group-hover:translate-x-1", 3, "icon", "ngClass"], ["size", "w-4 h-4", 1, "transition-transform", "group-hover:translate-y-1", "animate-bounce", 3, "icon", "ngClass"], [3, "viewMode", "quickWins", "allGoals"], [3, "topPrioritiesClick", "priorityDetailClick", "viewMetricDetailsClick", "viewMode", "summary", "metricName", "allGoals"], [3, "viewMode", "sectionIcon"], [1, "rounded-xl", "p-8", "scroll-mt-24", 3, "id", "ngClass"], [1, "flex", "items-start", "gap-3", "mb-6"], [1, "flex-shrink-0", "w-12", "h-12", "rounded-xl", "flex", "items-center", "justify-center", 3, "ngClass"], [1, "flex-1"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start", 3, "lg:flex-row-reverse"], [3, "section", "executiveSummary", "viewMode", "sectionIndex", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["size", "w-6 h-6", 3, "icon"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start"], [1, "w-full", "lg:w-2/3"], [1, "w-full", 3, "lg:w-1/3", "lg:w-full"], [3, "visual", "viewMode"], [1, "w-full"], [1, "text-sm", "leading-relaxed", "whitespace-pre-line", 3, "ngClass"], [3, "continueClick", "viewMode", "isEnabled", "isLoading"], [3, "continueClick", "viewMode", "totalQuestions", "answeredQuestions", "buttonConfig"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4"], [1, "flex", "items-center", "gap-4"], [1, "px-6", "py-4", "rounded-xl", "font-semibold", "text-lg", "transition-all", "duration-300", "cursor-pointer", 3, "click", "ngClass"], [1, "flex-1", "px-6", "py-4", "rounded-xl", "font-semibold", "text-lg", "transition-all", "duration-300", "flex", "items-center", "justify-center", "gap-3", "shadow-2xl", 3, "click", "disabled", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", "transition-transform", "duration-200"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 7l5 5m0 0l-5 5m5-5H6"]], template: function SymphiqProfileShopAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
98553
98555
|
i0.ɵɵelementStart(0, "div", 2);
|
|
98554
98556
|
i0.ɵɵelement(1, "div", 3)(2, "symphiq-scroll-progress-bar", 4);
|
|
98555
98557
|
i0.ɵɵelementStart(3, "div", 5)(4, "symphiq-dashboard-header", 6);
|
|
@@ -98915,14 +98917,9 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
98915
98917
|
<div [ngClass]="getBannerClasses()" class="rounded-2xl p-8 shadow-xl">
|
|
98916
98918
|
<div class="space-y-6">
|
|
98917
98919
|
<div class="flex items-start justify-between gap-4">
|
|
98918
|
-
<
|
|
98919
|
-
|
|
98920
|
-
|
|
98921
|
-
</h2>
|
|
98922
|
-
<p [ngClass]="getTextClasses()" class="text-lg leading-relaxed">
|
|
98923
|
-
{{ summary.gradeRationale }}
|
|
98924
|
-
</p>
|
|
98925
|
-
</div>
|
|
98920
|
+
<h2 [ngClass]="getSectionTitleClasses()" class="text-2xl font-bold">
|
|
98921
|
+
Executive Summary
|
|
98922
|
+
</h2>
|
|
98926
98923
|
@if (summary.overallGrade) {
|
|
98927
98924
|
<symphiq-grade-badge
|
|
98928
98925
|
[grade]="summary.overallGrade"
|
|
@@ -99325,7 +99322,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
99325
99322
|
type: HostListener,
|
|
99326
99323
|
args: ['window:scroll']
|
|
99327
99324
|
}] }); })();
|
|
99328
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileShopAnalysisDashboardComponent, { className: "SymphiqProfileShopAnalysisDashboardComponent", filePath: "lib/components/profile-analysis-shop-dashboard/symphiq-profile-shop-analysis-dashboard.component.ts", lineNumber:
|
|
99325
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileShopAnalysisDashboardComponent, { className: "SymphiqProfileShopAnalysisDashboardComponent", filePath: "lib/components/profile-analysis-shop-dashboard/symphiq-profile-shop-analysis-dashboard.component.ts", lineNumber: 779 }); })();
|
|
99329
99326
|
|
|
99330
99327
|
function ContinueFooterComponent_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
99331
99328
|
i0.ɵɵnamespaceSVG();
|
|
@@ -107125,7 +107122,9 @@ function UnifiedGoalsProgressFooterComponent_Conditional_13_Template(rf, ctx) {
|
|
|
107125
107122
|
i0.ɵɵelement(2, "path", 20);
|
|
107126
107123
|
i0.ɵɵelementEnd();
|
|
107127
107124
|
i0.ɵɵtext(3, " Integrate Goals ");
|
|
107128
|
-
i0.ɵɵ
|
|
107125
|
+
i0.ɵɵelementStart(4, "svg", 19);
|
|
107126
|
+
i0.ɵɵelement(5, "path", 21);
|
|
107127
|
+
i0.ɵɵelementEnd()();
|
|
107129
107128
|
} if (rf & 2) {
|
|
107130
107129
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
107131
107130
|
i0.ɵɵproperty("ngClass", ctx_r0.integrateButtonClasses());
|
|
@@ -107209,7 +107208,7 @@ class UnifiedGoalsProgressFooterComponent {
|
|
|
107209
107208
|
this.integrateGoals.emit(this.goalActionStateService.getOutput(this.goalIds()));
|
|
107210
107209
|
}
|
|
107211
107210
|
static { this.ɵfac = function UnifiedGoalsProgressFooterComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || UnifiedGoalsProgressFooterComponent)(); }; }
|
|
107212
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedGoalsProgressFooterComponent, selectors: [["symphiq-unified-goals-progress-footer"]], inputs: { goalIds: [1, "goalIds"], viewMode: [1, "viewMode"] }, outputs: { integrateGoals: "integrateGoals" }, decls: 15, vars: 11, consts: [[1, "fixed", "bottom-0", "left-0", "right-0", "z-100", "border-t", "backdrop-blur-xl", "transition-all", "duration-300", 3, "ngClass"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4"], [1, "flex", "flex-col", "sm:flex-row", "items-center", "justify-between", "gap-4"], [1, "flex-1", "w-full", "sm:w-auto"], [1, "flex", "items-center", "justify-between", "mb-2"], [1, "text-sm", "font-medium", 3, "ngClass"], [1, "text-sm", "font-semibold", 3, "ngClass"], [1, "h-2", "rounded-full", "overflow-hidden", 3, "ngClass"], [1, "h-full", "rounded-full", "transition-all", "duration-500", "ease-out", 3, "ngClass"], [1, "flex", "items-center", "gap-4", "mt-2"], [1, "flex", "items-center", "gap-3"], ["type", "button", 1, "inline-flex", "items-center", "gap-
|
|
107211
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedGoalsProgressFooterComponent, selectors: [["symphiq-unified-goals-progress-footer"]], inputs: { goalIds: [1, "goalIds"], viewMode: [1, "viewMode"] }, outputs: { integrateGoals: "integrateGoals" }, decls: 15, vars: 11, consts: [[1, "fixed", "bottom-0", "left-0", "right-0", "z-100", "border-t", "backdrop-blur-xl", "transition-all", "duration-300", 3, "ngClass"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4"], [1, "flex", "flex-col", "sm:flex-row", "items-center", "justify-between", "gap-4"], [1, "flex-1", "w-full", "sm:w-auto"], [1, "flex", "items-center", "justify-between", "mb-2"], [1, "text-sm", "font-medium", 3, "ngClass"], [1, "text-sm", "font-semibold", 3, "ngClass"], [1, "h-2", "rounded-full", "overflow-hidden", 3, "ngClass"], [1, "h-full", "rounded-full", "transition-all", "duration-500", "ease-out", 3, "ngClass"], [1, "flex", "items-center", "gap-4", "mt-2"], [1, "flex", "items-center", "gap-3"], ["type", "button", 1, "w-full", "sm:w-auto", "inline-flex", "items-center", "justify-center", "gap-3", "px-8", "py-3.5", "rounded-xl", "font-bold", "text-base", "transition-all", "duration-200", "hover:scale-105", "active:scale-95", "cursor-pointer", "animate-integrate-glow", "hover-glow", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "flex", "items-center", "gap-1.5"], [1, "w-2", "h-2", "rounded-full", "bg-emerald-500"], [1, "text-xs", 3, "ngClass"], [1, "w-2", "h-2", "rounded-full", "bg-amber-500"], [1, "w-2", "h-2", "rounded-full", "bg-slate-400"], ["type", "button", 1, "w-full", "sm:w-auto", "inline-flex", "items-center", "justify-center", "gap-3", "px-8", "py-3.5", "rounded-xl", "font-bold", "text-base", "transition-all", "duration-200", "hover:scale-105", "active:scale-95", "cursor-pointer", "animate-integrate-glow", "hover-glow", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 10V3L4 14h7v7l9-11h-7z"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"]], template: function UnifiedGoalsProgressFooterComponent_Template(rf, ctx) { if (rf & 1) {
|
|
107213
107212
|
i0.ɵɵelementStart(0, "div", 0)(1, "div", 1)(2, "div", 2)(3, "div", 3)(4, "div", 4)(5, "span", 5);
|
|
107214
107213
|
i0.ɵɵtext(6, " Goals Reviewed ");
|
|
107215
107214
|
i0.ɵɵelementEnd();
|
|
@@ -107222,7 +107221,7 @@ class UnifiedGoalsProgressFooterComponent {
|
|
|
107222
107221
|
i0.ɵɵconditionalCreate(11, UnifiedGoalsProgressFooterComponent_Conditional_11_Template, 4, 3, "div", 9);
|
|
107223
107222
|
i0.ɵɵelementEnd();
|
|
107224
107223
|
i0.ɵɵelementStart(12, "div", 10);
|
|
107225
|
-
i0.ɵɵconditionalCreate(13, UnifiedGoalsProgressFooterComponent_Conditional_13_Template,
|
|
107224
|
+
i0.ɵɵconditionalCreate(13, UnifiedGoalsProgressFooterComponent_Conditional_13_Template, 6, 1, "button", 11)(14, UnifiedGoalsProgressFooterComponent_Conditional_14_Template, 2, 1, "div", 12);
|
|
107226
107225
|
i0.ɵɵelementEnd()()()();
|
|
107227
107226
|
} if (rf & 2) {
|
|
107228
107227
|
i0.ɵɵproperty("ngClass", ctx.containerClasses());
|
|
@@ -107241,16 +107240,11 @@ class UnifiedGoalsProgressFooterComponent {
|
|
|
107241
107240
|
i0.ɵɵconditional(ctx.completedCount() > 0 ? 11 : -1);
|
|
107242
107241
|
i0.ɵɵadvance(2);
|
|
107243
107242
|
i0.ɵɵconditional(ctx.allReviewed() ? 13 : 14);
|
|
107244
|
-
} }, dependencies: [CommonModule, i1$1.NgClass],
|
|
107243
|
+
} }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_integrate-glow{0%,to{box-shadow:0 0 20px #10b98166,0 0 40px #06b6d433}50%{box-shadow:0 0 30px 5px #10b98199,0 0 60px 5px #06b6d44d}}.animate-integrate-glow[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_integrate-glow 2s ease-in-out infinite}.hover-glow[_ngcontent-%COMP%]:hover{box-shadow:0 0 35px 8px #10b981b3,0 0 70px 10px #06b6d466}"], changeDetection: 0 }); }
|
|
107245
107244
|
}
|
|
107246
107245
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UnifiedGoalsProgressFooterComponent, [{
|
|
107247
107246
|
type: Component,
|
|
107248
|
-
args: [{
|
|
107249
|
-
selector: 'symphiq-unified-goals-progress-footer',
|
|
107250
|
-
standalone: true,
|
|
107251
|
-
imports: [CommonModule],
|
|
107252
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
107253
|
-
template: `
|
|
107247
|
+
args: [{ selector: 'symphiq-unified-goals-progress-footer', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
107254
107248
|
<div [ngClass]="containerClasses()" class="fixed bottom-0 left-0 right-0 z-100 border-t backdrop-blur-xl transition-all duration-300">
|
|
107255
107249
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4">
|
|
107256
107250
|
<div class="flex flex-col sm:flex-row items-center justify-between gap-4">
|
|
@@ -107300,11 +107294,14 @@ class UnifiedGoalsProgressFooterComponent {
|
|
|
107300
107294
|
type="button"
|
|
107301
107295
|
(click)="onIntegrateClick()"
|
|
107302
107296
|
[ngClass]="integrateButtonClasses()"
|
|
107303
|
-
class="inline-flex items-center gap-
|
|
107297
|
+
class="w-full sm:w-auto inline-flex items-center justify-center gap-3 px-8 py-3.5 rounded-xl font-bold text-base transition-all duration-200 hover:scale-105 active:scale-95 cursor-pointer animate-integrate-glow hover-glow">
|
|
107304
107298
|
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
107305
107299
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/>
|
|
107306
107300
|
</svg>
|
|
107307
107301
|
Integrate Goals
|
|
107302
|
+
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
107303
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
|
|
107304
|
+
</svg>
|
|
107308
107305
|
</button>
|
|
107309
107306
|
} @else {
|
|
107310
107307
|
<div [ngClass]="hintClasses()" class="text-sm">
|
|
@@ -107315,10 +107312,9 @@ class UnifiedGoalsProgressFooterComponent {
|
|
|
107315
107312
|
</div>
|
|
107316
107313
|
</div>
|
|
107317
107314
|
</div>
|
|
107318
|
-
|
|
107319
|
-
}]
|
|
107315
|
+
`, styles: ["@keyframes integrate-glow{0%,to{box-shadow:0 0 20px #10b98166,0 0 40px #06b6d433}50%{box-shadow:0 0 30px 5px #10b98199,0 0 60px 5px #06b6d44d}}.animate-integrate-glow{animation:integrate-glow 2s ease-in-out infinite}.hover-glow:hover{box-shadow:0 0 35px 8px #10b981b3,0 0 70px 10px #06b6d466}\n"] }]
|
|
107320
107316
|
}], null, { goalIds: [{ type: i0.Input, args: [{ isSignal: true, alias: "goalIds", required: true }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], integrateGoals: [{ type: i0.Output, args: ["integrateGoals"] }] }); })();
|
|
107321
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedGoalsProgressFooterComponent, { className: "UnifiedGoalsProgressFooterComponent", filePath: "lib/components/profile-analysis-unified-dashboard/unified-goals-progress-footer.component.ts", lineNumber:
|
|
107317
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedGoalsProgressFooterComponent, { className: "UnifiedGoalsProgressFooterComponent", filePath: "lib/components/profile-analysis-unified-dashboard/unified-goals-progress-footer.component.ts", lineNumber: 97 }); })();
|
|
107322
107318
|
|
|
107323
107319
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
107324
107320
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
@@ -107327,21 +107323,21 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_5_Template(
|
|
|
107327
107323
|
i0.ɵɵelementEnd();
|
|
107328
107324
|
} if (rf & 2) {
|
|
107329
107325
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
107330
|
-
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentStepId", ctx_r1.JourneyStepIdEnum.UNIFIED_ANALYSIS)("showNextStepAction",
|
|
107326
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentStepId", ctx_r1.JourneyStepIdEnum.UNIFIED_ANALYSIS)("showNextStepAction", ctx_r1.allGoalsReviewed())("forDemo", ctx_r1.forDemo())("maxAccessibleStepId", ctx_r1.maxAccessibleStepId());
|
|
107331
107327
|
} }
|
|
107332
107328
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
107333
|
-
i0.ɵɵelement(0, "symphiq-loading-card",
|
|
107329
|
+
i0.ɵɵelement(0, "symphiq-loading-card", 17);
|
|
107334
107330
|
} if (rf & 2) {
|
|
107335
107331
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
107336
107332
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("backdropBlur", true);
|
|
107337
107333
|
} }
|
|
107338
107334
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
107339
107335
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
107340
|
-
i0.ɵɵelement(0, "symphiq-unified-welcome-banner",
|
|
107341
|
-
i0.ɵɵelementStart(1, "symphiq-unified-goals-grid",
|
|
107336
|
+
i0.ɵɵelement(0, "symphiq-unified-welcome-banner", 18);
|
|
107337
|
+
i0.ɵɵelementStart(1, "symphiq-unified-goals-grid", 19);
|
|
107342
107338
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_unified_goals_grid_goalClick_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); })("sourceBadgeClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_unified_goals_grid_sourceBadgeClick_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onSourceBadgeClickFromCard($event)); })("relatedMetricsClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_unified_goals_grid_relatedMetricsClick_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onRelatedMetricsClickFromCard($event)); });
|
|
107343
107339
|
i0.ɵɵelementEnd();
|
|
107344
|
-
i0.ɵɵelementStart(2, "symphiq-collapsible-analysis-section-group",
|
|
107340
|
+
i0.ɵɵelementStart(2, "symphiq-collapsible-analysis-section-group", 20);
|
|
107345
107341
|
i0.ɵɵlistener("unifiedGoalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_collapsible_analysis_section_group_unifiedGoalClick_2_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); })("viewAllPriorityActionsClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_collapsible_analysis_section_group_viewAllPriorityActionsClick_2_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onViewAllPriorityActionsClick()); });
|
|
107346
107342
|
i0.ɵɵelementEnd();
|
|
107347
107343
|
} if (rf & 2) {
|
|
@@ -107354,20 +107350,20 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Condition
|
|
|
107354
107350
|
} }
|
|
107355
107351
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
107356
107352
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
107357
|
-
i0.ɵɵelement(0, "symphiq-unified-welcome-banner",
|
|
107358
|
-
i0.ɵɵelementStart(1, "symphiq-unified-executive-summary",
|
|
107353
|
+
i0.ɵɵelement(0, "symphiq-unified-welcome-banner", 18);
|
|
107354
|
+
i0.ɵɵelementStart(1, "symphiq-unified-executive-summary", 21);
|
|
107359
107355
|
i0.ɵɵlistener("viewAllPriorityActionsClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_executive_summary_viewAllPriorityActionsClick_1_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onViewAllPriorityActionsClick()); });
|
|
107360
107356
|
i0.ɵɵelementEnd();
|
|
107361
|
-
i0.ɵɵelementStart(2, "symphiq-unified-goals-grid",
|
|
107357
|
+
i0.ɵɵelementStart(2, "symphiq-unified-goals-grid", 22);
|
|
107362
107358
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_goals_grid_goalClick_2_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); })("sourceBadgeClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_goals_grid_sourceBadgeClick_2_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onSourceBadgeClickFromCard($event)); })("relatedMetricsClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_goals_grid_relatedMetricsClick_2_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onRelatedMetricsClickFromCard($event)); });
|
|
107363
107359
|
i0.ɵɵelementEnd();
|
|
107364
|
-
i0.ɵɵelementStart(3, "symphiq-unified-timeline",
|
|
107360
|
+
i0.ɵɵelementStart(3, "symphiq-unified-timeline", 23);
|
|
107365
107361
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_timeline_goalClick_3_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); });
|
|
107366
107362
|
i0.ɵɵelementEnd();
|
|
107367
|
-
i0.ɵɵelementStart(4, "symphiq-unified-priority-matrix",
|
|
107363
|
+
i0.ɵɵelementStart(4, "symphiq-unified-priority-matrix", 24);
|
|
107368
107364
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_priority_matrix_goalClick_4_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); });
|
|
107369
107365
|
i0.ɵɵelementEnd();
|
|
107370
|
-
i0.ɵɵelementStart(5, "symphiq-unified-next-steps",
|
|
107366
|
+
i0.ɵɵelementStart(5, "symphiq-unified-next-steps", 25);
|
|
107371
107367
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_next_steps_goalClick_5_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); });
|
|
107372
107368
|
i0.ɵɵelementEnd();
|
|
107373
107369
|
} if (rf & 2) {
|
|
@@ -107385,13 +107381,14 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Condition
|
|
|
107385
107381
|
i0.ɵɵproperty("steps", ctx_r1.nextSteps())("viewMode", ctx_r1.viewMode())("goals", ctx_r1.unifiedGoals());
|
|
107386
107382
|
} }
|
|
107387
107383
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
107388
|
-
i0.ɵɵelementStart(0, "main",
|
|
107389
|
-
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_1_Template, 1, 2, "symphiq-loading-card",
|
|
107384
|
+
i0.ɵɵelementStart(0, "main", 16);
|
|
107385
|
+
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_1_Template, 1, 2, "symphiq-loading-card", 17);
|
|
107390
107386
|
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template, 3, 22);
|
|
107391
107387
|
i0.ɵɵconditionalCreate(3, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template, 6, 24);
|
|
107392
107388
|
i0.ɵɵelementEnd();
|
|
107393
107389
|
} if (rf & 2) {
|
|
107394
107390
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
107391
|
+
i0.ɵɵclassProp("pb-36", ctx_r1.shouldShowProgressFooter());
|
|
107395
107392
|
i0.ɵɵadvance();
|
|
107396
107393
|
i0.ɵɵconditional(ctx_r1.isSimplifiedView() && ctx_r1.isLoading() ? 1 : -1);
|
|
107397
107394
|
i0.ɵɵadvance();
|
|
@@ -107407,7 +107404,7 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_7_Template(
|
|
|
107407
107404
|
} }
|
|
107408
107405
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
107409
107406
|
const _r5 = i0.ɵɵgetCurrentView();
|
|
107410
|
-
i0.ɵɵelementStart(0, "symphiq-search-modal",
|
|
107407
|
+
i0.ɵɵelementStart(0, "symphiq-search-modal", 26);
|
|
107411
107408
|
i0.ɵɵlistener("close", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_8_Template_symphiq_search_modal_close_0_listener() { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.closeSearch()); });
|
|
107412
107409
|
i0.ɵɵelementEnd();
|
|
107413
107410
|
} if (rf & 2) {
|
|
@@ -107416,7 +107413,7 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_8_Template(
|
|
|
107416
107413
|
} }
|
|
107417
107414
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
107418
107415
|
const _r6 = i0.ɵɵgetCurrentView();
|
|
107419
|
-
i0.ɵɵelementStart(0, "symphiq-view-mode-switcher-modal",
|
|
107416
|
+
i0.ɵɵelementStart(0, "symphiq-view-mode-switcher-modal", 27);
|
|
107420
107417
|
i0.ɵɵlistener("close", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_9_Template_symphiq_view_mode_switcher_modal_close_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.closeViewModeSwitcher()); })("modeSelected", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_9_Template_symphiq_view_mode_switcher_modal_modeSelected_0_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleDisplayModeChange($event)); });
|
|
107421
107418
|
i0.ɵɵelementEnd();
|
|
107422
107419
|
} if (rf & 2) {
|
|
@@ -107431,7 +107428,7 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_10_Template
|
|
|
107431
107428
|
} }
|
|
107432
107429
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_15_Template(rf, ctx) { if (rf & 1) {
|
|
107433
107430
|
const _r7 = i0.ɵɵgetCurrentView();
|
|
107434
|
-
i0.ɵɵelementStart(0, "symphiq-unified-goals-progress-footer",
|
|
107431
|
+
i0.ɵɵelementStart(0, "symphiq-unified-goals-progress-footer", 28);
|
|
107435
107432
|
i0.ɵɵlistener("integrateGoals", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_15_Template_symphiq_unified_goals_progress_footer_integrateGoals_0_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.onIntegrateGoals($event)); });
|
|
107436
107433
|
i0.ɵɵelementEnd();
|
|
107437
107434
|
} if (rf & 2) {
|
|
@@ -107464,6 +107461,8 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
107464
107461
|
this.modalService = inject(ModalService);
|
|
107465
107462
|
this.viewModeService = inject(ViewModeService);
|
|
107466
107463
|
this.profileContextService = inject(ProfileContextService);
|
|
107464
|
+
this.profileItemLookupService = inject(ProfileItemLookupService);
|
|
107465
|
+
this.goalActionStateService = inject(GoalActionStateService);
|
|
107467
107466
|
this.IconSourceEnum = IconSourceEnum;
|
|
107468
107467
|
this.ProfileAnalysisTypeEnum = ProfileAnalysisTypeEnum;
|
|
107469
107468
|
this.JourneyStepIdEnum = JourneyStepIdEnum;
|
|
@@ -107561,6 +107560,14 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
107561
107560
|
this.unifiedGoalIds = computed(() => {
|
|
107562
107561
|
return this.unifiedGoals().map(g => g.id).filter((id) => !!id);
|
|
107563
107562
|
}, ...(ngDevMode ? [{ debugName: "unifiedGoalIds" }] : []));
|
|
107563
|
+
this.allGoalsReviewed = computed(() => {
|
|
107564
|
+
this.goalActionStateService.states();
|
|
107565
|
+
const goalIds = this.unifiedGoalIds();
|
|
107566
|
+
if (goalIds.length === 0)
|
|
107567
|
+
return false;
|
|
107568
|
+
const states = this.goalActionStateService.getStatesByGoalIds(goalIds);
|
|
107569
|
+
return Object.keys(states).length === goalIds.length;
|
|
107570
|
+
}, ...(ngDevMode ? [{ debugName: "allGoalsReviewed" }] : []));
|
|
107564
107571
|
this.shouldShowProgressFooter = computed(() => {
|
|
107565
107572
|
const goals = this.unifiedGoals();
|
|
107566
107573
|
return goals.length > 0 && !this.isLoading() && !this.isGenerating();
|
|
@@ -107837,6 +107844,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
107837
107844
|
const recommendations = profileToUse.profileStructured?.recommendations || [];
|
|
107838
107845
|
console.log('[UnifiedDashboard] profileIndexEffect - calling indexProfile with', profileToUse.profileStructured.sections.length, 'sections and', recommendations.length, 'recommendations');
|
|
107839
107846
|
this.profileContextService.indexProfile(profileToUse.profileStructured.sections, recommendations);
|
|
107847
|
+
this.profileItemLookupService.setProfile(profileToUse);
|
|
107840
107848
|
}
|
|
107841
107849
|
else {
|
|
107842
107850
|
console.log('[UnifiedDashboard] profileIndexEffect - NO profile data to index');
|
|
@@ -108079,6 +108087,18 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
108079
108087
|
const sections = structured?.sections || [];
|
|
108080
108088
|
const goals = sections.flatMap(section => section.goals || []);
|
|
108081
108089
|
const goal = goals.find(g => g.id === sourceGoalId);
|
|
108090
|
+
const recommendations = [];
|
|
108091
|
+
for (const g of goals) {
|
|
108092
|
+
for (const obj of g.objectives || []) {
|
|
108093
|
+
for (const strat of obj.strategies || []) {
|
|
108094
|
+
for (const rec of strat.recommendations || []) {
|
|
108095
|
+
recommendations.push(rec);
|
|
108096
|
+
}
|
|
108097
|
+
}
|
|
108098
|
+
}
|
|
108099
|
+
}
|
|
108100
|
+
console.log('[SourceAnalysis] openSourceGoalModal - adding', recommendations.length, 'source analysis recommendations');
|
|
108101
|
+
this.profileContextService.addRecommendations(recommendations);
|
|
108082
108102
|
if (goal) {
|
|
108083
108103
|
const currentModalState = this.modalService.getCurrentState();
|
|
108084
108104
|
if (analysisType) {
|
|
@@ -108362,14 +108382,14 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
108362
108382
|
static { this.ɵfac = function SymphiqProfileAnalysisUnifiedDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqProfileAnalysisUnifiedDashboardComponent)(); }; }
|
|
108363
108383
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqProfileAnalysisUnifiedDashboardComponent, selectors: [["symphiq-profile-analysis-unified-dashboard"]], hostBindings: function SymphiqProfileAnalysisUnifiedDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
108364
108384
|
i0.ɵɵlistener("scroll", function SymphiqProfileAnalysisUnifiedDashboardComponent_scroll_HostBindingHandler() { return ctx.onScroll(); }, i0.ɵɵresolveWindow);
|
|
108365
|
-
} }, inputs: { viewMode: [1, "viewMode"], embedded: [1, "embedded"], isLoading: [1, "isLoading"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], unifiedProfileAnalysis: [1, "unifiedProfileAnalysis"], sourceProfileAnalyses: [1, "sourceProfileAnalyses"], isLoadingSourceAnalysis: [1, "isLoadingSourceAnalysis"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"], requestedByUser: [1, "requestedByUser"] }, outputs: { generateGoalsClick: "generateGoalsClick", stepClick: "stepClick", nextStepClick: "nextStepClick", sourceAnalysisRequest: "sourceAnalysisRequest", integrateGoalsClick: "integrateGoalsClick" }, features: [i0.ɵɵNgOnChangesFeature], decls: 16, vars: 33, consts: [[1, "relative"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [3, "viewMode", "progress", "embedded"], [1, "relative", "z-51"], [3, "searchClick", "viewModeClick", "title", "subtitle", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "showSearchControl", "showViewModeControl", "embedded", "scrollEvent"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative", "z-10", "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-12", "space-y-12"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "isLightMode", "isOpen"], [3, "viewMode", "currentMode", "isOpen"], [3, "viewMode", "itemStatus", "currentStatus", "confettiIntensity", "title"], [3, "priorityActionGoalClick", "priorityActionRecommendationClick", "sourceAnalysisClickRequest", "viewMode", "loadingSourceAnalysisId", "loadedSourceAnalysisIds"], [3, "isLightMode"], [3, "isLightMode", "allInsights", "allMetrics", "allCharts", "allBusinessInsights"], [3, "goalIds", "viewMode"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], ["title", "Loading Your Unified Analysis", "subtitle", "Please wait while we prepare your synthesized insights...", "size", "large", 3, "viewMode", "backdropBlur"], [1, "mb-12", "block", 3, "viewMode", "businessName", "isOnboarded", "analysisDate", "isUnifiedAnalysisComplete", "sourceAnalysesCount", "unifiedGoalsCount", "sourceGoalsCount", "goalIds"], [1, "mb-12", "block", 3, "goalClick", "sourceBadgeClick", "relatedMetricsClick", "goals", "viewMode"], [3, "unifiedGoalClick", "viewAllPriorityActionsClick", "sections", "viewMode", "unifiedExecutiveSummary", "unifiedTimeline", "unifiedPriorityMatrix", "unifiedNextSteps", "unifiedGoals", "shopCounts", "focusAreaCounts", "metricCounts", "storageKey"], [3, "viewAllPriorityActionsClick", "summary", "viewMode", "shopCounts", "focusAreaCounts", "metricCounts"], [3, "goalClick", "sourceBadgeClick", "relatedMetricsClick", "goals", "viewMode"], [3, "goalClick", "timeline", "viewMode", "goals"], [3, "goalClick", "matrix", "viewMode"], [3, "goalClick", "steps", "viewMode", "goals"], [3, "close", "isLightMode", "isOpen"], [3, "close", "modeSelected", "viewMode", "currentMode", "isOpen"], [3, "integrateGoals", "goalIds", "viewMode"]], template: function SymphiqProfileAnalysisUnifiedDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
108385
|
+
} }, inputs: { viewMode: [1, "viewMode"], embedded: [1, "embedded"], isLoading: [1, "isLoading"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], unifiedProfileAnalysis: [1, "unifiedProfileAnalysis"], sourceProfileAnalyses: [1, "sourceProfileAnalyses"], isLoadingSourceAnalysis: [1, "isLoadingSourceAnalysis"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"], requestedByUser: [1, "requestedByUser"] }, outputs: { generateGoalsClick: "generateGoalsClick", stepClick: "stepClick", nextStepClick: "nextStepClick", sourceAnalysisRequest: "sourceAnalysisRequest", integrateGoalsClick: "integrateGoalsClick" }, features: [i0.ɵɵNgOnChangesFeature], decls: 16, vars: 33, consts: [[1, "relative"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [3, "viewMode", "progress", "embedded"], [1, "relative", "z-51"], [3, "searchClick", "viewModeClick", "title", "subtitle", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "showSearchControl", "showViewModeControl", "embedded", "scrollEvent"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative", "z-10", "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-12", "space-y-12", 3, "pb-36"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "isLightMode", "isOpen"], [3, "viewMode", "currentMode", "isOpen"], [3, "viewMode", "itemStatus", "currentStatus", "confettiIntensity", "title"], [3, "priorityActionGoalClick", "priorityActionRecommendationClick", "sourceAnalysisClickRequest", "viewMode", "loadingSourceAnalysisId", "loadedSourceAnalysisIds"], [3, "isLightMode"], [3, "isLightMode", "allInsights", "allMetrics", "allCharts", "allBusinessInsights"], [3, "goalIds", "viewMode"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative", "z-10", "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-12", "space-y-12"], ["title", "Loading Your Unified Analysis", "subtitle", "Please wait while we prepare your synthesized insights...", "size", "large", 3, "viewMode", "backdropBlur"], [1, "mb-12", "block", 3, "viewMode", "businessName", "isOnboarded", "analysisDate", "isUnifiedAnalysisComplete", "sourceAnalysesCount", "unifiedGoalsCount", "sourceGoalsCount", "goalIds"], [1, "mb-12", "block", 3, "goalClick", "sourceBadgeClick", "relatedMetricsClick", "goals", "viewMode"], [3, "unifiedGoalClick", "viewAllPriorityActionsClick", "sections", "viewMode", "unifiedExecutiveSummary", "unifiedTimeline", "unifiedPriorityMatrix", "unifiedNextSteps", "unifiedGoals", "shopCounts", "focusAreaCounts", "metricCounts", "storageKey"], [3, "viewAllPriorityActionsClick", "summary", "viewMode", "shopCounts", "focusAreaCounts", "metricCounts"], [3, "goalClick", "sourceBadgeClick", "relatedMetricsClick", "goals", "viewMode"], [3, "goalClick", "timeline", "viewMode", "goals"], [3, "goalClick", "matrix", "viewMode"], [3, "goalClick", "steps", "viewMode", "goals"], [3, "close", "isLightMode", "isOpen"], [3, "close", "modeSelected", "viewMode", "currentMode", "isOpen"], [3, "integrateGoals", "goalIds", "viewMode"]], template: function SymphiqProfileAnalysisUnifiedDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
108366
108386
|
i0.ɵɵelementStart(0, "div", 0);
|
|
108367
108387
|
i0.ɵɵelement(1, "div", 1)(2, "symphiq-scroll-progress-bar", 2);
|
|
108368
108388
|
i0.ɵɵelementStart(3, "div", 3)(4, "symphiq-dashboard-header", 4);
|
|
108369
108389
|
i0.ɵɵlistener("searchClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_dashboard_header_searchClick_4_listener() { return ctx.openSearch(); })("viewModeClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_dashboard_header_viewModeClick_4_listener() { return ctx.openViewModeSwitcher(); });
|
|
108370
108390
|
i0.ɵɵelementEnd();
|
|
108371
108391
|
i0.ɵɵconditionalCreate(5, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_5_Template, 1, 5, "symphiq-journey-progress-indicator", 5);
|
|
108372
|
-
i0.ɵɵconditionalCreate(6, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Template, 4,
|
|
108392
|
+
i0.ɵɵconditionalCreate(6, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Template, 4, 5, "main", 6);
|
|
108373
108393
|
i0.ɵɵconditionalCreate(7, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_7_Template, 1, 4, "symphiq-floating-toc", 7);
|
|
108374
108394
|
i0.ɵɵelementEnd();
|
|
108375
108395
|
i0.ɵɵconditionalCreate(8, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_8_Template, 1, 2, "symphiq-search-modal", 8);
|
|
@@ -108492,7 +108512,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
108492
108512
|
<symphiq-journey-progress-indicator
|
|
108493
108513
|
[viewMode]="viewMode()"
|
|
108494
108514
|
[currentStepId]="JourneyStepIdEnum.UNIFIED_ANALYSIS"
|
|
108495
|
-
[showNextStepAction]="
|
|
108515
|
+
[showNextStepAction]="allGoalsReviewed()"
|
|
108496
108516
|
[forDemo]="forDemo()"
|
|
108497
108517
|
[maxAccessibleStepId]="maxAccessibleStepId()"
|
|
108498
108518
|
(nextStepClick)="nextStepClick.emit()"
|
|
@@ -108501,7 +108521,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
108501
108521
|
}
|
|
108502
108522
|
|
|
108503
108523
|
@if (shouldShowMain()) {
|
|
108504
|
-
<main class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 space-y-12">
|
|
108524
|
+
<main class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 space-y-12" [class.pb-36]="shouldShowProgressFooter()">
|
|
108505
108525
|
|
|
108506
108526
|
@if (isSimplifiedView() && isLoading()) {
|
|
108507
108527
|
<symphiq-loading-card
|
|
@@ -108688,7 +108708,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
108688
108708
|
type: HostListener,
|
|
108689
108709
|
args: ['window:scroll']
|
|
108690
108710
|
}] }); })();
|
|
108691
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisUnifiedDashboardComponent, { className: "SymphiqProfileAnalysisUnifiedDashboardComponent", filePath: "lib/components/profile-analysis-unified-dashboard/symphiq-profile-analysis-unified-dashboard.component.ts", lineNumber:
|
|
108711
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisUnifiedDashboardComponent, { className: "SymphiqProfileAnalysisUnifiedDashboardComponent", filePath: "lib/components/profile-analysis-unified-dashboard/symphiq-profile-analysis-unified-dashboard.component.ts", lineNumber: 342 }); })();
|
|
108692
108712
|
|
|
108693
108713
|
function SymphiqProfileMetricsAnalysesDashboardComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
108694
108714
|
const _r1 = i0.ɵɵgetCurrentView();
|