@eric-emg/symphiq-components 1.3.1 → 1.3.3
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.
|
@@ -47284,6 +47284,98 @@ class ScrollProgressBarComponent {
|
|
|
47284
47284
|
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], progress: [{ type: i0.Input, args: [{ isSignal: true, alias: "progress", required: false }] }], embedded: [{ type: i0.Input, args: [{ isSignal: true, alias: "embedded", required: false }] }], colorScheme: [{ type: i0.Input, args: [{ isSignal: true, alias: "colorScheme", required: false }] }] }); })();
|
|
47285
47285
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ScrollProgressBarComponent, { className: "ScrollProgressBarComponent", filePath: "lib/components/shared/scroll-progress-bar.component.ts", lineNumber: 22 }); })();
|
|
47286
47286
|
|
|
47287
|
+
class LoadingCardComponent {
|
|
47288
|
+
constructor() {
|
|
47289
|
+
this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
|
|
47290
|
+
this.title = input('Loading...', ...(ngDevMode ? [{ debugName: "title" }] : []));
|
|
47291
|
+
this.subtitle = input('Please wait...', ...(ngDevMode ? [{ debugName: "subtitle" }] : []));
|
|
47292
|
+
this.size = input('medium', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
47293
|
+
this.backdropBlur = input(false, ...(ngDevMode ? [{ debugName: "backdropBlur" }] : []));
|
|
47294
|
+
this.isLightMode = computed(() => this.viewMode() === ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "isLightMode" }] : []));
|
|
47295
|
+
this.spinnerSize = computed(() => {
|
|
47296
|
+
switch (this.size()) {
|
|
47297
|
+
case 'small': return 'medium';
|
|
47298
|
+
case 'large': return 'large';
|
|
47299
|
+
default: return 'large';
|
|
47300
|
+
}
|
|
47301
|
+
}, ...(ngDevMode ? [{ debugName: "spinnerSize" }] : []));
|
|
47302
|
+
this.containerClasses = computed(() => {
|
|
47303
|
+
const base = this.isLightMode()
|
|
47304
|
+
? 'bg-white border-slate-200'
|
|
47305
|
+
: 'bg-slate-800/50 border-slate-700/50';
|
|
47306
|
+
const blur = this.backdropBlur() ? 'backdrop-blur-sm' : '';
|
|
47307
|
+
return `${base} ${blur}`.trim();
|
|
47308
|
+
}, ...(ngDevMode ? [{ debugName: "containerClasses" }] : []));
|
|
47309
|
+
this.contentClasses = computed(() => {
|
|
47310
|
+
switch (this.size()) {
|
|
47311
|
+
case 'small': return 'p-6 space-y-3';
|
|
47312
|
+
case 'large': return 'p-12 space-y-6';
|
|
47313
|
+
default: return 'p-8 space-y-4';
|
|
47314
|
+
}
|
|
47315
|
+
}, ...(ngDevMode ? [{ debugName: "contentClasses" }] : []));
|
|
47316
|
+
this.titleClasses = computed(() => {
|
|
47317
|
+
const colorClass = this.isLightMode() ? 'text-slate-900' : 'text-white';
|
|
47318
|
+
const sizeClass = this.size() === 'large' ? 'text-xl' : 'text-lg';
|
|
47319
|
+
return `${sizeClass} font-semibold ${colorClass}`;
|
|
47320
|
+
}, ...(ngDevMode ? [{ debugName: "titleClasses" }] : []));
|
|
47321
|
+
this.subtitleClasses = computed(() => {
|
|
47322
|
+
const colorClass = this.isLightMode() ? 'text-slate-600' : 'text-slate-400';
|
|
47323
|
+
return `text-base ${colorClass}`;
|
|
47324
|
+
}, ...(ngDevMode ? [{ debugName: "subtitleClasses" }] : []));
|
|
47325
|
+
}
|
|
47326
|
+
static { this.ɵfac = function LoadingCardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || LoadingCardComponent)(); }; }
|
|
47327
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: LoadingCardComponent, selectors: [["symphiq-loading-card"]], inputs: { viewMode: [1, "viewMode"], title: [1, "title"], subtitle: [1, "subtitle"], size: [1, "size"], backdropBlur: [1, "backdropBlur"] }, decls: 7, vars: 8, consts: [[1, "rounded-2xl", "border", "shadow-lg", 3, "ngClass"], [1, "flex", "flex-col", "items-center", "justify-center", "text-center", 3, "ngClass"], [3, "viewMode", "size"], [3, "ngClass"]], template: function LoadingCardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
47328
|
+
i0.ɵɵelementStart(0, "div", 0)(1, "div", 1);
|
|
47329
|
+
i0.ɵɵelement(2, "symphiq-indeterminate-spinner", 2);
|
|
47330
|
+
i0.ɵɵelementStart(3, "h3", 3);
|
|
47331
|
+
i0.ɵɵtext(4);
|
|
47332
|
+
i0.ɵɵelementEnd();
|
|
47333
|
+
i0.ɵɵelementStart(5, "p", 3);
|
|
47334
|
+
i0.ɵɵtext(6);
|
|
47335
|
+
i0.ɵɵelementEnd()()();
|
|
47336
|
+
} if (rf & 2) {
|
|
47337
|
+
i0.ɵɵproperty("ngClass", ctx.containerClasses());
|
|
47338
|
+
i0.ɵɵadvance();
|
|
47339
|
+
i0.ɵɵproperty("ngClass", ctx.contentClasses());
|
|
47340
|
+
i0.ɵɵadvance();
|
|
47341
|
+
i0.ɵɵproperty("viewMode", ctx.viewMode())("size", ctx.spinnerSize());
|
|
47342
|
+
i0.ɵɵadvance();
|
|
47343
|
+
i0.ɵɵproperty("ngClass", ctx.titleClasses());
|
|
47344
|
+
i0.ɵɵadvance();
|
|
47345
|
+
i0.ɵɵtextInterpolate1(" ", ctx.title(), " ");
|
|
47346
|
+
i0.ɵɵadvance();
|
|
47347
|
+
i0.ɵɵproperty("ngClass", ctx.subtitleClasses());
|
|
47348
|
+
i0.ɵɵadvance();
|
|
47349
|
+
i0.ɵɵtextInterpolate1(" ", ctx.subtitle(), " ");
|
|
47350
|
+
} }, dependencies: [CommonModule, i1$1.NgClass, IndeterminateSpinnerComponent], encapsulation: 2, changeDetection: 0 }); }
|
|
47351
|
+
}
|
|
47352
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LoadingCardComponent, [{
|
|
47353
|
+
type: Component,
|
|
47354
|
+
args: [{
|
|
47355
|
+
selector: 'symphiq-loading-card',
|
|
47356
|
+
standalone: true,
|
|
47357
|
+
imports: [CommonModule, IndeterminateSpinnerComponent],
|
|
47358
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
47359
|
+
template: `
|
|
47360
|
+
<div [ngClass]="containerClasses()" class="rounded-2xl border shadow-lg">
|
|
47361
|
+
<div class="flex flex-col items-center justify-center text-center" [ngClass]="contentClasses()">
|
|
47362
|
+
<symphiq-indeterminate-spinner
|
|
47363
|
+
[viewMode]="viewMode()"
|
|
47364
|
+
[size]="spinnerSize()"
|
|
47365
|
+
/>
|
|
47366
|
+
<h3 [ngClass]="titleClasses()">
|
|
47367
|
+
{{ title() }}
|
|
47368
|
+
</h3>
|
|
47369
|
+
<p [ngClass]="subtitleClasses()">
|
|
47370
|
+
{{ subtitle() }}
|
|
47371
|
+
</p>
|
|
47372
|
+
</div>
|
|
47373
|
+
</div>
|
|
47374
|
+
`
|
|
47375
|
+
}]
|
|
47376
|
+
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], subtitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "subtitle", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], backdropBlur: [{ type: i0.Input, args: [{ isSignal: true, alias: "backdropBlur", required: false }] }] }); })();
|
|
47377
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(LoadingCardComponent, { className: "LoadingCardComponent", filePath: "lib/components/shared/loading-card.component.ts", lineNumber: 30 }); })();
|
|
47378
|
+
|
|
47287
47379
|
const _c0$H = ["dashboardContainer"];
|
|
47288
47380
|
const _c1$i = () => ({});
|
|
47289
47381
|
const _c2$c = () => [1, 2, 3, 4, 5, 6];
|
|
@@ -47292,7 +47384,7 @@ const _c4$5 = () => [1, 2, 3, 4];
|
|
|
47292
47384
|
const _c5$3 = () => [1, 2];
|
|
47293
47385
|
const _forTrack0$J = ($index, $item) => $item.value;
|
|
47294
47386
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_For_6_Template(rf, ctx) { if (rf & 1) {
|
|
47295
|
-
i0.ɵɵelementStart(0, "option",
|
|
47387
|
+
i0.ɵɵelementStart(0, "option", 25);
|
|
47296
47388
|
i0.ɵɵtext(1);
|
|
47297
47389
|
i0.ɵɵelementEnd();
|
|
47298
47390
|
} if (rf & 2) {
|
|
@@ -47303,14 +47395,14 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_For_6_Template(rf
|
|
|
47303
47395
|
} }
|
|
47304
47396
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
47305
47397
|
const _r2 = i0.ɵɵgetCurrentView();
|
|
47306
|
-
i0.ɵɵelementStart(0, "div", 6)(1, "label",
|
|
47398
|
+
i0.ɵɵelementStart(0, "div", 6)(1, "label", 22);
|
|
47307
47399
|
i0.ɵɵtext(2, "View:");
|
|
47308
47400
|
i0.ɵɵelementEnd();
|
|
47309
|
-
i0.ɵɵelementStart(3, "div",
|
|
47401
|
+
i0.ɵɵelementStart(3, "div", 23);
|
|
47310
47402
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template_div_click_3_listener($event) { i0.ɵɵrestoreView(_r2); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template_div_mousedown_3_listener($event) { i0.ɵɵrestoreView(_r2); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template_div_pointerdown_3_listener($event) { i0.ɵɵrestoreView(_r2); return i0.ɵɵresetView($event.stopPropagation()); });
|
|
47311
|
-
i0.ɵɵelementStart(4, "select",
|
|
47403
|
+
i0.ɵɵelementStart(4, "select", 24);
|
|
47312
47404
|
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template_select_ngModelChange_4_listener($event) { i0.ɵɵrestoreView(_r2); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeSectionFilter($event)); });
|
|
47313
|
-
i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_6_For_6_Template, 2, 2, "option",
|
|
47405
|
+
i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_6_For_6_Template, 2, 2, "option", 25, _forTrack0$J);
|
|
47314
47406
|
i0.ɵɵelementEnd()()();
|
|
47315
47407
|
} if (rf & 2) {
|
|
47316
47408
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -47323,13 +47415,13 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template(rf, ctx)
|
|
|
47323
47415
|
i0.ɵɵrepeater(ctx_r2.sectionFilters);
|
|
47324
47416
|
} }
|
|
47325
47417
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
47326
|
-
i0.ɵɵelementStart(0, "div", 8)(1, "span",
|
|
47418
|
+
i0.ɵɵelementStart(0, "div", 8)(1, "span", 26);
|
|
47327
47419
|
i0.ɵɵtext(2, "Revenue:");
|
|
47328
47420
|
i0.ɵɵelementEnd();
|
|
47329
|
-
i0.ɵɵelementStart(3, "span",
|
|
47421
|
+
i0.ɵɵelementStart(3, "span", 27);
|
|
47330
47422
|
i0.ɵɵtext(4);
|
|
47331
47423
|
i0.ɵɵelementEnd();
|
|
47332
|
-
i0.ɵɵelementStart(5, "span",
|
|
47424
|
+
i0.ɵɵelementStart(5, "span", 28);
|
|
47333
47425
|
i0.ɵɵtext(6);
|
|
47334
47426
|
i0.ɵɵelementEnd()();
|
|
47335
47427
|
} if (rf & 2) {
|
|
@@ -47347,7 +47439,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_8_Template(rf, ctx)
|
|
|
47347
47439
|
i0.ɵɵtextInterpolate2(" ", ctx_r2.revenueTrend() >= 0 ? "+" : "", "", ctx_r2.revenueTrend().toFixed(1), "% ");
|
|
47348
47440
|
} }
|
|
47349
47441
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_For_3_Template(rf, ctx) { if (rf & 1) {
|
|
47350
|
-
i0.ɵɵelementStart(0, "option",
|
|
47442
|
+
i0.ɵɵelementStart(0, "option", 25);
|
|
47351
47443
|
i0.ɵɵtext(1);
|
|
47352
47444
|
i0.ɵɵelementEnd();
|
|
47353
47445
|
} if (rf & 2) {
|
|
@@ -47358,11 +47450,11 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_For_3_Template(r
|
|
|
47358
47450
|
} }
|
|
47359
47451
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
47360
47452
|
const _r5 = i0.ɵɵgetCurrentView();
|
|
47361
|
-
i0.ɵɵelementStart(0, "div",
|
|
47453
|
+
i0.ɵɵelementStart(0, "div", 23);
|
|
47362
47454
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template_div_click_0_listener($event) { i0.ɵɵrestoreView(_r5); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template_div_mousedown_0_listener($event) { i0.ɵɵrestoreView(_r5); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template_div_pointerdown_0_listener($event) { i0.ɵɵrestoreView(_r5); return i0.ɵɵresetView($event.stopPropagation()); });
|
|
47363
|
-
i0.ɵɵelementStart(1, "select",
|
|
47455
|
+
i0.ɵɵelementStart(1, "select", 29);
|
|
47364
47456
|
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template_select_ngModelChange_1_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeSectionFilter($event)); });
|
|
47365
|
-
i0.ɵɵrepeaterCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_10_For_3_Template, 2, 2, "option",
|
|
47457
|
+
i0.ɵɵrepeaterCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_10_For_3_Template, 2, 2, "option", 25, _forTrack0$J);
|
|
47366
47458
|
i0.ɵɵelementEnd()();
|
|
47367
47459
|
} if (rf & 2) {
|
|
47368
47460
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -47374,26 +47466,26 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template(rf, ctx
|
|
|
47374
47466
|
} }
|
|
47375
47467
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_11_Template(rf, ctx) { if (rf & 1) {
|
|
47376
47468
|
const _r7 = i0.ɵɵgetCurrentView();
|
|
47377
|
-
i0.ɵɵelementStart(0, "div", 10)(1, "div",
|
|
47469
|
+
i0.ɵɵelementStart(0, "div", 10)(1, "div", 30)(2, "div", 31)(3, "div", 32);
|
|
47378
47470
|
i0.ɵɵnamespaceSVG();
|
|
47379
|
-
i0.ɵɵelementStart(4, "svg",
|
|
47380
|
-
i0.ɵɵelement(5, "path",
|
|
47471
|
+
i0.ɵɵelementStart(4, "svg", 33);
|
|
47472
|
+
i0.ɵɵelement(5, "path", 34);
|
|
47381
47473
|
i0.ɵɵelementEnd();
|
|
47382
47474
|
i0.ɵɵnamespaceHTML();
|
|
47383
|
-
i0.ɵɵelementStart(6, "div",
|
|
47475
|
+
i0.ɵɵelementStart(6, "div", 35)(7, "span", 36);
|
|
47384
47476
|
i0.ɵɵtext(8, "Showing:");
|
|
47385
47477
|
i0.ɵɵelementEnd();
|
|
47386
|
-
i0.ɵɵelementStart(9, "span",
|
|
47478
|
+
i0.ɵɵelementStart(9, "span", 37);
|
|
47387
47479
|
i0.ɵɵtext(10);
|
|
47388
47480
|
i0.ɵɵelementEnd();
|
|
47389
|
-
i0.ɵɵelementStart(11, "span",
|
|
47481
|
+
i0.ɵɵelementStart(11, "span", 38);
|
|
47390
47482
|
i0.ɵɵtext(12);
|
|
47391
47483
|
i0.ɵɵelementEnd()()();
|
|
47392
|
-
i0.ɵɵelementStart(13, "button",
|
|
47484
|
+
i0.ɵɵelementStart(13, "button", 39);
|
|
47393
47485
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_11_Template_button_click_13_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r2 = i0.ɵɵnextContext(); ctx_r2.clearSearchResult(); return i0.ɵɵresetView($event.stopPropagation()); });
|
|
47394
47486
|
i0.ɵɵnamespaceSVG();
|
|
47395
|
-
i0.ɵɵelementStart(14, "svg",
|
|
47396
|
-
i0.ɵɵelement(15, "path",
|
|
47487
|
+
i0.ɵɵelementStart(14, "svg", 40);
|
|
47488
|
+
i0.ɵɵelement(15, "path", 41);
|
|
47397
47489
|
i0.ɵɵelementEnd()()()()();
|
|
47398
47490
|
} if (rf & 2) {
|
|
47399
47491
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -47421,7 +47513,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_12_Template(rf, ctx
|
|
|
47421
47513
|
} }
|
|
47422
47514
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
47423
47515
|
const _r8 = i0.ɵɵgetCurrentView();
|
|
47424
|
-
i0.ɵɵelementStart(0, "button",
|
|
47516
|
+
i0.ɵɵelementStart(0, "button", 43);
|
|
47425
47517
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_1_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r8); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToTop()); });
|
|
47426
47518
|
i0.ɵɵelementEnd();
|
|
47427
47519
|
} if (rf & 2) {
|
|
@@ -47430,7 +47522,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_1_Te
|
|
|
47430
47522
|
} }
|
|
47431
47523
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
47432
47524
|
const _r9 = i0.ɵɵgetCurrentView();
|
|
47433
|
-
i0.ɵɵelementStart(0, "button",
|
|
47525
|
+
i0.ɵɵelementStart(0, "button", 43);
|
|
47434
47526
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_2_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r9); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToSection("section-insights")); });
|
|
47435
47527
|
i0.ɵɵelementEnd();
|
|
47436
47528
|
} if (rf & 2) {
|
|
@@ -47439,7 +47531,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_2_Te
|
|
|
47439
47531
|
} }
|
|
47440
47532
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
47441
47533
|
const _r10 = i0.ɵɵgetCurrentView();
|
|
47442
|
-
i0.ɵɵelementStart(0, "button",
|
|
47534
|
+
i0.ɵɵelementStart(0, "button", 43);
|
|
47443
47535
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_3_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r10); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToSection("section-metrics")); });
|
|
47444
47536
|
i0.ɵɵelementEnd();
|
|
47445
47537
|
} if (rf & 2) {
|
|
@@ -47448,7 +47540,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_3_Te
|
|
|
47448
47540
|
} }
|
|
47449
47541
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
47450
47542
|
const _r11 = i0.ɵɵgetCurrentView();
|
|
47451
|
-
i0.ɵɵelementStart(0, "button",
|
|
47543
|
+
i0.ɵɵelementStart(0, "button", 43);
|
|
47452
47544
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_4_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r11); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToSection("section-breakdowns")); });
|
|
47453
47545
|
i0.ɵɵelementEnd();
|
|
47454
47546
|
} if (rf & 2) {
|
|
@@ -47457,7 +47549,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_4_Te
|
|
|
47457
47549
|
} }
|
|
47458
47550
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
47459
47551
|
const _r12 = i0.ɵɵgetCurrentView();
|
|
47460
|
-
i0.ɵɵelementStart(0, "button",
|
|
47552
|
+
i0.ɵɵelementStart(0, "button", 43);
|
|
47461
47553
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_5_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r12); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToSection("section-competitive")); });
|
|
47462
47554
|
i0.ɵɵelementEnd();
|
|
47463
47555
|
} if (rf & 2) {
|
|
@@ -47466,11 +47558,11 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_5_Te
|
|
|
47466
47558
|
} }
|
|
47467
47559
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Template(rf, ctx) { if (rf & 1) {
|
|
47468
47560
|
i0.ɵɵelementStart(0, "div", 12);
|
|
47469
|
-
i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_1_Template, 1, 3, "button",
|
|
47470
|
-
i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_2_Template, 1, 3, "button",
|
|
47471
|
-
i0.ɵɵconditionalCreate(3, SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_3_Template, 1, 3, "button",
|
|
47472
|
-
i0.ɵɵconditionalCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_4_Template, 1, 3, "button",
|
|
47473
|
-
i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_5_Template, 1, 3, "button",
|
|
47561
|
+
i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_1_Template, 1, 3, "button", 42);
|
|
47562
|
+
i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_2_Template, 1, 3, "button", 42);
|
|
47563
|
+
i0.ɵɵconditionalCreate(3, SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_3_Template, 1, 3, "button", 42);
|
|
47564
|
+
i0.ɵɵconditionalCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_4_Template, 1, 3, "button", 42);
|
|
47565
|
+
i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Conditional_5_Template, 1, 3, "button", 42);
|
|
47474
47566
|
i0.ɵɵelementEnd();
|
|
47475
47567
|
} if (rf & 2) {
|
|
47476
47568
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -47485,27 +47577,43 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Template(rf, ctx
|
|
|
47485
47577
|
i0.ɵɵadvance();
|
|
47486
47578
|
i0.ɵɵconditional(ctx_r2.showCompetitiveIntelligence() ? 5 : -1);
|
|
47487
47579
|
} }
|
|
47580
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
47581
|
+
const _r13 = i0.ɵɵgetCurrentView();
|
|
47582
|
+
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 50);
|
|
47583
|
+
i0.ɵɵlistener("stepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r13); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.stepClick.emit($event)); })("nextStepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r13); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.nextStepClick.emit()); });
|
|
47584
|
+
i0.ɵɵelementEnd();
|
|
47585
|
+
} if (rf & 2) {
|
|
47586
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
47587
|
+
i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("currentStepId", ctx_r2.JourneyStepIdEnum.FUNNEL_ANALYSIS)("showNextStepAction", false)("forDemo", ctx_r2.forDemo())("maxAccessibleStepId", ctx_r2.maxAccessibleStepId());
|
|
47588
|
+
} }
|
|
47488
47589
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
47489
|
-
i0.ɵɵ
|
|
47490
|
-
i0.ɵɵ
|
|
47590
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 44);
|
|
47591
|
+
i0.ɵɵelementStart(1, "main", 45)(2, "div", 46)(3, "div", 47);
|
|
47592
|
+
i0.ɵɵelement(4, "symphiq-funnel-welcome-banner", 48);
|
|
47491
47593
|
i0.ɵɵelementEnd();
|
|
47594
|
+
i0.ɵɵelement(5, "symphiq-loading-card", 49);
|
|
47595
|
+
i0.ɵɵelementEnd()();
|
|
47492
47596
|
} if (rf & 2) {
|
|
47597
|
+
let tmp_5_0;
|
|
47493
47598
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
47599
|
+
i0.ɵɵconditional(!ctx_r2.isOnboarded() ? 0 : -1);
|
|
47600
|
+
i0.ɵɵadvance(4);
|
|
47601
|
+
i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("isOnboarded", ctx_r2.isOnboarded())("analysisDate", (tmp_5_0 = ctx_r2.funnelAnalysis()) == null ? null : tmp_5_0.selfContentCompletedDate);
|
|
47494
47602
|
i0.ɵɵadvance();
|
|
47495
|
-
i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK);
|
|
47603
|
+
i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("backdropBlur", true);
|
|
47496
47604
|
} }
|
|
47497
47605
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
47498
|
-
const
|
|
47499
|
-
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator",
|
|
47500
|
-
i0.ɵɵlistener("stepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(
|
|
47606
|
+
const _r14 = i0.ɵɵgetCurrentView();
|
|
47607
|
+
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 50);
|
|
47608
|
+
i0.ɵɵlistener("stepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r14); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.stepClick.emit($event)); })("nextStepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r14); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.nextStepClick.emit()); });
|
|
47501
47609
|
i0.ɵɵelementEnd();
|
|
47502
47610
|
} if (rf & 2) {
|
|
47503
47611
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
47504
47612
|
i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("currentStepId", ctx_r2.JourneyStepIdEnum.FUNNEL_ANALYSIS)("showNextStepAction", false)("forDemo", ctx_r2.forDemo())("maxAccessibleStepId", ctx_r2.maxAccessibleStepId());
|
|
47505
47613
|
} }
|
|
47506
47614
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Template(rf, ctx) { if (rf & 1) {
|
|
47507
|
-
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator",
|
|
47508
|
-
i0.ɵɵelement(1, "symphiq-content-generation-progress-with-confetti",
|
|
47615
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 44);
|
|
47616
|
+
i0.ɵɵelement(1, "symphiq-content-generation-progress-with-confetti", 51);
|
|
47509
47617
|
} if (rf & 2) {
|
|
47510
47618
|
let tmp_5_0;
|
|
47511
47619
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -47514,36 +47622,36 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Template(rf, ctx
|
|
|
47514
47622
|
i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("itemStatus", ctx_r2.itemStatus())("currentStatus", (tmp_5_0 = ctx_r2.funnelAnalysis()) == null ? null : tmp_5_0.selfContentStatus)("confettiIntensity", "celebration")("title", "We are generating a new Funnel Analysis for you.")("subtitle", "It will appear here when ready. You can check back later as this will take a few minutes to complete.");
|
|
47515
47623
|
} }
|
|
47516
47624
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
47517
|
-
const
|
|
47518
|
-
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator",
|
|
47519
|
-
i0.ɵɵlistener("stepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(
|
|
47625
|
+
const _r15 = i0.ɵɵgetCurrentView();
|
|
47626
|
+
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 50);
|
|
47627
|
+
i0.ɵɵlistener("stepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r15); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.stepClick.emit($event)); })("nextStepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r15); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.nextStepClick.emit()); });
|
|
47520
47628
|
i0.ɵɵelementEnd();
|
|
47521
47629
|
} if (rf & 2) {
|
|
47522
47630
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
47523
47631
|
i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("currentStepId", ctx_r2.JourneyStepIdEnum.FUNNEL_ANALYSIS)("showNextStepAction", ctx_r2.showNextStepAction())("forDemo", ctx_r2.forDemo())("maxAccessibleStepId", ctx_r2.maxAccessibleStepId());
|
|
47524
47632
|
} }
|
|
47525
47633
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_5_For_13_Template(rf, ctx) { if (rf & 1) {
|
|
47526
|
-
i0.ɵɵelement(0, "symphiq-funnel-analysis-insight-card",
|
|
47634
|
+
i0.ɵɵelement(0, "symphiq-funnel-analysis-insight-card", 68);
|
|
47527
47635
|
} if (rf & 2) {
|
|
47528
|
-
const
|
|
47636
|
+
const insight_r16 = ctx.$implicit;
|
|
47529
47637
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
47530
|
-
i0.ɵɵproperty("insight",
|
|
47638
|
+
i0.ɵɵproperty("insight", insight_r16)("allMetrics", ctx_r2.allMetrics())("charts", ctx_r2.chartsForInsight(insight_r16))("allCharts", ctx_r2.allCharts())("allBusinessInsights", ctx_r2.allBusinessInsights())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true)("isLoading", ctx_r2.isDataLoading());
|
|
47531
47639
|
} }
|
|
47532
47640
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
47533
|
-
i0.ɵɵelementStart(0, "section",
|
|
47641
|
+
i0.ɵɵelementStart(0, "section", 52)(1, "div", 60)(2, "div", 61)(3, "div", 62)(4, "div", 61);
|
|
47534
47642
|
i0.ɵɵnamespaceSVG();
|
|
47535
|
-
i0.ɵɵelementStart(5, "svg",
|
|
47536
|
-
i0.ɵɵelement(6, "path",
|
|
47643
|
+
i0.ɵɵelementStart(5, "svg", 63);
|
|
47644
|
+
i0.ɵɵelement(6, "path", 64);
|
|
47537
47645
|
i0.ɵɵelementEnd();
|
|
47538
47646
|
i0.ɵɵnamespaceHTML();
|
|
47539
|
-
i0.ɵɵelementStart(7, "h2",
|
|
47647
|
+
i0.ɵɵelementStart(7, "h2", 65);
|
|
47540
47648
|
i0.ɵɵtext(8, "Key Insights");
|
|
47541
47649
|
i0.ɵɵelementEnd()()()();
|
|
47542
|
-
i0.ɵɵelementStart(9, "span",
|
|
47650
|
+
i0.ɵɵelementStart(9, "span", 66);
|
|
47543
47651
|
i0.ɵɵtext(10);
|
|
47544
47652
|
i0.ɵɵelementEnd()();
|
|
47545
|
-
i0.ɵɵelementStart(11, "div",
|
|
47546
|
-
i0.ɵɵrepeaterCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_5_For_13_Template, 1, 9, "symphiq-funnel-analysis-insight-card",
|
|
47653
|
+
i0.ɵɵelementStart(11, "div", 67);
|
|
47654
|
+
i0.ɵɵrepeaterCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_5_For_13_Template, 1, 9, "symphiq-funnel-analysis-insight-card", 68, i0.ɵɵrepeaterTrackByIndex);
|
|
47547
47655
|
i0.ɵɵelementEnd()();
|
|
47548
47656
|
} if (rf & 2) {
|
|
47549
47657
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
@@ -47561,23 +47669,23 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_5_Te
|
|
|
47561
47669
|
i0.ɵɵrepeater(ctx_r2.insights());
|
|
47562
47670
|
} }
|
|
47563
47671
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
47564
|
-
i0.ɵɵelement(0, "symphiq-skeleton-loader",
|
|
47672
|
+
i0.ɵɵelement(0, "symphiq-skeleton-loader", 69);
|
|
47565
47673
|
} if (rf & 2) {
|
|
47566
47674
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
47567
47675
|
i0.ɵɵproperty("width", "100%")("height", "200px")("isLightMode", ctx_r2.isLightMode());
|
|
47568
47676
|
} }
|
|
47569
47677
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
47570
|
-
const
|
|
47571
|
-
i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment",
|
|
47572
|
-
i0.ɵɵlistener("scrollToSection", function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Conditional_2_Template_symphiq_funnel_analysis_overall_assessment_scrollToSection_0_listener($event) { i0.ɵɵrestoreView(
|
|
47678
|
+
const _r17 = i0.ɵɵgetCurrentView();
|
|
47679
|
+
i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment", 71);
|
|
47680
|
+
i0.ɵɵlistener("scrollToSection", function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Conditional_2_Template_symphiq_funnel_analysis_overall_assessment_scrollToSection_0_listener($event) { i0.ɵɵrestoreView(_r17); const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.scrollToSection($event)); });
|
|
47573
47681
|
i0.ɵɵelementEnd();
|
|
47574
47682
|
} if (rf & 2) {
|
|
47575
47683
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
47576
47684
|
i0.ɵɵproperty("assessment", ctx_r2.performanceOverview().overallAssessment || i0.ɵɵpureFunction0(11, _c1$i))("revenueMetric", ctx_r2.revenueMetric())("charts", ctx_r2.chartsForItem("OVERALL_ASSESSMENT"))("metrics", ctx_r2.allMetrics())("isLightMode", ctx_r2.isLightMode())("isLoading", ctx_r2.isOverallAssessmentLoading())("isCompactMode", true)("isChartsLoading", ctx_r2.areChartsLoading())("strengths", ctx_r2.strengths())("weaknesses", ctx_r2.weaknesses())("currencySymbol", ctx_r2.currencySymbol());
|
|
47577
47685
|
} }
|
|
47578
47686
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
47579
|
-
i0.ɵɵelementStart(0, "div",
|
|
47580
|
-
i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Conditional_1_Template, 1, 3, "symphiq-skeleton-loader",
|
|
47687
|
+
i0.ɵɵelementStart(0, "div", 55);
|
|
47688
|
+
i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Conditional_1_Template, 1, 3, "symphiq-skeleton-loader", 69)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Conditional_2_Template, 1, 12, "symphiq-funnel-analysis-overall-assessment", 70);
|
|
47581
47689
|
i0.ɵɵelementEnd();
|
|
47582
47690
|
} if (rf & 2) {
|
|
47583
47691
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
@@ -47585,36 +47693,36 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Te
|
|
|
47585
47693
|
i0.ɵɵconditional(ctx_r2.isDataLoading() ? 1 : 2);
|
|
47586
47694
|
} }
|
|
47587
47695
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
47588
|
-
i0.ɵɵelement(0, "symphiq-funnel-analysis-metric-card",
|
|
47696
|
+
i0.ɵɵelement(0, "symphiq-funnel-analysis-metric-card", 73);
|
|
47589
47697
|
} if (rf & 2) {
|
|
47590
|
-
const
|
|
47698
|
+
const metric_r18 = ctx.$implicit;
|
|
47591
47699
|
const ctx_r2 = i0.ɵɵnextContext(5);
|
|
47592
|
-
i0.ɵɵproperty("metric",
|
|
47700
|
+
i0.ɵɵproperty("metric", metric_r18)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(metric_r18))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true)("currencySymbol", ctx_r2.currencySymbol());
|
|
47593
47701
|
} }
|
|
47594
47702
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
47595
|
-
i0.ɵɵelementStart(0, "div",
|
|
47596
|
-
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Conditional_2_For_2_Template, 1, 9, "symphiq-funnel-analysis-metric-card",
|
|
47703
|
+
i0.ɵɵelementStart(0, "div", 74);
|
|
47704
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Conditional_2_For_2_Template, 1, 9, "symphiq-funnel-analysis-metric-card", 73, i0.ɵɵrepeaterTrackByIndex);
|
|
47597
47705
|
i0.ɵɵelementEnd();
|
|
47598
47706
|
} if (rf & 2) {
|
|
47599
|
-
const
|
|
47707
|
+
const funnelGroup_r19 = i0.ɵɵnextContext().$implicit;
|
|
47600
47708
|
i0.ɵɵadvance();
|
|
47601
|
-
i0.ɵɵrepeater(
|
|
47709
|
+
i0.ɵɵrepeater(funnelGroup_r19.relatedMetrics);
|
|
47602
47710
|
} }
|
|
47603
47711
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
47604
|
-
i0.ɵɵelementStart(0, "div",
|
|
47605
|
-
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card",
|
|
47712
|
+
i0.ɵɵelementStart(0, "div", 72);
|
|
47713
|
+
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 73);
|
|
47606
47714
|
i0.ɵɵelementEnd();
|
|
47607
|
-
i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Conditional_2_Template, 3, 0, "div",
|
|
47715
|
+
i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Conditional_2_Template, 3, 0, "div", 74);
|
|
47608
47716
|
} if (rf & 2) {
|
|
47609
|
-
const
|
|
47717
|
+
const funnelGroup_r19 = ctx.$implicit;
|
|
47610
47718
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
47611
47719
|
i0.ɵɵadvance();
|
|
47612
|
-
i0.ɵɵproperty("metric",
|
|
47720
|
+
i0.ɵɵproperty("metric", funnelGroup_r19.funnelMetric)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(funnelGroup_r19.funnelMetric))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true)("currencySymbol", ctx_r2.currencySymbol());
|
|
47613
47721
|
i0.ɵɵadvance();
|
|
47614
|
-
i0.ɵɵconditional(
|
|
47722
|
+
i0.ɵɵconditional(funnelGroup_r19.relatedMetrics.length > 0 ? 2 : -1);
|
|
47615
47723
|
} }
|
|
47616
47724
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
47617
|
-
i0.ɵɵelementStart(0, "div",
|
|
47725
|
+
i0.ɵɵelementStart(0, "div", 57);
|
|
47618
47726
|
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Template, 3, 10, null, null, i0.ɵɵrepeaterTrackByIndex);
|
|
47619
47727
|
i0.ɵɵelementEnd();
|
|
47620
47728
|
} if (rf & 2) {
|
|
@@ -47623,15 +47731,15 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_T
|
|
|
47623
47731
|
i0.ɵɵrepeater(ctx_r2.groupedMetrics());
|
|
47624
47732
|
} }
|
|
47625
47733
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_12_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
47626
|
-
i0.ɵɵelement(0, "symphiq-funnel-analysis-breakdown-section",
|
|
47734
|
+
i0.ɵɵelement(0, "symphiq-funnel-analysis-breakdown-section", 75);
|
|
47627
47735
|
} if (rf & 2) {
|
|
47628
|
-
const
|
|
47736
|
+
const breakdown_r20 = ctx.$implicit;
|
|
47629
47737
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
47630
|
-
i0.ɵɵproperty("breakdown",
|
|
47738
|
+
i0.ɵɵproperty("breakdown", breakdown_r20)("charts", ctx_r2.chartsForBreakdown(breakdown_r20))("isLightMode", ctx_r2.isLightMode())("isLoading", ctx_r2.isDataLoading())("isCompactMode", true)("currencySymbol", ctx_r2.currencySymbol());
|
|
47631
47739
|
} }
|
|
47632
47740
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
47633
|
-
i0.ɵɵelementStart(0, "div",
|
|
47634
|
-
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_12_For_2_Template, 1, 6, "symphiq-funnel-analysis-breakdown-section",
|
|
47741
|
+
i0.ɵɵelementStart(0, "div", 57);
|
|
47742
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_12_For_2_Template, 1, 6, "symphiq-funnel-analysis-breakdown-section", 75, i0.ɵɵrepeaterTrackByIndex);
|
|
47635
47743
|
i0.ɵɵelementEnd();
|
|
47636
47744
|
} if (rf & 2) {
|
|
47637
47745
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
@@ -47639,8 +47747,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_12_T
|
|
|
47639
47747
|
i0.ɵɵrepeater(ctx_r2.breakdowns());
|
|
47640
47748
|
} }
|
|
47641
47749
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
47642
|
-
i0.ɵɵelementStart(0, "div",
|
|
47643
|
-
i0.ɵɵelement(1, "symphiq-competitive-intelligence-view",
|
|
47750
|
+
i0.ɵɵelementStart(0, "div", 55);
|
|
47751
|
+
i0.ɵɵelement(1, "symphiq-competitive-intelligence-view", 76);
|
|
47644
47752
|
i0.ɵɵelementEnd();
|
|
47645
47753
|
} if (rf & 2) {
|
|
47646
47754
|
let tmp_7_0;
|
|
@@ -47649,22 +47757,22 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_14_T
|
|
|
47649
47757
|
i0.ɵɵproperty("metrics", ctx_r2.competitiveMetrics())("allCharts", ctx_r2.allCharts())("isLightMode", ctx_r2.isLightMode())("isCompactMode", true)("competitiveBenchmark", (tmp_7_0 = ctx_r2.performanceOverview().overallAssessment) == null ? null : tmp_7_0.competitiveBenchmark)("currencySymbol", ctx_r2.currencySymbol());
|
|
47650
47758
|
} }
|
|
47651
47759
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Template(rf, ctx) { if (rf & 1) {
|
|
47652
|
-
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator",
|
|
47653
|
-
i0.ɵɵelementStart(1, "main",
|
|
47654
|
-
i0.ɵɵelement(4, "symphiq-funnel-welcome-banner",
|
|
47760
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 44);
|
|
47761
|
+
i0.ɵɵelementStart(1, "main", 45)(2, "div", 46)(3, "div", 47);
|
|
47762
|
+
i0.ɵɵelement(4, "symphiq-funnel-welcome-banner", 48);
|
|
47655
47763
|
i0.ɵɵelementEnd();
|
|
47656
|
-
i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_5_Template, 14, 7, "section",
|
|
47657
|
-
i0.ɵɵelementStart(6, "symphiq-collapsible-funnel-section-group",
|
|
47658
|
-
i0.ɵɵconditionalCreate(8, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Template, 3, 1, "div",
|
|
47764
|
+
i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_5_Template, 14, 7, "section", 52);
|
|
47765
|
+
i0.ɵɵelementStart(6, "symphiq-collapsible-funnel-section-group", 53)(7, "div", 54);
|
|
47766
|
+
i0.ɵɵconditionalCreate(8, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Template, 3, 1, "div", 55);
|
|
47659
47767
|
i0.ɵɵelementEnd();
|
|
47660
|
-
i0.ɵɵelementStart(9, "div",
|
|
47661
|
-
i0.ɵɵconditionalCreate(10, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_Template, 3, 0, "div",
|
|
47768
|
+
i0.ɵɵelementStart(9, "div", 56);
|
|
47769
|
+
i0.ɵɵconditionalCreate(10, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_Template, 3, 0, "div", 57);
|
|
47662
47770
|
i0.ɵɵelementEnd();
|
|
47663
|
-
i0.ɵɵelementStart(11, "div",
|
|
47664
|
-
i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_12_Template, 3, 0, "div",
|
|
47771
|
+
i0.ɵɵelementStart(11, "div", 58);
|
|
47772
|
+
i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_12_Template, 3, 0, "div", 57);
|
|
47665
47773
|
i0.ɵɵelementEnd();
|
|
47666
|
-
i0.ɵɵelementStart(13, "div",
|
|
47667
|
-
i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_14_Template, 2, 6, "div",
|
|
47774
|
+
i0.ɵɵelementStart(13, "div", 59);
|
|
47775
|
+
i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_14_Template, 2, 6, "div", 55);
|
|
47668
47776
|
i0.ɵɵelementEnd()()()();
|
|
47669
47777
|
} if (rf & 2) {
|
|
47670
47778
|
let tmp_6_0;
|
|
@@ -47688,16 +47796,16 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Template(rf, ctx
|
|
|
47688
47796
|
i0.ɵɵconditional(ctx_r2.showCompetitiveIntelligence() ? 14 : -1);
|
|
47689
47797
|
} }
|
|
47690
47798
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
47691
|
-
i0.ɵɵelementStart(0, "div",
|
|
47692
|
-
i0.ɵɵelement(3, "symphiq-skeleton-loader",
|
|
47693
|
-
i0.ɵɵelementStart(4, "div",
|
|
47694
|
-
i0.ɵɵelement(5, "symphiq-skeleton-loader",
|
|
47799
|
+
i0.ɵɵelementStart(0, "div", 78)(1, "div", 79)(2, "div", 61);
|
|
47800
|
+
i0.ɵɵelement(3, "symphiq-skeleton-loader", 69);
|
|
47801
|
+
i0.ɵɵelementStart(4, "div", 80);
|
|
47802
|
+
i0.ɵɵelement(5, "symphiq-skeleton-loader", 69)(6, "symphiq-skeleton-loader", 69);
|
|
47695
47803
|
i0.ɵɵelementEnd()();
|
|
47696
|
-
i0.ɵɵelementStart(7, "div",
|
|
47697
|
-
i0.ɵɵelement(8, "symphiq-skeleton-loader",
|
|
47804
|
+
i0.ɵɵelementStart(7, "div", 81);
|
|
47805
|
+
i0.ɵɵelement(8, "symphiq-skeleton-loader", 69)(9, "symphiq-skeleton-loader", 69)(10, "symphiq-skeleton-loader", 69);
|
|
47698
47806
|
i0.ɵɵelementEnd();
|
|
47699
|
-
i0.ɵɵelementStart(11, "div",
|
|
47700
|
-
i0.ɵɵelement(12, "symphiq-skeleton-loader",
|
|
47807
|
+
i0.ɵɵelementStart(11, "div", 82);
|
|
47808
|
+
i0.ɵɵelement(12, "symphiq-skeleton-loader", 69)(13, "symphiq-skeleton-loader", 69);
|
|
47701
47809
|
i0.ɵɵelementEnd()()();
|
|
47702
47810
|
} if (rf & 2) {
|
|
47703
47811
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -47720,17 +47828,17 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Co
|
|
|
47720
47828
|
i0.ɵɵproperty("width", "100%")("height", "200px")("isLightMode", ctx_r2.isLightMode());
|
|
47721
47829
|
} }
|
|
47722
47830
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
47723
|
-
const
|
|
47724
|
-
i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment",
|
|
47725
|
-
i0.ɵɵlistener("scrollToSection", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Conditional_2_Template_symphiq_funnel_analysis_overall_assessment_scrollToSection_0_listener($event) { i0.ɵɵrestoreView(
|
|
47831
|
+
const _r21 = i0.ɵɵgetCurrentView();
|
|
47832
|
+
i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment", 71);
|
|
47833
|
+
i0.ɵɵlistener("scrollToSection", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Conditional_2_Template_symphiq_funnel_analysis_overall_assessment_scrollToSection_0_listener($event) { i0.ɵɵrestoreView(_r21); const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.scrollToSection($event)); });
|
|
47726
47834
|
i0.ɵɵelementEnd();
|
|
47727
47835
|
} if (rf & 2) {
|
|
47728
47836
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
47729
47837
|
i0.ɵɵproperty("assessment", ctx_r2.performanceOverview().overallAssessment || i0.ɵɵpureFunction0(11, _c1$i))("revenueMetric", ctx_r2.revenueMetric())("charts", ctx_r2.chartsForItem("OVERALL_ASSESSMENT"))("metrics", ctx_r2.allMetrics())("isLightMode", ctx_r2.isLightMode())("isLoading", ctx_r2.isOverallAssessmentLoading())("isCompactMode", ctx_r2.viewModeService.isCompact())("isChartsLoading", ctx_r2.areChartsLoading())("strengths", ctx_r2.strengths())("weaknesses", ctx_r2.weaknesses())("currencySymbol", ctx_r2.currencySymbol());
|
|
47730
47838
|
} }
|
|
47731
47839
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
47732
|
-
i0.ɵɵelementStart(0, "div",
|
|
47733
|
-
i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Conditional_1_Template, 14, 25, "div",
|
|
47840
|
+
i0.ɵɵelementStart(0, "div", 77);
|
|
47841
|
+
i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Conditional_1_Template, 14, 25, "div", 78)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Conditional_2_Template, 1, 12, "symphiq-funnel-analysis-overall-assessment", 70);
|
|
47734
47842
|
i0.ɵɵelementEnd();
|
|
47735
47843
|
} if (rf & 2) {
|
|
47736
47844
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
@@ -47738,21 +47846,21 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Te
|
|
|
47738
47846
|
i0.ɵɵconditional(ctx_r2.isDataLoading() ? 1 : 2);
|
|
47739
47847
|
} }
|
|
47740
47848
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
47741
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
47849
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 83);
|
|
47742
47850
|
} if (rf & 2) {
|
|
47743
47851
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
47744
47852
|
i0.ɵɵproperty("viewMode", ctx_r2.viewMode());
|
|
47745
47853
|
} }
|
|
47746
47854
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_14_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
47747
|
-
i0.ɵɵelementStart(0, "div",
|
|
47748
|
-
i0.ɵɵelement(3, "symphiq-skeleton-loader",
|
|
47855
|
+
i0.ɵɵelementStart(0, "div", 90)(1, "div", 91)(2, "div", 92);
|
|
47856
|
+
i0.ɵɵelement(3, "symphiq-skeleton-loader", 69)(4, "symphiq-skeleton-loader", 69);
|
|
47749
47857
|
i0.ɵɵelementEnd();
|
|
47750
|
-
i0.ɵɵelement(5, "symphiq-skeleton-loader",
|
|
47751
|
-
i0.ɵɵelementStart(8, "div",
|
|
47752
|
-
i0.ɵɵelement(9, "symphiq-skeleton-loader",
|
|
47858
|
+
i0.ɵɵelement(5, "symphiq-skeleton-loader", 69)(6, "symphiq-skeleton-loader", 69)(7, "symphiq-skeleton-loader", 69);
|
|
47859
|
+
i0.ɵɵelementStart(8, "div", 93);
|
|
47860
|
+
i0.ɵɵelement(9, "symphiq-skeleton-loader", 69)(10, "symphiq-skeleton-loader", 69);
|
|
47753
47861
|
i0.ɵɵelementEnd();
|
|
47754
|
-
i0.ɵɵelementStart(11, "div",
|
|
47755
|
-
i0.ɵɵelement(12, "symphiq-skeleton-loader",
|
|
47862
|
+
i0.ɵɵelementStart(11, "div", 94);
|
|
47863
|
+
i0.ɵɵelement(12, "symphiq-skeleton-loader", 69)(13, "symphiq-skeleton-loader", 69);
|
|
47756
47864
|
i0.ɵɵelementEnd()()();
|
|
47757
47865
|
} if (rf & 2) {
|
|
47758
47866
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
@@ -47777,30 +47885,30 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Co
|
|
|
47777
47885
|
i0.ɵɵproperty("width", "80px")("height", "28px")("isLightMode", ctx_r2.isLightMode());
|
|
47778
47886
|
} }
|
|
47779
47887
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
47780
|
-
i0.ɵɵelementStart(0, "div",
|
|
47781
|
-
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_14_For_2_Template, 14, 28, "div",
|
|
47888
|
+
i0.ɵɵelementStart(0, "div", 88);
|
|
47889
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_14_For_2_Template, 14, 28, "div", 90, i0.ɵɵrepeaterTrackByIdentity);
|
|
47782
47890
|
i0.ɵɵelementEnd();
|
|
47783
47891
|
} if (rf & 2) {
|
|
47784
47892
|
i0.ɵɵadvance();
|
|
47785
47893
|
i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c2$c));
|
|
47786
47894
|
} }
|
|
47787
47895
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_15_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
47788
|
-
i0.ɵɵelementStart(0, "div",
|
|
47789
|
-
i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card",
|
|
47896
|
+
i0.ɵɵelementStart(0, "div", 96);
|
|
47897
|
+
i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card", 97);
|
|
47790
47898
|
i0.ɵɵelementEnd();
|
|
47791
47899
|
} if (rf & 2) {
|
|
47792
|
-
const
|
|
47793
|
-
const $
|
|
47900
|
+
const entry_r22 = ctx.$implicit;
|
|
47901
|
+
const $index_r23 = ctx.$index;
|
|
47794
47902
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
47795
|
-
i0.ɵɵclassMap(
|
|
47796
|
-
i0.ɵɵstyleProp("animation-delay", 0.3 + $
|
|
47797
|
-
i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "insight-" + $
|
|
47903
|
+
i0.ɵɵclassMap(entry_r22.cardClass);
|
|
47904
|
+
i0.ɵɵstyleProp("animation-delay", 0.3 + $index_r23 * 0.1 + "s");
|
|
47905
|
+
i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "insight-" + $index_r23);
|
|
47798
47906
|
i0.ɵɵadvance();
|
|
47799
|
-
i0.ɵɵproperty("insight",
|
|
47907
|
+
i0.ɵɵproperty("insight", entry_r22.insight)("allMetrics", ctx_r2.allMetrics())("charts", ctx_r2.chartsForInsight(entry_r22.insight))("allCharts", ctx_r2.allCharts())("allBusinessInsights", ctx_r2.allBusinessInsights())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", false);
|
|
47800
47908
|
} }
|
|
47801
47909
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_15_Template(rf, ctx) { if (rf & 1) {
|
|
47802
|
-
i0.ɵɵelementStart(0, "div",
|
|
47803
|
-
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_15_For_2_Template, 2, 14, "div",
|
|
47910
|
+
i0.ɵɵelementStart(0, "div", 88);
|
|
47911
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_15_For_2_Template, 2, 14, "div", 95, i0.ɵɵrepeaterTrackByIndex);
|
|
47804
47912
|
i0.ɵɵelementEnd();
|
|
47805
47913
|
} if (rf & 2) {
|
|
47806
47914
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -47808,21 +47916,21 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Co
|
|
|
47808
47916
|
i0.ɵɵrepeater(ctx_r2.insightsDisplay());
|
|
47809
47917
|
} }
|
|
47810
47918
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_16_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
47811
|
-
i0.ɵɵelementStart(0, "div",
|
|
47812
|
-
i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card",
|
|
47919
|
+
i0.ɵɵelementStart(0, "div", 96);
|
|
47920
|
+
i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card", 97);
|
|
47813
47921
|
i0.ɵɵelementEnd();
|
|
47814
47922
|
} if (rf & 2) {
|
|
47815
|
-
const
|
|
47816
|
-
const $
|
|
47923
|
+
const insight_r24 = ctx.$implicit;
|
|
47924
|
+
const $index_r25 = ctx.$index;
|
|
47817
47925
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
47818
|
-
i0.ɵɵstyleProp("animation-delay", 0.3 + $
|
|
47819
|
-
i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "insight-" + $
|
|
47926
|
+
i0.ɵɵstyleProp("animation-delay", 0.3 + $index_r25 * 0.1 + "s");
|
|
47927
|
+
i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "insight-" + $index_r25);
|
|
47820
47928
|
i0.ɵɵadvance();
|
|
47821
|
-
i0.ɵɵproperty("insight",
|
|
47929
|
+
i0.ɵɵproperty("insight", insight_r24)("allMetrics", ctx_r2.allMetrics())("charts", ctx_r2.chartsForInsight(insight_r24))("allCharts", ctx_r2.allCharts())("allBusinessInsights", ctx_r2.allBusinessInsights())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true);
|
|
47822
47930
|
} }
|
|
47823
47931
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_16_Template(rf, ctx) { if (rf & 1) {
|
|
47824
|
-
i0.ɵɵelementStart(0, "div",
|
|
47825
|
-
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_16_For_2_Template, 2, 12, "div",
|
|
47932
|
+
i0.ɵɵelementStart(0, "div", 89);
|
|
47933
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_16_For_2_Template, 2, 12, "div", 98, i0.ɵɵrepeaterTrackByIndex);
|
|
47826
47934
|
i0.ɵɵelementEnd();
|
|
47827
47935
|
} if (rf & 2) {
|
|
47828
47936
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -47830,22 +47938,22 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Co
|
|
|
47830
47938
|
i0.ɵɵrepeater(ctx_r2.insights());
|
|
47831
47939
|
} }
|
|
47832
47940
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
47833
|
-
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_0_Template, 1, 1, "symphiq-section-divider",
|
|
47834
|
-
i0.ɵɵelementStart(1, "section",
|
|
47835
|
-
i0.ɵɵelement(2, "div",
|
|
47836
|
-
i0.ɵɵelementStart(3, "div",
|
|
47941
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_0_Template, 1, 1, "symphiq-section-divider", 83);
|
|
47942
|
+
i0.ɵɵelementStart(1, "section", 84);
|
|
47943
|
+
i0.ɵɵelement(2, "div", 85);
|
|
47944
|
+
i0.ɵɵelementStart(3, "div", 86)(4, "div", 87)(5, "div", 61)(6, "div", 62)(7, "div", 61);
|
|
47837
47945
|
i0.ɵɵnamespaceSVG();
|
|
47838
|
-
i0.ɵɵelementStart(8, "svg",
|
|
47839
|
-
i0.ɵɵelement(9, "path",
|
|
47946
|
+
i0.ɵɵelementStart(8, "svg", 63);
|
|
47947
|
+
i0.ɵɵelement(9, "path", 64);
|
|
47840
47948
|
i0.ɵɵelementEnd();
|
|
47841
47949
|
i0.ɵɵnamespaceHTML();
|
|
47842
|
-
i0.ɵɵelementStart(10, "h2",
|
|
47950
|
+
i0.ɵɵelementStart(10, "h2", 65);
|
|
47843
47951
|
i0.ɵɵtext(11, "Key Insights");
|
|
47844
47952
|
i0.ɵɵelementEnd()()()();
|
|
47845
|
-
i0.ɵɵelementStart(12, "span",
|
|
47953
|
+
i0.ɵɵelementStart(12, "span", 66);
|
|
47846
47954
|
i0.ɵɵtext(13);
|
|
47847
47955
|
i0.ɵɵelementEnd()();
|
|
47848
|
-
i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_14_Template, 3, 1, "div",
|
|
47956
|
+
i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_14_Template, 3, 1, "div", 88)(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_15_Template, 3, 0, "div", 88)(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_16_Template, 3, 0, "div", 89);
|
|
47849
47957
|
i0.ɵɵelementEnd()();
|
|
47850
47958
|
} if (rf & 2) {
|
|
47851
47959
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
@@ -47866,13 +47974,13 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Te
|
|
|
47866
47974
|
i0.ɵɵconditional(ctx_r2.isDataLoading() || ctx_r2.viewModeService.isExpanded() && ctx_r2.viewModeService.getIsTransitioning() ? 14 : ctx_r2.viewModeService.isExpanded() ? 15 : 16);
|
|
47867
47975
|
} }
|
|
47868
47976
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
47869
|
-
i0.ɵɵelementStart(0, "div",
|
|
47870
|
-
i0.ɵɵelement(2, "div",
|
|
47977
|
+
i0.ɵɵelementStart(0, "div", 99)(1, "div", 116);
|
|
47978
|
+
i0.ɵɵelement(2, "div", 117);
|
|
47871
47979
|
i0.ɵɵelementEnd();
|
|
47872
|
-
i0.ɵɵelementStart(3, "div",
|
|
47980
|
+
i0.ɵɵelementStart(3, "div", 118)(4, "div", 119);
|
|
47873
47981
|
i0.ɵɵnamespaceSVG();
|
|
47874
|
-
i0.ɵɵelementStart(5, "svg",
|
|
47875
|
-
i0.ɵɵelement(6, "path",
|
|
47982
|
+
i0.ɵɵelementStart(5, "svg", 120);
|
|
47983
|
+
i0.ɵɵelement(6, "path", 121);
|
|
47876
47984
|
i0.ɵɵelementEnd()()()();
|
|
47877
47985
|
} if (rf & 2) {
|
|
47878
47986
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -47884,80 +47992,80 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Co
|
|
|
47884
47992
|
i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-emerald-500" : "text-emerald-400");
|
|
47885
47993
|
} }
|
|
47886
47994
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
47887
|
-
i0.ɵɵelementStart(0, "div",
|
|
47888
|
-
i0.ɵɵelement(1, "div",
|
|
47995
|
+
i0.ɵɵelementStart(0, "div", 106);
|
|
47996
|
+
i0.ɵɵelement(1, "div", 122);
|
|
47889
47997
|
i0.ɵɵelementEnd();
|
|
47890
47998
|
} }
|
|
47891
47999
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
47892
|
-
i0.ɵɵelementStart(0, "option",
|
|
48000
|
+
i0.ɵɵelementStart(0, "option", 123);
|
|
47893
48001
|
i0.ɵɵtext(1);
|
|
47894
48002
|
i0.ɵɵelementEnd();
|
|
47895
48003
|
} if (rf & 2) {
|
|
47896
|
-
const
|
|
47897
|
-
i0.ɵɵproperty("value",
|
|
48004
|
+
const cat_r27 = i0.ɵɵnextContext().$implicit;
|
|
48005
|
+
i0.ɵɵproperty("value", cat_r27.value);
|
|
47898
48006
|
i0.ɵɵadvance();
|
|
47899
|
-
i0.ɵɵtextInterpolate(
|
|
48007
|
+
i0.ɵɵtextInterpolate(cat_r27.label);
|
|
47900
48008
|
} }
|
|
47901
48009
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
47902
|
-
i0.ɵɵelementStart(0, "option",
|
|
48010
|
+
i0.ɵɵelementStart(0, "option", 25);
|
|
47903
48011
|
i0.ɵɵtext(1);
|
|
47904
48012
|
i0.ɵɵelementEnd();
|
|
47905
48013
|
} if (rf & 2) {
|
|
47906
|
-
const
|
|
47907
|
-
i0.ɵɵproperty("value",
|
|
48014
|
+
const cat_r27 = i0.ɵɵnextContext().$implicit;
|
|
48015
|
+
i0.ɵɵproperty("value", cat_r27.value);
|
|
47908
48016
|
i0.ɵɵadvance();
|
|
47909
|
-
i0.ɵɵtextInterpolate(
|
|
48017
|
+
i0.ɵɵtextInterpolate(cat_r27.label);
|
|
47910
48018
|
} }
|
|
47911
48019
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Template(rf, ctx) { if (rf & 1) {
|
|
47912
|
-
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Conditional_0_Template, 2, 2, "option",
|
|
48020
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Conditional_0_Template, 2, 2, "option", 123)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Conditional_1_Template, 2, 2, "option", 25);
|
|
47913
48021
|
} if (rf & 2) {
|
|
47914
|
-
const
|
|
47915
|
-
i0.ɵɵconditional(
|
|
48022
|
+
const cat_r27 = ctx.$implicit;
|
|
48023
|
+
i0.ɵɵconditional(cat_r27.divider ? 0 : 1);
|
|
47916
48024
|
} }
|
|
47917
48025
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_20_Template(rf, ctx) { if (rf & 1) {
|
|
47918
48026
|
i0.ɵɵnamespaceSVG();
|
|
47919
|
-
i0.ɵɵelement(0, "path",
|
|
48027
|
+
i0.ɵɵelement(0, "path", 110);
|
|
47920
48028
|
} }
|
|
47921
48029
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_21_Template(rf, ctx) { if (rf & 1) {
|
|
47922
48030
|
i0.ɵɵnamespaceSVG();
|
|
47923
|
-
i0.ɵɵelement(0, "path",
|
|
48031
|
+
i0.ɵɵelement(0, "path", 111);
|
|
47924
48032
|
} }
|
|
47925
48033
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
47926
|
-
const
|
|
47927
|
-
i0.ɵɵelementStart(0, "button",
|
|
47928
|
-
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Conditional_0_Template_button_click_0_listener() { i0.ɵɵrestoreView(
|
|
48034
|
+
const _r28 = i0.ɵɵgetCurrentView();
|
|
48035
|
+
i0.ɵɵelementStart(0, "button", 125);
|
|
48036
|
+
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Conditional_0_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r28); const cat_r29 = i0.ɵɵnextContext().$implicit; const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter(cat_r29.value)); });
|
|
47929
48037
|
i0.ɵɵtext(1);
|
|
47930
48038
|
i0.ɵɵelementEnd();
|
|
47931
48039
|
} if (rf & 2) {
|
|
47932
|
-
const
|
|
48040
|
+
const cat_r29 = i0.ɵɵnextContext().$implicit;
|
|
47933
48041
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
47934
48042
|
i0.ɵɵclassProp("opacity-70", ctx_r2.isCategoryTransitioning());
|
|
47935
|
-
i0.ɵɵproperty("ngClass", ctx_r2.getCategoryPillClass(
|
|
48043
|
+
i0.ɵɵproperty("ngClass", ctx_r2.getCategoryPillClass(cat_r29.value));
|
|
47936
48044
|
i0.ɵɵadvance();
|
|
47937
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
48045
|
+
i0.ɵɵtextInterpolate1(" ", cat_r29.label, " ");
|
|
47938
48046
|
} }
|
|
47939
48047
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Template(rf, ctx) { if (rf & 1) {
|
|
47940
|
-
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Conditional_0_Template, 2, 4, "button",
|
|
48048
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Conditional_0_Template, 2, 4, "button", 124);
|
|
47941
48049
|
} if (rf & 2) {
|
|
47942
|
-
const
|
|
47943
|
-
i0.ɵɵconditional(!
|
|
48050
|
+
const cat_r29 = ctx.$implicit;
|
|
48051
|
+
i0.ɵɵconditional(!cat_r29.divider ? 0 : -1);
|
|
47944
48052
|
} }
|
|
47945
48053
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_For_2_For_10_Template(rf, ctx) { if (rf & 1) {
|
|
47946
|
-
i0.ɵɵelement(0, "symphiq-skeleton-loader",
|
|
48054
|
+
i0.ɵɵelement(0, "symphiq-skeleton-loader", 69);
|
|
47947
48055
|
} if (rf & 2) {
|
|
47948
48056
|
const ctx_r2 = i0.ɵɵnextContext(5);
|
|
47949
48057
|
i0.ɵɵproperty("width", "100%")("height", "120px")("isLightMode", ctx_r2.isLightMode());
|
|
47950
48058
|
} }
|
|
47951
48059
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
47952
|
-
i0.ɵɵelementStart(0, "div",
|
|
47953
|
-
i0.ɵɵelement(3, "symphiq-skeleton-loader",
|
|
47954
|
-
i0.ɵɵelementStart(4, "div",
|
|
47955
|
-
i0.ɵɵelement(5, "symphiq-skeleton-loader",
|
|
48060
|
+
i0.ɵɵelementStart(0, "div", 126)(1, "div", 127)(2, "div", 61);
|
|
48061
|
+
i0.ɵɵelement(3, "symphiq-skeleton-loader", 69);
|
|
48062
|
+
i0.ɵɵelementStart(4, "div", 81);
|
|
48063
|
+
i0.ɵɵelement(5, "symphiq-skeleton-loader", 69)(6, "symphiq-skeleton-loader", 69);
|
|
47956
48064
|
i0.ɵɵelementEnd()();
|
|
47957
|
-
i0.ɵɵelement(7, "symphiq-skeleton-loader",
|
|
48065
|
+
i0.ɵɵelement(7, "symphiq-skeleton-loader", 69);
|
|
47958
48066
|
i0.ɵɵelementEnd();
|
|
47959
|
-
i0.ɵɵelementStart(8, "div",
|
|
47960
|
-
i0.ɵɵrepeaterCreate(9, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_For_2_For_10_Template, 1, 3, "symphiq-skeleton-loader",
|
|
48067
|
+
i0.ɵɵelementStart(8, "div", 128);
|
|
48068
|
+
i0.ɵɵrepeaterCreate(9, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_For_2_For_10_Template, 1, 3, "symphiq-skeleton-loader", 69, i0.ɵɵrepeaterTrackByIdentity);
|
|
47961
48069
|
i0.ɵɵelementEnd()();
|
|
47962
48070
|
} if (rf & 2) {
|
|
47963
48071
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
@@ -47974,69 +48082,69 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Co
|
|
|
47974
48082
|
i0.ɵɵrepeater(i0.ɵɵpureFunction0(13, _c4$5));
|
|
47975
48083
|
} }
|
|
47976
48084
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_Template(rf, ctx) { if (rf & 1) {
|
|
47977
|
-
i0.ɵɵelementStart(0, "div",
|
|
47978
|
-
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_For_2_Template, 11, 14, "div",
|
|
48085
|
+
i0.ɵɵelementStart(0, "div", 114);
|
|
48086
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_For_2_Template, 11, 14, "div", 126, i0.ɵɵrepeaterTrackByIdentity);
|
|
47979
48087
|
i0.ɵɵelementEnd();
|
|
47980
48088
|
} if (rf & 2) {
|
|
47981
48089
|
i0.ɵɵadvance();
|
|
47982
48090
|
i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c3$8));
|
|
47983
48091
|
} }
|
|
47984
48092
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
47985
|
-
i0.ɵɵelementStart(0, "div",
|
|
47986
|
-
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card",
|
|
48093
|
+
i0.ɵɵelementStart(0, "div", 134);
|
|
48094
|
+
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 135);
|
|
47987
48095
|
i0.ɵɵelementEnd();
|
|
47988
48096
|
} if (rf & 2) {
|
|
47989
|
-
const
|
|
47990
|
-
const ɵ$
|
|
47991
|
-
const ɵ$
|
|
48097
|
+
const entry_r30 = ctx.$implicit;
|
|
48098
|
+
const ɵ$index_435_r31 = ctx.$index;
|
|
48099
|
+
const ɵ$index_426_r32 = i0.ɵɵnextContext(3).$index;
|
|
47992
48100
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
47993
|
-
i0.ɵɵclassMap(
|
|
47994
|
-
i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$
|
|
48101
|
+
i0.ɵɵclassMap(entry_r30.bentoCardClass);
|
|
48102
|
+
i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_426_r32 * 0.15 + ɵ$index_435_r31 * 0.08 + "s");
|
|
47995
48103
|
i0.ɵɵadvance();
|
|
47996
|
-
i0.ɵɵproperty("metric",
|
|
48104
|
+
i0.ɵɵproperty("metric", entry_r30.metric)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(entry_r30.metric))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", false)("currencySymbol", ctx_r2.currencySymbol());
|
|
47997
48105
|
} }
|
|
47998
48106
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
47999
|
-
i0.ɵɵelementStart(0, "div",
|
|
48000
|
-
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template, 2, 13, "div",
|
|
48107
|
+
i0.ɵɵelementStart(0, "div", 131);
|
|
48108
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template, 2, 13, "div", 133, i0.ɵɵrepeaterTrackByIndex);
|
|
48001
48109
|
i0.ɵɵelementEnd();
|
|
48002
48110
|
} if (rf & 2) {
|
|
48003
|
-
const
|
|
48111
|
+
const funnelGroup_r33 = i0.ɵɵnextContext(2).$implicit;
|
|
48004
48112
|
i0.ɵɵadvance();
|
|
48005
|
-
i0.ɵɵrepeater(
|
|
48113
|
+
i0.ɵɵrepeater(funnelGroup_r33.relatedMetricsDisplay);
|
|
48006
48114
|
} }
|
|
48007
48115
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
48008
|
-
i0.ɵɵelementStart(0, "div",
|
|
48009
|
-
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card",
|
|
48116
|
+
i0.ɵɵelementStart(0, "div", 134);
|
|
48117
|
+
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 73);
|
|
48010
48118
|
i0.ɵɵelementEnd();
|
|
48011
48119
|
} if (rf & 2) {
|
|
48012
|
-
const
|
|
48013
|
-
const ɵ$
|
|
48014
|
-
const ɵ$
|
|
48120
|
+
const entry_r34 = ctx.$implicit;
|
|
48121
|
+
const ɵ$index_443_r35 = ctx.$index;
|
|
48122
|
+
const ɵ$index_426_r32 = i0.ɵɵnextContext(3).$index;
|
|
48015
48123
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
48016
|
-
i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$
|
|
48124
|
+
i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_426_r32 * 0.15 + ɵ$index_443_r35 * 0.08 + "s");
|
|
48017
48125
|
i0.ɵɵadvance();
|
|
48018
|
-
i0.ɵɵproperty("metric",
|
|
48126
|
+
i0.ɵɵproperty("metric", entry_r34.metric)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(entry_r34.metric))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true)("currencySymbol", ctx_r2.currencySymbol());
|
|
48019
48127
|
} }
|
|
48020
48128
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
48021
|
-
i0.ɵɵelementStart(0, "div",
|
|
48022
|
-
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template, 2, 11, "div",
|
|
48129
|
+
i0.ɵɵelementStart(0, "div", 132);
|
|
48130
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template, 2, 11, "div", 136, i0.ɵɵrepeaterTrackByIndex);
|
|
48023
48131
|
i0.ɵɵelementEnd();
|
|
48024
48132
|
} if (rf & 2) {
|
|
48025
|
-
const
|
|
48133
|
+
const funnelGroup_r33 = i0.ɵɵnextContext(2).$implicit;
|
|
48026
48134
|
i0.ɵɵadvance();
|
|
48027
|
-
i0.ɵɵrepeater(
|
|
48135
|
+
i0.ɵɵrepeater(funnelGroup_r33.relatedMetricsDisplay);
|
|
48028
48136
|
} }
|
|
48029
48137
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
48030
|
-
i0.ɵɵelementStart(0, "div",
|
|
48031
|
-
i0.ɵɵelement(3, "symphiq-skeleton-loader",
|
|
48138
|
+
i0.ɵɵelementStart(0, "div", 137)(1, "div", 91)(2, "div", 103);
|
|
48139
|
+
i0.ɵɵelement(3, "symphiq-skeleton-loader", 69)(4, "symphiq-skeleton-loader", 69);
|
|
48032
48140
|
i0.ɵɵelementEnd();
|
|
48033
|
-
i0.ɵɵelement(5, "symphiq-skeleton-loader",
|
|
48034
|
-
i0.ɵɵelementStart(6, "div",
|
|
48035
|
-
i0.ɵɵelement(7, "symphiq-skeleton-loader",
|
|
48141
|
+
i0.ɵɵelement(5, "symphiq-skeleton-loader", 69);
|
|
48142
|
+
i0.ɵɵelementStart(6, "div", 138);
|
|
48143
|
+
i0.ɵɵelement(7, "symphiq-skeleton-loader", 69)(8, "symphiq-skeleton-loader", 69);
|
|
48036
48144
|
i0.ɵɵelementEnd();
|
|
48037
|
-
i0.ɵɵelement(9, "symphiq-skeleton-loader",
|
|
48038
|
-
i0.ɵɵelementStart(11, "div",
|
|
48039
|
-
i0.ɵɵelement(12, "symphiq-skeleton-loader",
|
|
48145
|
+
i0.ɵɵelement(9, "symphiq-skeleton-loader", 69)(10, "symphiq-skeleton-loader", 69);
|
|
48146
|
+
i0.ɵɵelementStart(11, "div", 139);
|
|
48147
|
+
i0.ɵɵelement(12, "symphiq-skeleton-loader", 69);
|
|
48040
48148
|
i0.ɵɵelementEnd()()();
|
|
48041
48149
|
} if (rf & 2) {
|
|
48042
48150
|
const ctx_r2 = i0.ɵɵnextContext(7);
|
|
@@ -48059,46 +48167,46 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Co
|
|
|
48059
48167
|
i0.ɵɵproperty("width", "100%")("height", "120px")("isLightMode", ctx_r2.isLightMode());
|
|
48060
48168
|
} }
|
|
48061
48169
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
48062
|
-
i0.ɵɵelementStart(0, "div",
|
|
48063
|
-
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template, 13, 25, "div",
|
|
48170
|
+
i0.ɵɵelementStart(0, "div", 131);
|
|
48171
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template, 13, 25, "div", 137, i0.ɵɵrepeaterTrackByIdentity);
|
|
48064
48172
|
i0.ɵɵelementEnd();
|
|
48065
48173
|
} if (rf & 2) {
|
|
48066
48174
|
i0.ɵɵadvance();
|
|
48067
48175
|
i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c4$5));
|
|
48068
48176
|
} }
|
|
48069
48177
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
48070
|
-
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_Template, 3, 0, "div",
|
|
48178
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_Template, 3, 0, "div", 131)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_Template, 3, 0, "div", 132)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_Template, 3, 1, "div", 131);
|
|
48071
48179
|
} if (rf & 2) {
|
|
48072
48180
|
const ctx_r2 = i0.ɵɵnextContext(5);
|
|
48073
48181
|
i0.ɵɵconditional(ctx_r2.viewModeService.isExpanded() ? 0 : !ctx_r2.viewModeService.isExpanded() ? 1 : 2);
|
|
48074
48182
|
} }
|
|
48075
48183
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
48076
|
-
i0.ɵɵelementStart(0, "div",
|
|
48077
|
-
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card",
|
|
48184
|
+
i0.ɵɵelementStart(0, "div", 130);
|
|
48185
|
+
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 73);
|
|
48078
48186
|
i0.ɵɵelementEnd();
|
|
48079
48187
|
i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Template, 3, 1);
|
|
48080
48188
|
} if (rf & 2) {
|
|
48081
|
-
const
|
|
48082
|
-
const ɵ$
|
|
48189
|
+
const funnelGroup_r33 = ctx.$implicit;
|
|
48190
|
+
const ɵ$index_426_r32 = ctx.$index;
|
|
48083
48191
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
48084
|
-
i0.ɵɵstyleProp("animation-delay", 0.5 + ɵ$
|
|
48085
|
-
i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "metric-" + ɵ$
|
|
48192
|
+
i0.ɵɵstyleProp("animation-delay", 0.5 + ɵ$index_426_r32 * 0.15 + "s");
|
|
48193
|
+
i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "metric-" + ɵ$index_426_r32);
|
|
48086
48194
|
i0.ɵɵadvance();
|
|
48087
|
-
i0.ɵɵproperty("metric",
|
|
48195
|
+
i0.ɵɵproperty("metric", funnelGroup_r33.funnelMetric)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(funnelGroup_r33.funnelMetric))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", ctx_r2.viewModeService.isCompact())("currencySymbol", ctx_r2.currencySymbol());
|
|
48088
48196
|
i0.ɵɵadvance();
|
|
48089
|
-
i0.ɵɵconditional(
|
|
48197
|
+
i0.ɵɵconditional(funnelGroup_r33.relatedMetricsDisplay.length > 0 ? 2 : -1);
|
|
48090
48198
|
} }
|
|
48091
48199
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_ForEmpty_3_Template(rf, ctx) { if (rf & 1) {
|
|
48092
|
-
i0.ɵɵelementStart(0, "div",
|
|
48200
|
+
i0.ɵɵelementStart(0, "div", 129);
|
|
48093
48201
|
i0.ɵɵnamespaceSVG();
|
|
48094
|
-
i0.ɵɵelementStart(1, "svg",
|
|
48095
|
-
i0.ɵɵelement(2, "path",
|
|
48202
|
+
i0.ɵɵelementStart(1, "svg", 140);
|
|
48203
|
+
i0.ɵɵelement(2, "path", 104);
|
|
48096
48204
|
i0.ɵɵelementEnd();
|
|
48097
48205
|
i0.ɵɵnamespaceHTML();
|
|
48098
|
-
i0.ɵɵelementStart(3, "h3",
|
|
48206
|
+
i0.ɵɵelementStart(3, "h3", 141);
|
|
48099
48207
|
i0.ɵɵtext(4, "No Metrics Found");
|
|
48100
48208
|
i0.ɵɵelementEnd();
|
|
48101
|
-
i0.ɵɵelementStart(5, "p",
|
|
48209
|
+
i0.ɵɵelementStart(5, "p", 142);
|
|
48102
48210
|
i0.ɵɵtext(6, "No performance metrics match your current filter selection. Try adjusting your filters to see more results.");
|
|
48103
48211
|
i0.ɵɵelementEnd()();
|
|
48104
48212
|
} if (rf & 2) {
|
|
@@ -48112,8 +48220,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Co
|
|
|
48112
48220
|
i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-slate-600" : "text-slate-400");
|
|
48113
48221
|
} }
|
|
48114
48222
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_Template(rf, ctx) { if (rf & 1) {
|
|
48115
|
-
i0.ɵɵelementStart(0, "div",
|
|
48116
|
-
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Template, 3, 14, null, null, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_ForEmpty_3_Template, 7, 4, "div",
|
|
48223
|
+
i0.ɵɵelementStart(0, "div", 114);
|
|
48224
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Template, 3, 14, null, null, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_ForEmpty_3_Template, 7, 4, "div", 129);
|
|
48117
48225
|
i0.ɵɵelementEnd();
|
|
48118
48226
|
} if (rf & 2) {
|
|
48119
48227
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -48122,40 +48230,40 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Co
|
|
|
48122
48230
|
i0.ɵɵrepeater(ctx_r2.groupedMetricsDisplay());
|
|
48123
48231
|
} }
|
|
48124
48232
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
48125
|
-
const
|
|
48126
|
-
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_0_Template, 7, 3, "div",
|
|
48127
|
-
i0.ɵɵelementStart(1, "section",
|
|
48128
|
-
i0.ɵɵelement(2, "div",
|
|
48129
|
-
i0.ɵɵelementStart(3, "div",
|
|
48233
|
+
const _r26 = i0.ɵɵgetCurrentView();
|
|
48234
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_0_Template, 7, 3, "div", 99);
|
|
48235
|
+
i0.ɵɵelementStart(1, "section", 100);
|
|
48236
|
+
i0.ɵɵelement(2, "div", 101);
|
|
48237
|
+
i0.ɵɵelementStart(3, "div", 86)(4, "div", 102)(5, "div", 103)(6, "div", 61)(7, "div", 62)(8, "div", 61);
|
|
48130
48238
|
i0.ɵɵnamespaceSVG();
|
|
48131
|
-
i0.ɵɵelementStart(9, "svg",
|
|
48132
|
-
i0.ɵɵelement(10, "path",
|
|
48239
|
+
i0.ɵɵelementStart(9, "svg", 63);
|
|
48240
|
+
i0.ɵɵelement(10, "path", 104);
|
|
48133
48241
|
i0.ɵɵelementEnd();
|
|
48134
48242
|
i0.ɵɵnamespaceHTML();
|
|
48135
|
-
i0.ɵɵelementStart(11, "h2",
|
|
48243
|
+
i0.ɵɵelementStart(11, "h2", 65);
|
|
48136
48244
|
i0.ɵɵtext(12, "Performance Metrics");
|
|
48137
48245
|
i0.ɵɵelementEnd()()()();
|
|
48138
|
-
i0.ɵɵelementStart(13, "div",
|
|
48139
|
-
i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_14_Template, 2, 0, "div",
|
|
48140
|
-
i0.ɵɵelementStart(15, "select",
|
|
48141
|
-
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Template_select_ngModelChange_15_listener($event) { i0.ɵɵrestoreView(
|
|
48246
|
+
i0.ɵɵelementStart(13, "div", 105);
|
|
48247
|
+
i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_14_Template, 2, 0, "div", 106);
|
|
48248
|
+
i0.ɵɵelementStart(15, "select", 107);
|
|
48249
|
+
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Template_select_ngModelChange_15_listener($event) { i0.ɵɵrestoreView(_r26); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter($event)); });
|
|
48142
48250
|
i0.ɵɵrepeaterCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Template, 2, 1, null, null, _forTrack0$J);
|
|
48143
48251
|
i0.ɵɵelementEnd();
|
|
48144
|
-
i0.ɵɵelementStart(18, "button",
|
|
48145
|
-
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Template_button_click_18_listener() { i0.ɵɵrestoreView(
|
|
48252
|
+
i0.ɵɵelementStart(18, "button", 108);
|
|
48253
|
+
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Template_button_click_18_listener() { i0.ɵɵrestoreView(_r26); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.toggleSortOrder()); });
|
|
48146
48254
|
i0.ɵɵnamespaceSVG();
|
|
48147
|
-
i0.ɵɵelementStart(19, "svg",
|
|
48148
|
-
i0.ɵɵconditionalCreate(20, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_20_Template, 1, 0, ":svg:path",
|
|
48149
|
-
i0.ɵɵconditionalCreate(21, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_21_Template, 1, 0, ":svg:path",
|
|
48255
|
+
i0.ɵɵelementStart(19, "svg", 109);
|
|
48256
|
+
i0.ɵɵconditionalCreate(20, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_20_Template, 1, 0, ":svg:path", 110);
|
|
48257
|
+
i0.ɵɵconditionalCreate(21, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_21_Template, 1, 0, ":svg:path", 111);
|
|
48150
48258
|
i0.ɵɵelementEnd();
|
|
48151
48259
|
i0.ɵɵnamespaceHTML();
|
|
48152
48260
|
i0.ɵɵelementStart(22, "span");
|
|
48153
48261
|
i0.ɵɵtext(23, "Sort");
|
|
48154
48262
|
i0.ɵɵelementEnd()()()();
|
|
48155
|
-
i0.ɵɵelementStart(24, "div",
|
|
48263
|
+
i0.ɵɵelementStart(24, "div", 112)(25, "div", 113);
|
|
48156
48264
|
i0.ɵɵrepeaterCreate(26, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Template, 1, 1, null, null, _forTrack0$J);
|
|
48157
48265
|
i0.ɵɵelementEnd()()();
|
|
48158
|
-
i0.ɵɵconditionalCreate(28, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_Template, 3, 1, "div",
|
|
48266
|
+
i0.ɵɵconditionalCreate(28, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_Template, 3, 1, "div", 114)(29, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_Template, 4, 5, "div", 115);
|
|
48159
48267
|
i0.ɵɵelementEnd()();
|
|
48160
48268
|
} if (rf & 2) {
|
|
48161
48269
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
@@ -48189,8 +48297,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Te
|
|
|
48189
48297
|
i0.ɵɵconditional(ctx_r2.isDataLoading() ? 28 : 29);
|
|
48190
48298
|
} }
|
|
48191
48299
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
48192
|
-
i0.ɵɵelementStart(0, "div",
|
|
48193
|
-
i0.ɵɵelement(1, "symphiq-section-divider",
|
|
48300
|
+
i0.ɵɵelementStart(0, "div", 143);
|
|
48301
|
+
i0.ɵɵelement(1, "symphiq-section-divider", 151);
|
|
48194
48302
|
i0.ɵɵelementEnd();
|
|
48195
48303
|
} if (rf & 2) {
|
|
48196
48304
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -48198,39 +48306,39 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Co
|
|
|
48198
48306
|
i0.ɵɵproperty("viewMode", ctx_r2.viewMode());
|
|
48199
48307
|
} }
|
|
48200
48308
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
48201
|
-
i0.ɵɵelementStart(0, "div",
|
|
48202
|
-
i0.ɵɵelement(1, "div",
|
|
48309
|
+
i0.ɵɵelementStart(0, "div", 106);
|
|
48310
|
+
i0.ɵɵelement(1, "div", 152);
|
|
48203
48311
|
i0.ɵɵelementEnd();
|
|
48204
48312
|
} }
|
|
48205
48313
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
48206
|
-
i0.ɵɵelementStart(0, "option",
|
|
48314
|
+
i0.ɵɵelementStart(0, "option", 123);
|
|
48207
48315
|
i0.ɵɵtext(1);
|
|
48208
48316
|
i0.ɵɵelementEnd();
|
|
48209
48317
|
} if (rf & 2) {
|
|
48210
|
-
const
|
|
48211
|
-
i0.ɵɵproperty("value",
|
|
48318
|
+
const filter_r37 = i0.ɵɵnextContext().$implicit;
|
|
48319
|
+
i0.ɵɵproperty("value", filter_r37.value);
|
|
48212
48320
|
i0.ɵɵadvance();
|
|
48213
|
-
i0.ɵɵtextInterpolate(
|
|
48321
|
+
i0.ɵɵtextInterpolate(filter_r37.label);
|
|
48214
48322
|
} }
|
|
48215
48323
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
48216
|
-
i0.ɵɵelementStart(0, "option",
|
|
48324
|
+
i0.ɵɵelementStart(0, "option", 25);
|
|
48217
48325
|
i0.ɵɵtext(1);
|
|
48218
48326
|
i0.ɵɵelementEnd();
|
|
48219
48327
|
} if (rf & 2) {
|
|
48220
|
-
const
|
|
48221
|
-
i0.ɵɵproperty("value",
|
|
48328
|
+
const filter_r37 = i0.ɵɵnextContext().$implicit;
|
|
48329
|
+
i0.ɵɵproperty("value", filter_r37.value);
|
|
48222
48330
|
i0.ɵɵadvance();
|
|
48223
|
-
i0.ɵɵtextInterpolate(
|
|
48331
|
+
i0.ɵɵtextInterpolate(filter_r37.label);
|
|
48224
48332
|
} }
|
|
48225
48333
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Template(rf, ctx) { if (rf & 1) {
|
|
48226
|
-
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Conditional_0_Template, 2, 2, "option",
|
|
48334
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Conditional_0_Template, 2, 2, "option", 123)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Conditional_1_Template, 2, 2, "option", 25);
|
|
48227
48335
|
} if (rf & 2) {
|
|
48228
|
-
const
|
|
48229
|
-
i0.ɵɵconditional(
|
|
48336
|
+
const filter_r37 = ctx.$implicit;
|
|
48337
|
+
i0.ɵɵconditional(filter_r37.divider ? 0 : 1);
|
|
48230
48338
|
} }
|
|
48231
48339
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_For_2_For_6_Template(rf, ctx) { if (rf & 1) {
|
|
48232
|
-
i0.ɵɵelementStart(0, "div",
|
|
48233
|
-
i0.ɵɵelement(1, "symphiq-skeleton-loader",
|
|
48340
|
+
i0.ɵɵelementStart(0, "div", 154);
|
|
48341
|
+
i0.ɵɵelement(1, "symphiq-skeleton-loader", 69)(2, "symphiq-skeleton-loader", 69);
|
|
48234
48342
|
i0.ɵɵelementEnd();
|
|
48235
48343
|
} if (rf & 2) {
|
|
48236
48344
|
const ctx_r2 = i0.ɵɵnextContext(5);
|
|
@@ -48241,11 +48349,11 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Co
|
|
|
48241
48349
|
i0.ɵɵproperty("width", "80px")("height", "18px")("isLightMode", ctx_r2.isLightMode());
|
|
48242
48350
|
} }
|
|
48243
48351
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
48244
|
-
i0.ɵɵelementStart(0, "div",
|
|
48245
|
-
i0.ɵɵelement(2, "symphiq-skeleton-loader",
|
|
48352
|
+
i0.ɵɵelementStart(0, "div", 126)(1, "div", 127);
|
|
48353
|
+
i0.ɵɵelement(2, "symphiq-skeleton-loader", 69)(3, "symphiq-skeleton-loader", 69);
|
|
48246
48354
|
i0.ɵɵelementEnd();
|
|
48247
|
-
i0.ɵɵelementStart(4, "div",
|
|
48248
|
-
i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_For_2_For_6_Template, 3, 7, "div",
|
|
48355
|
+
i0.ɵɵelementStart(4, "div", 153);
|
|
48356
|
+
i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_For_2_For_6_Template, 3, 7, "div", 154, i0.ɵɵrepeaterTrackByIdentity);
|
|
48249
48357
|
i0.ɵɵelementEnd()();
|
|
48250
48358
|
} if (rf & 2) {
|
|
48251
48359
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
@@ -48258,37 +48366,37 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Co
|
|
|
48258
48366
|
i0.ɵɵrepeater(i0.ɵɵpureFunction0(7, _c4$5));
|
|
48259
48367
|
} }
|
|
48260
48368
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_Template(rf, ctx) { if (rf & 1) {
|
|
48261
|
-
i0.ɵɵelementStart(0, "div",
|
|
48262
|
-
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_For_2_Template, 7, 8, "div",
|
|
48369
|
+
i0.ɵɵelementStart(0, "div", 79);
|
|
48370
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_For_2_Template, 7, 8, "div", 126, i0.ɵɵrepeaterTrackByIdentity);
|
|
48263
48371
|
i0.ɵɵelementEnd();
|
|
48264
48372
|
} if (rf & 2) {
|
|
48265
48373
|
i0.ɵɵadvance();
|
|
48266
48374
|
i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c5$3));
|
|
48267
48375
|
} }
|
|
48268
48376
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
48269
|
-
i0.ɵɵelementStart(0, "div",
|
|
48270
|
-
i0.ɵɵelement(1, "symphiq-funnel-analysis-breakdown-section",
|
|
48377
|
+
i0.ɵɵelementStart(0, "div", 96);
|
|
48378
|
+
i0.ɵɵelement(1, "symphiq-funnel-analysis-breakdown-section", 155);
|
|
48271
48379
|
i0.ɵɵelementEnd();
|
|
48272
48380
|
} if (rf & 2) {
|
|
48273
|
-
const
|
|
48274
|
-
const $
|
|
48381
|
+
const breakdown_r38 = ctx.$implicit;
|
|
48382
|
+
const $index_r39 = ctx.$index;
|
|
48275
48383
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
48276
|
-
i0.ɵɵstyleProp("animation-delay", 0.8 + $
|
|
48277
|
-
i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "breakdown-" + $
|
|
48384
|
+
i0.ɵɵstyleProp("animation-delay", 0.8 + $index_r39 * 0.1 + "s");
|
|
48385
|
+
i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "breakdown-" + $index_r39);
|
|
48278
48386
|
i0.ɵɵadvance();
|
|
48279
|
-
i0.ɵɵproperty("breakdown",
|
|
48387
|
+
i0.ɵɵproperty("breakdown", breakdown_r38)("charts", ctx_r2.chartsForBreakdown(breakdown_r38))("isLightMode", ctx_r2.isLightMode())("isCompactMode", ctx_r2.viewModeService.isCompact())("currencySymbol", ctx_r2.currencySymbol());
|
|
48280
48388
|
} }
|
|
48281
48389
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_ForEmpty_3_Template(rf, ctx) { if (rf & 1) {
|
|
48282
|
-
i0.ɵɵelementStart(0, "div",
|
|
48390
|
+
i0.ɵɵelementStart(0, "div", 129);
|
|
48283
48391
|
i0.ɵɵnamespaceSVG();
|
|
48284
|
-
i0.ɵɵelementStart(1, "svg",
|
|
48285
|
-
i0.ɵɵelement(2, "path",
|
|
48392
|
+
i0.ɵɵelementStart(1, "svg", 140);
|
|
48393
|
+
i0.ɵɵelement(2, "path", 156);
|
|
48286
48394
|
i0.ɵɵelementEnd();
|
|
48287
48395
|
i0.ɵɵnamespaceHTML();
|
|
48288
|
-
i0.ɵɵelementStart(3, "h3",
|
|
48396
|
+
i0.ɵɵelementStart(3, "h3", 141);
|
|
48289
48397
|
i0.ɵɵtext(4, "No Breakdowns Found");
|
|
48290
48398
|
i0.ɵɵelementEnd();
|
|
48291
|
-
i0.ɵɵelementStart(5, "p",
|
|
48399
|
+
i0.ɵɵelementStart(5, "p", 142);
|
|
48292
48400
|
i0.ɵɵtext(6, "No performance breakdowns match your current filter selection. Try adjusting your filters to see more results.");
|
|
48293
48401
|
i0.ɵɵelementEnd()();
|
|
48294
48402
|
} if (rf & 2) {
|
|
@@ -48302,8 +48410,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Co
|
|
|
48302
48410
|
i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-slate-600" : "text-slate-400");
|
|
48303
48411
|
} }
|
|
48304
48412
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_Template(rf, ctx) { if (rf & 1) {
|
|
48305
|
-
i0.ɵɵelementStart(0, "div",
|
|
48306
|
-
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_For_2_Template, 2, 9, "div",
|
|
48413
|
+
i0.ɵɵelementStart(0, "div", 79);
|
|
48414
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_For_2_Template, 2, 9, "div", 98, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_ForEmpty_3_Template, 7, 4, "div", 129);
|
|
48307
48415
|
i0.ɵɵelementEnd();
|
|
48308
48416
|
} if (rf & 2) {
|
|
48309
48417
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -48312,27 +48420,27 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Co
|
|
|
48312
48420
|
i0.ɵɵrepeater(ctx_r2.breakdowns());
|
|
48313
48421
|
} }
|
|
48314
48422
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
48315
|
-
const
|
|
48316
|
-
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_0_Template, 2, 1, "div",
|
|
48317
|
-
i0.ɵɵelementStart(1, "section",
|
|
48318
|
-
i0.ɵɵelement(2, "div",
|
|
48319
|
-
i0.ɵɵelementStart(3, "div",
|
|
48423
|
+
const _r36 = i0.ɵɵgetCurrentView();
|
|
48424
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_0_Template, 2, 1, "div", 143);
|
|
48425
|
+
i0.ɵɵelementStart(1, "section", 144);
|
|
48426
|
+
i0.ɵɵelement(2, "div", 145);
|
|
48427
|
+
i0.ɵɵelementStart(3, "div", 86)(4, "div", 146)(5, "div", 62)(6, "div", 61);
|
|
48320
48428
|
i0.ɵɵnamespaceSVG();
|
|
48321
|
-
i0.ɵɵelementStart(7, "svg",
|
|
48322
|
-
i0.ɵɵelement(8, "path",
|
|
48429
|
+
i0.ɵɵelementStart(7, "svg", 63);
|
|
48430
|
+
i0.ɵɵelement(8, "path", 147);
|
|
48323
48431
|
i0.ɵɵelementEnd();
|
|
48324
48432
|
i0.ɵɵnamespaceHTML();
|
|
48325
|
-
i0.ɵɵelementStart(9, "h2",
|
|
48433
|
+
i0.ɵɵelementStart(9, "h2", 65);
|
|
48326
48434
|
i0.ɵɵtext(10, "Performance Breakdowns");
|
|
48327
48435
|
i0.ɵɵelementEnd()()();
|
|
48328
|
-
i0.ɵɵelementStart(11, "div",
|
|
48329
|
-
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template_div_click_11_listener($event) { i0.ɵɵrestoreView(
|
|
48330
|
-
i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_12_Template, 2, 0, "div",
|
|
48331
|
-
i0.ɵɵelementStart(13, "select",
|
|
48332
|
-
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template_select_ngModelChange_13_listener($event) { i0.ɵɵrestoreView(
|
|
48436
|
+
i0.ɵɵelementStart(11, "div", 148);
|
|
48437
|
+
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template_div_click_11_listener($event) { i0.ɵɵrestoreView(_r36); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template_div_mousedown_11_listener($event) { i0.ɵɵrestoreView(_r36); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template_div_pointerdown_11_listener($event) { i0.ɵɵrestoreView(_r36); return i0.ɵɵresetView($event.stopPropagation()); });
|
|
48438
|
+
i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_12_Template, 2, 0, "div", 106);
|
|
48439
|
+
i0.ɵɵelementStart(13, "select", 149);
|
|
48440
|
+
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template_select_ngModelChange_13_listener($event) { i0.ɵɵrestoreView(_r36); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeBreakdownFilter($event)); });
|
|
48333
48441
|
i0.ɵɵrepeaterCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Template, 2, 1, null, null, _forTrack0$J);
|
|
48334
48442
|
i0.ɵɵelementEnd()()();
|
|
48335
|
-
i0.ɵɵconditionalCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_Template, 3, 1, "div",
|
|
48443
|
+
i0.ɵɵconditionalCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_Template, 3, 1, "div", 79)(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_Template, 4, 5, "div", 150);
|
|
48336
48444
|
i0.ɵɵelementEnd()();
|
|
48337
48445
|
} if (rf & 2) {
|
|
48338
48446
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
@@ -48356,8 +48464,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Te
|
|
|
48356
48464
|
i0.ɵɵconditional(ctx_r2.isDataLoading() ? 16 : 17);
|
|
48357
48465
|
} }
|
|
48358
48466
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
48359
|
-
i0.ɵɵelementStart(0, "div",
|
|
48360
|
-
i0.ɵɵelement(1, "symphiq-section-divider",
|
|
48467
|
+
i0.ɵɵelementStart(0, "div", 143);
|
|
48468
|
+
i0.ɵɵelement(1, "symphiq-section-divider", 161);
|
|
48361
48469
|
i0.ɵɵelementEnd();
|
|
48362
48470
|
} if (rf & 2) {
|
|
48363
48471
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -48365,47 +48473,47 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Co
|
|
|
48365
48473
|
i0.ɵɵproperty("viewMode", ctx_r2.viewMode());
|
|
48366
48474
|
} }
|
|
48367
48475
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_13_Template(rf, ctx) { if (rf & 1) {
|
|
48368
|
-
i0.ɵɵelementStart(0, "div",
|
|
48369
|
-
i0.ɵɵelement(1, "div",
|
|
48476
|
+
i0.ɵɵelementStart(0, "div", 106);
|
|
48477
|
+
i0.ɵɵelement(1, "div", 162);
|
|
48370
48478
|
i0.ɵɵelementEnd();
|
|
48371
48479
|
} }
|
|
48372
48480
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
48373
|
-
i0.ɵɵelementStart(0, "option",
|
|
48481
|
+
i0.ɵɵelementStart(0, "option", 123);
|
|
48374
48482
|
i0.ɵɵtext(1);
|
|
48375
48483
|
i0.ɵɵelementEnd();
|
|
48376
48484
|
} if (rf & 2) {
|
|
48377
|
-
const
|
|
48378
|
-
i0.ɵɵproperty("value",
|
|
48485
|
+
const filter_r41 = i0.ɵɵnextContext().$implicit;
|
|
48486
|
+
i0.ɵɵproperty("value", filter_r41.value);
|
|
48379
48487
|
i0.ɵɵadvance();
|
|
48380
|
-
i0.ɵɵtextInterpolate(
|
|
48488
|
+
i0.ɵɵtextInterpolate(filter_r41.label);
|
|
48381
48489
|
} }
|
|
48382
48490
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
48383
|
-
i0.ɵɵelementStart(0, "option",
|
|
48491
|
+
i0.ɵɵelementStart(0, "option", 25);
|
|
48384
48492
|
i0.ɵɵtext(1);
|
|
48385
48493
|
i0.ɵɵelementEnd();
|
|
48386
48494
|
} if (rf & 2) {
|
|
48387
|
-
const
|
|
48388
|
-
i0.ɵɵproperty("value",
|
|
48495
|
+
const filter_r41 = i0.ɵɵnextContext().$implicit;
|
|
48496
|
+
i0.ɵɵproperty("value", filter_r41.value);
|
|
48389
48497
|
i0.ɵɵadvance();
|
|
48390
|
-
i0.ɵɵtextInterpolate(
|
|
48498
|
+
i0.ɵɵtextInterpolate(filter_r41.label);
|
|
48391
48499
|
} }
|
|
48392
48500
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Template(rf, ctx) { if (rf & 1) {
|
|
48393
|
-
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Conditional_0_Template, 2, 2, "option",
|
|
48501
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Conditional_0_Template, 2, 2, "option", 123)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Conditional_1_Template, 2, 2, "option", 25);
|
|
48394
48502
|
} if (rf & 2) {
|
|
48395
|
-
const
|
|
48396
|
-
i0.ɵɵconditional(
|
|
48503
|
+
const filter_r41 = ctx.$implicit;
|
|
48504
|
+
i0.ɵɵconditional(filter_r41.divider ? 0 : 1);
|
|
48397
48505
|
} }
|
|
48398
48506
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_17_For_5_Template(rf, ctx) { if (rf & 1) {
|
|
48399
|
-
i0.ɵɵelement(0, "symphiq-skeleton-loader",
|
|
48507
|
+
i0.ɵɵelement(0, "symphiq-skeleton-loader", 69);
|
|
48400
48508
|
} if (rf & 2) {
|
|
48401
48509
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
48402
48510
|
i0.ɵɵproperty("width", "100%")("height", "140px")("isLightMode", ctx_r2.isLightMode());
|
|
48403
48511
|
} }
|
|
48404
48512
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_17_Template(rf, ctx) { if (rf & 1) {
|
|
48405
|
-
i0.ɵɵelementStart(0, "div",
|
|
48406
|
-
i0.ɵɵelement(2, "symphiq-skeleton-loader",
|
|
48407
|
-
i0.ɵɵelementStart(3, "div",
|
|
48408
|
-
i0.ɵɵrepeaterCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_17_For_5_Template, 1, 3, "symphiq-skeleton-loader",
|
|
48513
|
+
i0.ɵɵelementStart(0, "div", 79)(1, "div", 126);
|
|
48514
|
+
i0.ɵɵelement(2, "symphiq-skeleton-loader", 69);
|
|
48515
|
+
i0.ɵɵelementStart(3, "div", 163);
|
|
48516
|
+
i0.ɵɵrepeaterCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_17_For_5_Template, 1, 3, "symphiq-skeleton-loader", 69, i0.ɵɵrepeaterTrackByIdentity);
|
|
48409
48517
|
i0.ɵɵelementEnd()()();
|
|
48410
48518
|
} if (rf & 2) {
|
|
48411
48519
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -48417,33 +48525,33 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Co
|
|
|
48417
48525
|
i0.ɵɵrepeater(i0.ɵɵpureFunction0(4, _c3$8));
|
|
48418
48526
|
} }
|
|
48419
48527
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_18_Template(rf, ctx) { if (rf & 1) {
|
|
48420
|
-
i0.ɵɵelement(0, "symphiq-competitive-intelligence-view",
|
|
48528
|
+
i0.ɵɵelement(0, "symphiq-competitive-intelligence-view", 76);
|
|
48421
48529
|
} if (rf & 2) {
|
|
48422
48530
|
let tmp_8_0;
|
|
48423
48531
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
48424
48532
|
i0.ɵɵproperty("metrics", ctx_r2.competitiveMetrics())("allCharts", ctx_r2.allCharts())("isLightMode", ctx_r2.isLightMode())("isCompactMode", ctx_r2.viewModeService.isCompact())("competitiveBenchmark", (tmp_8_0 = ctx_r2.performanceOverview().overallAssessment) == null ? null : tmp_8_0.competitiveBenchmark)("currencySymbol", ctx_r2.currencySymbol());
|
|
48425
48533
|
} }
|
|
48426
48534
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
48427
|
-
const
|
|
48428
|
-
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_0_Template, 2, 1, "div",
|
|
48429
|
-
i0.ɵɵelementStart(1, "section",
|
|
48430
|
-
i0.ɵɵelement(2, "div",
|
|
48431
|
-
i0.ɵɵelementStart(3, "div",
|
|
48535
|
+
const _r40 = i0.ɵɵgetCurrentView();
|
|
48536
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_0_Template, 2, 1, "div", 143);
|
|
48537
|
+
i0.ɵɵelementStart(1, "section", 157);
|
|
48538
|
+
i0.ɵɵelement(2, "div", 85);
|
|
48539
|
+
i0.ɵɵelementStart(3, "div", 86)(4, "div", 158)(5, "div", 61)(6, "div", 62)(7, "div", 61);
|
|
48432
48540
|
i0.ɵɵnamespaceSVG();
|
|
48433
|
-
i0.ɵɵelementStart(8, "svg",
|
|
48434
|
-
i0.ɵɵelement(9, "path",
|
|
48541
|
+
i0.ɵɵelementStart(8, "svg", 63);
|
|
48542
|
+
i0.ɵɵelement(9, "path", 159);
|
|
48435
48543
|
i0.ɵɵelementEnd();
|
|
48436
48544
|
i0.ɵɵnamespaceHTML();
|
|
48437
|
-
i0.ɵɵelementStart(10, "h2",
|
|
48545
|
+
i0.ɵɵelementStart(10, "h2", 65);
|
|
48438
48546
|
i0.ɵɵtext(11, "Competitive Intelligence");
|
|
48439
48547
|
i0.ɵɵelementEnd()()()();
|
|
48440
|
-
i0.ɵɵelementStart(12, "div",
|
|
48441
|
-
i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_13_Template, 2, 0, "div",
|
|
48442
|
-
i0.ɵɵelementStart(14, "select",
|
|
48443
|
-
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Template_select_ngModelChange_14_listener($event) { i0.ɵɵrestoreView(
|
|
48548
|
+
i0.ɵɵelementStart(12, "div", 160);
|
|
48549
|
+
i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_13_Template, 2, 0, "div", 106);
|
|
48550
|
+
i0.ɵɵelementStart(14, "select", 107);
|
|
48551
|
+
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Template_select_ngModelChange_14_listener($event) { i0.ɵɵrestoreView(_r40); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeCompetitiveFilter($event)); });
|
|
48444
48552
|
i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Template, 2, 1, null, null, _forTrack0$J);
|
|
48445
48553
|
i0.ɵɵelementEnd()()();
|
|
48446
|
-
i0.ɵɵconditionalCreate(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_17_Template, 6, 5, "div",
|
|
48554
|
+
i0.ɵɵconditionalCreate(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_17_Template, 6, 5, "div", 79)(18, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_18_Template, 1, 6, "symphiq-competitive-intelligence-view", 76);
|
|
48447
48555
|
i0.ɵɵelementEnd()();
|
|
48448
48556
|
} if (rf & 2) {
|
|
48449
48557
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
@@ -48468,8 +48576,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Te
|
|
|
48468
48576
|
i0.ɵɵconditional(ctx_r2.isDataLoading() ? 17 : 18);
|
|
48469
48577
|
} }
|
|
48470
48578
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Template(rf, ctx) { if (rf & 1) {
|
|
48471
|
-
i0.ɵɵelementStart(0, "main",
|
|
48472
|
-
i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Template, 3, 1, "div",
|
|
48579
|
+
i0.ɵɵelementStart(0, "main", 45)(1, "div", 46);
|
|
48580
|
+
i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Template, 3, 1, "div", 77);
|
|
48473
48581
|
i0.ɵɵconditionalCreate(3, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Template, 17, 10);
|
|
48474
48582
|
i0.ɵɵconditionalCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Template, 30, 18);
|
|
48475
48583
|
i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template, 18, 12);
|
|
@@ -49569,7 +49677,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
49569
49677
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.dashboardContainer = _t.first);
|
|
49570
49678
|
} }, hostBindings: function SymphiqFunnelAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
49571
49679
|
i0.ɵɵlistener("scroll", function SymphiqFunnelAnalysisDashboardComponent_scroll_HostBindingHandler() { return ctx.onScroll(); }, i0.ɵɵresolveWindow);
|
|
49572
|
-
} }, inputs: { requestedByUser: [1, "requestedByUser"], viewMode: [1, "viewMode"], funnelAnalysis: [1, "funnelAnalysis"], businessProfile: [1, "businessProfile"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", markAsReviewedClick: "markAsReviewedClick" }, decls: 27, vars: 57, consts: [["dashboardContainer", ""], [1, "bg-transparent"], [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"], [3, "searchClick", "viewModeClick", "title", "subtitle", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showControls", "hasCondensedLeftContent", "embedded", "scrollEvent"], ["expandedControls", ""], [1, "flex", "items-center", "gap-2", "sm:gap-3", "whitespace-nowrap"], ["condensedLeftContent", ""], [1, "hidden", "lg:flex", "items-center", "gap-3", "px-4", "py-1.5", "rounded-lg", 3, "ngClass"], ["condensedControls", ""], [1, "sticky", "top-[var(--header-height)]", "z-40", "border-b", "backdrop-blur-md", "animate-slide-up-fade", 3, "ngClass"], [3, "sections", "viewMode", "embedded", "scrollElement"], [1, "fixed", "right-6", "top-1/2", "-translate-y-1/2", "z-40", "hidden", "xl:flex", "flex-col", "gap-4"], [1, "flex", "items-center", "justify-center", "min-h-[60vh]"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8", 3, "pb-32"], [3, "isLightMode", "viewMode", "allMetrics", "allInsights", "allCharts", "currencySymbol", "businessProfile"], [3, "isLightMode", "allMetrics"], [3, "isLightMode"], [3, "resultSelected", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode", "isLoading"], [3, "expandedChange", "scrollToTop", "toggleView", "isLightMode", "isCompactMode", "isExpanded"], [3, "navigate", "isLightMode", "sections", "activeSection"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed", "isLoading"], [1, "text-xs", "sm:text-sm", "font-medium"], [3, "click", "mousedown", "pointerdown"], [1, "px-3", "sm:px-4", "py-1.5", "rounded-lg", "text-xs", "sm:text-sm", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "focus:border-transparent", "transition-colors", "duration-200", "cursor-pointer", 3, "ngModelChange", "ngModel"], [3, "value"], [1, "text-xs", "font-medium"], [1, "text-sm", "font-bold"], [1, "text-xs", "font-semibold", 3, "ngClass"], [1, "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "focus:border-transparent", "transition-colors", "duration-200", "cursor-pointer", 3, "ngModelChange", "ngModel"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8", "py-3"], [1, "flex", "items-center", "justify-between", "gap-4"], [1, "flex", "items-center", "gap-3", "flex-1", "min-w-0"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "flex-shrink-0", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"], [1, "flex", "items-center", "gap-2", "flex-1", "min-w-0"], [1, "text-sm", "font-medium", 3, "ngClass"], [1, "text-sm", "font-semibold", "truncate", 3, "ngClass"], [1, "px-2", "py-0.5", "rounded", "text-xs", "font-medium", "uppercase", "border", "flex-shrink-0", 3, "ngClass"], ["title", "Clear search", 1, "p-2", "rounded-lg", "transition-colors", "flex-shrink-0", 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", "M6 18L18 6M6 6l12 12"], [1, "w-3", "h-3", "rounded-full", "transition-all", "duration-200", "hover:scale-150", "active:scale-100", "cursor-pointer", 3, "libSymphiqTooltip", "tooltipPosition", "ngClass"], [1, "w-3", "h-3", "rounded-full", "transition-all", "duration-200", "hover:scale-150", "active:scale-100", "cursor-pointer", 3, "click", "libSymphiqTooltip", "tooltipPosition", "ngClass"], ["size", "large", 3, "viewMode"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "itemStatus", "currentStatus", "confettiIntensity", "title", "subtitle"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8"], [1, "pt-8", "sm:pt-12", "pb-16", "sm:pb-24"], [1, "mb-8"], [3, "viewMode", "isOnboarded", "analysisDate"], ["id", "section-insights", 1, "mb-8"], [3, "viewMode"], ["slot", "overall-performance"], [1, "p-6"], ["slot", "performance-metrics"], [1, "p-6", "space-y-8"], ["slot", "performance-breakdowns"], ["slot", "competitive-intelligence"], [1, "flex", "items-center", "justify-between", "mb-6"], [1, "flex", "items-center", "gap-3"], [1, "pl-4", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"], [1, "text-xl", "sm:text-2xl", "font-bold"], [1, "text-xs", "sm:text-sm"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "gap-6"], [3, "insight", "allMetrics", "charts", "allCharts", "allBusinessInsights", "isLightMode", "viewMode", "isCompactMode", "isLoading"], [3, "width", "height", "isLightMode"], [3, "assessment", "revenueMetric", "charts", "metrics", "isLightMode", "isLoading", "isCompactMode", "isChartsLoading", "strengths", "weaknesses", "currencySymbol"], [3, "scrollToSection", "assessment", "revenueMetric", "charts", "metrics", "isLightMode", "isLoading", "isCompactMode", "isChartsLoading", "strengths", "weaknesses", "currencySymbol"], [1, "w-full"], [3, "metric", "insights", "charts", "allCharts", "analysis", "isLightMode", "viewMode", "isCompactMode", "currencySymbol"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-6", "mt-4"], [3, "breakdown", "charts", "isLightMode", "isLoading", "isCompactMode", "currencySymbol"], [3, "metrics", "allCharts", "isLightMode", "isCompactMode", "competitiveBenchmark", "currencySymbol"], ["id", "section-overall", 1, "animate-fade-in-up", "mb-20", "sm:mb-28", 2, "animation-delay", "0.1s"], [1, "rounded-xl", "border", "p-6", "sm:p-8", "animate-pulse", 3, "ngClass"], [1, "space-y-6"], [1, "flex-1", "space-y-2"], [1, "space-y-2"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "gap-4", "mt-6"], ["animationDelay", "0.15s", 3, "viewMode"], ["id", "section-insights", 1, "relative"], [1, "absolute", "inset-0", "-mx-6", "sm:-mx-8", "-mt-8", "rounded-3xl", "opacity-30", "backdrop-blur-sm", 2, "mask-image", "radial-gradient(ellipse at center, black 0%, transparent 70%)", 3, "ngClass"], [1, "relative"], [1, "flex", "items-center", "justify-between", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.2s"], [1, "masonry-grid"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-4"], [1, "rounded-xl", "border", "p-6", "animate-pulse", "min-h-[280px]", 3, "ngClass"], [1, "space-y-4"], [1, "flex", "items-center", "gap-3", "mb-4"], [1, "mt-6", "space-y-2"], [1, "flex", "gap-2", "mt-4"], [1, "animate-fade-in-up", 3, "class", "animation-delay", "libSymphiqSearchHighlight", "highlightId"], [1, "animate-fade-in-up", 3, "libSymphiqSearchHighlight", "highlightId"], [3, "insight", "allMetrics", "charts", "allCharts", "allBusinessInsights", "isLightMode", "viewMode", "isCompactMode"], [1, "animate-fade-in-up", 3, "animation-delay", "libSymphiqSearchHighlight", "highlightId"], [1, "relative", "mb-14", "sm:mb-24", "mt-24", "sm:mt-32", "animate-fade-in", 2, "animation-delay", "0.35s"], ["id", "section-metrics", 1, "relative"], [1, "absolute", "inset-0", "-mx-6", "sm:-mx-8", "-mt-8", "rounded-3xl", "opacity-30", "backdrop-blur-sm", 2, "mask-image", "radial-gradient(ellipse at top right, black 0%, transparent 70%)", 3, "ngClass"], [1, "flex", "flex-col", "gap-4", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.4s"], [1, "flex", "items-center", "justify-between"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"], [1, "hidden", "sm:flex", "gap-2", "sm:gap-3", "items-center", "relative"], [1, "absolute", "-right-2", "top-1/2", "-translate-y-1/2", "z-10"], [1, "px-3", "sm:px-4", "py-2", "rounded-lg", "text-xs", "sm:text-sm", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "focus:border-transparent", "transition-all", "duration-200", "cursor-pointer", 3, "ngModelChange", "ngModel"], [1, "px-3", "sm:px-4", "py-2", "rounded-lg", "text-xs", "sm:text-sm", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "transition-all", "flex", "items-center", "gap-2", "cursor-pointer", "hover:scale-105", "active:scale-95", 3, "click", "title"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M3 4h13M3 8h9m-9 4h6m4 0l4-4m0 0l4 4m-4-4v12"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M3 4h13M3 8h9m-9 4h9m5-4v12m0 0l-4-4m4 4l4-4"], [1, "sm:hidden", "-mx-6", "px-6"], [1, "flex", "gap-2", "overflow-x-auto", "pb-2", "snap-x", "snap-mandatory", "scrollbar-hide"], [1, "space-y-8", "sm:space-y-10"], [1, "space-y-8", "sm:space-y-10", 3, "animate-content-change", "transition-opacity-slow"], ["aria-hidden", "true", 1, "absolute", "inset-0", "flex", "items-center"], [1, "w-full", "h-px", "bg-gradient-to-r", 3, "ngClass"], [1, "relative", "flex", "justify-center"], [1, "px-4", "py-2", "rounded-full", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"], [1, "w-4", "h-4", "border-2", "border-blue-500/30", "border-t-blue-500", "rounded-full", "animate-spin"], ["disabled", "", 1, "font-semibold", 3, "value"], [1, "px-4", "py-2", "rounded-full", "text-xs", "font-medium", "whitespace-nowrap", "transition-all", "duration-200", "flex-shrink-0", "snap-start", "active:scale-95", 3, "ngClass", "opacity-70"], [1, "px-4", "py-2", "rounded-full", "text-xs", "font-medium", "whitespace-nowrap", "transition-all", "duration-200", "flex-shrink-0", "snap-start", "active:scale-95", 3, "click", "ngClass"], [1, "rounded-xl", "border", "p-6", "animate-pulse", 3, "ngClass"], [1, "flex", "items-center", "justify-between", "mb-4"], [1, "grid", "grid-cols-2", "md:grid-cols-4", "gap-4", "mt-6"], [1, "rounded-xl", "p-12", "border", "text-center", "animate-fade-in", 3, "ngClass"], [1, "w-full", "animate-fade-in-up", 3, "libSymphiqSearchHighlight", "highlightId"], [1, "bento-grid", "mt-4"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-4", "gap-3", "sm:gap-4", "mt-4"], [1, "animate-fade-in-up", 3, "class", "animation-delay"], [1, "animate-fade-in-up"], [1, "h-full", 3, "metric", "insights", "charts", "allCharts", "analysis", "isLightMode", "viewMode", "isCompactMode", "currencySymbol"], [1, "animate-fade-in-up", 3, "animation-delay"], [1, "rounded-xl", "border", "p-6", "animate-pulse", "min-h-[240px]", 3, "ngClass"], [1, "flex", "items-center", "gap-3", "mt-4"], [1, "mt-4"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-16", "h-16", "mx-auto", "mb-4", 3, "ngClass"], [1, "text-lg", "font-semibold", "mb-2", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "mt-28", "sm:mt-36"], ["id", "section-breakdowns", 1, "relative"], [1, "absolute", "inset-0", "-mx-6", "sm:-mx-8", "-mt-8", "rounded-3xl", "opacity-30", "backdrop-blur-sm", 2, "mask-image", "radial-gradient(ellipse at bottom left, black 0%, transparent 70%)", 3, "ngClass"], [1, "flex", "flex-col", "sm:flex-row", "sm:items-center", "justify-between", "gap-4", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.7s"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"], [1, "relative", "inline-block", 3, "click", "mousedown", "pointerdown"], [1, "px-3", "py-2", "text-sm", "rounded-lg", "border", "transition-all", "duration-200", "cursor-pointer", "focus:ring-2", "focus:ring-blue-500", "focus:outline-none", 3, "ngModelChange", "ngModel", "ngClass"], [1, "space-y-6", 3, "animate-content-change", "transition-opacity-slow"], ["animationDelay", "0.65s", 3, "viewMode"], [1, "w-4", "h-4", "border-2", "border-purple-500/30", "border-t-purple-500", "rounded-full", "animate-spin"], [1, "space-y-3"], [1, "flex", "items-center", "justify-between", "p-3", "rounded-lg", 3, "ngClass"], [3, "breakdown", "charts", "isLightMode", "isCompactMode", "currencySymbol"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"], ["id", "section-competitive", 1, "relative"], [1, "flex", "items-center", "justify-between", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.9s"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4"], [1, "hidden", "sm:block", "relative"], ["animationDelay", "0.85s", 3, "viewMode"], [1, "w-4", "h-4", "border-2", "border-indigo-500/30", "border-t-indigo-500", "rounded-full", "animate-spin"], [1, "grid", "grid-cols-1", "md:grid-cols-3", "gap-4", "mt-6"]], template: function SymphiqFunnelAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
49680
|
+
} }, inputs: { requestedByUser: [1, "requestedByUser"], viewMode: [1, "viewMode"], funnelAnalysis: [1, "funnelAnalysis"], businessProfile: [1, "businessProfile"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", markAsReviewedClick: "markAsReviewedClick" }, decls: 27, vars: 57, consts: [["dashboardContainer", ""], [1, "bg-transparent"], [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"], [3, "searchClick", "viewModeClick", "title", "subtitle", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showControls", "hasCondensedLeftContent", "embedded", "scrollEvent"], ["expandedControls", ""], [1, "flex", "items-center", "gap-2", "sm:gap-3", "whitespace-nowrap"], ["condensedLeftContent", ""], [1, "hidden", "lg:flex", "items-center", "gap-3", "px-4", "py-1.5", "rounded-lg", 3, "ngClass"], ["condensedControls", ""], [1, "sticky", "top-[var(--header-height)]", "z-40", "border-b", "backdrop-blur-md", "animate-slide-up-fade", 3, "ngClass"], [3, "sections", "viewMode", "embedded", "scrollElement"], [1, "fixed", "right-6", "top-1/2", "-translate-y-1/2", "z-40", "hidden", "xl:flex", "flex-col", "gap-4"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8", 3, "pb-32"], [3, "isLightMode", "viewMode", "allMetrics", "allInsights", "allCharts", "currencySymbol", "businessProfile"], [3, "isLightMode", "allMetrics"], [3, "isLightMode"], [3, "resultSelected", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode", "isLoading"], [3, "expandedChange", "scrollToTop", "toggleView", "isLightMode", "isCompactMode", "isExpanded"], [3, "navigate", "isLightMode", "sections", "activeSection"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed", "isLoading"], [1, "text-xs", "sm:text-sm", "font-medium"], [3, "click", "mousedown", "pointerdown"], [1, "px-3", "sm:px-4", "py-1.5", "rounded-lg", "text-xs", "sm:text-sm", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "focus:border-transparent", "transition-colors", "duration-200", "cursor-pointer", 3, "ngModelChange", "ngModel"], [3, "value"], [1, "text-xs", "font-medium"], [1, "text-sm", "font-bold"], [1, "text-xs", "font-semibold", 3, "ngClass"], [1, "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "focus:border-transparent", "transition-colors", "duration-200", "cursor-pointer", 3, "ngModelChange", "ngModel"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8", "py-3"], [1, "flex", "items-center", "justify-between", "gap-4"], [1, "flex", "items-center", "gap-3", "flex-1", "min-w-0"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "flex-shrink-0", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"], [1, "flex", "items-center", "gap-2", "flex-1", "min-w-0"], [1, "text-sm", "font-medium", 3, "ngClass"], [1, "text-sm", "font-semibold", "truncate", 3, "ngClass"], [1, "px-2", "py-0.5", "rounded", "text-xs", "font-medium", "uppercase", "border", "flex-shrink-0", 3, "ngClass"], ["title", "Clear search", 1, "p-2", "rounded-lg", "transition-colors", "flex-shrink-0", 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", "M6 18L18 6M6 6l12 12"], [1, "w-3", "h-3", "rounded-full", "transition-all", "duration-200", "hover:scale-150", "active:scale-100", "cursor-pointer", 3, "libSymphiqTooltip", "tooltipPosition", "ngClass"], [1, "w-3", "h-3", "rounded-full", "transition-all", "duration-200", "hover:scale-150", "active:scale-100", "cursor-pointer", 3, "click", "libSymphiqTooltip", "tooltipPosition", "ngClass"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8"], [1, "pt-8", "sm:pt-12", "pb-16", "sm:pb-24"], [1, "mb-8"], [3, "viewMode", "isOnboarded", "analysisDate"], ["title", "Loading Your Funnel Analysis", "subtitle", "Please wait while we prepare your personalized insights...", "size", "large", 3, "viewMode", "backdropBlur"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "itemStatus", "currentStatus", "confettiIntensity", "title", "subtitle"], ["id", "section-insights", 1, "mb-8"], [3, "viewMode"], ["slot", "overall-performance"], [1, "p-6"], ["slot", "performance-metrics"], [1, "p-6", "space-y-8"], ["slot", "performance-breakdowns"], ["slot", "competitive-intelligence"], [1, "flex", "items-center", "justify-between", "mb-6"], [1, "flex", "items-center", "gap-3"], [1, "pl-4", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"], [1, "text-xl", "sm:text-2xl", "font-bold"], [1, "text-xs", "sm:text-sm"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "gap-6"], [3, "insight", "allMetrics", "charts", "allCharts", "allBusinessInsights", "isLightMode", "viewMode", "isCompactMode", "isLoading"], [3, "width", "height", "isLightMode"], [3, "assessment", "revenueMetric", "charts", "metrics", "isLightMode", "isLoading", "isCompactMode", "isChartsLoading", "strengths", "weaknesses", "currencySymbol"], [3, "scrollToSection", "assessment", "revenueMetric", "charts", "metrics", "isLightMode", "isLoading", "isCompactMode", "isChartsLoading", "strengths", "weaknesses", "currencySymbol"], [1, "w-full"], [3, "metric", "insights", "charts", "allCharts", "analysis", "isLightMode", "viewMode", "isCompactMode", "currencySymbol"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-6", "mt-4"], [3, "breakdown", "charts", "isLightMode", "isLoading", "isCompactMode", "currencySymbol"], [3, "metrics", "allCharts", "isLightMode", "isCompactMode", "competitiveBenchmark", "currencySymbol"], ["id", "section-overall", 1, "animate-fade-in-up", "mb-20", "sm:mb-28", 2, "animation-delay", "0.1s"], [1, "rounded-xl", "border", "p-6", "sm:p-8", "animate-pulse", 3, "ngClass"], [1, "space-y-6"], [1, "flex-1", "space-y-2"], [1, "space-y-2"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "gap-4", "mt-6"], ["animationDelay", "0.15s", 3, "viewMode"], ["id", "section-insights", 1, "relative"], [1, "absolute", "inset-0", "-mx-6", "sm:-mx-8", "-mt-8", "rounded-3xl", "opacity-30", "backdrop-blur-sm", 2, "mask-image", "radial-gradient(ellipse at center, black 0%, transparent 70%)", 3, "ngClass"], [1, "relative"], [1, "flex", "items-center", "justify-between", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.2s"], [1, "masonry-grid"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-4"], [1, "rounded-xl", "border", "p-6", "animate-pulse", "min-h-[280px]", 3, "ngClass"], [1, "space-y-4"], [1, "flex", "items-center", "gap-3", "mb-4"], [1, "mt-6", "space-y-2"], [1, "flex", "gap-2", "mt-4"], [1, "animate-fade-in-up", 3, "class", "animation-delay", "libSymphiqSearchHighlight", "highlightId"], [1, "animate-fade-in-up", 3, "libSymphiqSearchHighlight", "highlightId"], [3, "insight", "allMetrics", "charts", "allCharts", "allBusinessInsights", "isLightMode", "viewMode", "isCompactMode"], [1, "animate-fade-in-up", 3, "animation-delay", "libSymphiqSearchHighlight", "highlightId"], [1, "relative", "mb-14", "sm:mb-24", "mt-24", "sm:mt-32", "animate-fade-in", 2, "animation-delay", "0.35s"], ["id", "section-metrics", 1, "relative"], [1, "absolute", "inset-0", "-mx-6", "sm:-mx-8", "-mt-8", "rounded-3xl", "opacity-30", "backdrop-blur-sm", 2, "mask-image", "radial-gradient(ellipse at top right, black 0%, transparent 70%)", 3, "ngClass"], [1, "flex", "flex-col", "gap-4", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.4s"], [1, "flex", "items-center", "justify-between"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"], [1, "hidden", "sm:flex", "gap-2", "sm:gap-3", "items-center", "relative"], [1, "absolute", "-right-2", "top-1/2", "-translate-y-1/2", "z-10"], [1, "px-3", "sm:px-4", "py-2", "rounded-lg", "text-xs", "sm:text-sm", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "focus:border-transparent", "transition-all", "duration-200", "cursor-pointer", 3, "ngModelChange", "ngModel"], [1, "px-3", "sm:px-4", "py-2", "rounded-lg", "text-xs", "sm:text-sm", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "transition-all", "flex", "items-center", "gap-2", "cursor-pointer", "hover:scale-105", "active:scale-95", 3, "click", "title"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M3 4h13M3 8h9m-9 4h6m4 0l4-4m0 0l4 4m-4-4v12"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M3 4h13M3 8h9m-9 4h9m5-4v12m0 0l-4-4m4 4l4-4"], [1, "sm:hidden", "-mx-6", "px-6"], [1, "flex", "gap-2", "overflow-x-auto", "pb-2", "snap-x", "snap-mandatory", "scrollbar-hide"], [1, "space-y-8", "sm:space-y-10"], [1, "space-y-8", "sm:space-y-10", 3, "animate-content-change", "transition-opacity-slow"], ["aria-hidden", "true", 1, "absolute", "inset-0", "flex", "items-center"], [1, "w-full", "h-px", "bg-gradient-to-r", 3, "ngClass"], [1, "relative", "flex", "justify-center"], [1, "px-4", "py-2", "rounded-full", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"], [1, "w-4", "h-4", "border-2", "border-blue-500/30", "border-t-blue-500", "rounded-full", "animate-spin"], ["disabled", "", 1, "font-semibold", 3, "value"], [1, "px-4", "py-2", "rounded-full", "text-xs", "font-medium", "whitespace-nowrap", "transition-all", "duration-200", "flex-shrink-0", "snap-start", "active:scale-95", 3, "ngClass", "opacity-70"], [1, "px-4", "py-2", "rounded-full", "text-xs", "font-medium", "whitespace-nowrap", "transition-all", "duration-200", "flex-shrink-0", "snap-start", "active:scale-95", 3, "click", "ngClass"], [1, "rounded-xl", "border", "p-6", "animate-pulse", 3, "ngClass"], [1, "flex", "items-center", "justify-between", "mb-4"], [1, "grid", "grid-cols-2", "md:grid-cols-4", "gap-4", "mt-6"], [1, "rounded-xl", "p-12", "border", "text-center", "animate-fade-in", 3, "ngClass"], [1, "w-full", "animate-fade-in-up", 3, "libSymphiqSearchHighlight", "highlightId"], [1, "bento-grid", "mt-4"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-4", "gap-3", "sm:gap-4", "mt-4"], [1, "animate-fade-in-up", 3, "class", "animation-delay"], [1, "animate-fade-in-up"], [1, "h-full", 3, "metric", "insights", "charts", "allCharts", "analysis", "isLightMode", "viewMode", "isCompactMode", "currencySymbol"], [1, "animate-fade-in-up", 3, "animation-delay"], [1, "rounded-xl", "border", "p-6", "animate-pulse", "min-h-[240px]", 3, "ngClass"], [1, "flex", "items-center", "gap-3", "mt-4"], [1, "mt-4"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-16", "h-16", "mx-auto", "mb-4", 3, "ngClass"], [1, "text-lg", "font-semibold", "mb-2", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "mt-28", "sm:mt-36"], ["id", "section-breakdowns", 1, "relative"], [1, "absolute", "inset-0", "-mx-6", "sm:-mx-8", "-mt-8", "rounded-3xl", "opacity-30", "backdrop-blur-sm", 2, "mask-image", "radial-gradient(ellipse at bottom left, black 0%, transparent 70%)", 3, "ngClass"], [1, "flex", "flex-col", "sm:flex-row", "sm:items-center", "justify-between", "gap-4", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.7s"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"], [1, "relative", "inline-block", 3, "click", "mousedown", "pointerdown"], [1, "px-3", "py-2", "text-sm", "rounded-lg", "border", "transition-all", "duration-200", "cursor-pointer", "focus:ring-2", "focus:ring-blue-500", "focus:outline-none", 3, "ngModelChange", "ngModel", "ngClass"], [1, "space-y-6", 3, "animate-content-change", "transition-opacity-slow"], ["animationDelay", "0.65s", 3, "viewMode"], [1, "w-4", "h-4", "border-2", "border-purple-500/30", "border-t-purple-500", "rounded-full", "animate-spin"], [1, "space-y-3"], [1, "flex", "items-center", "justify-between", "p-3", "rounded-lg", 3, "ngClass"], [3, "breakdown", "charts", "isLightMode", "isCompactMode", "currencySymbol"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"], ["id", "section-competitive", 1, "relative"], [1, "flex", "items-center", "justify-between", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.9s"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4"], [1, "hidden", "sm:block", "relative"], ["animationDelay", "0.85s", 3, "viewMode"], [1, "w-4", "h-4", "border-2", "border-indigo-500/30", "border-t-indigo-500", "rounded-full", "animate-spin"], [1, "grid", "grid-cols-1", "md:grid-cols-3", "gap-4", "mt-6"]], template: function SymphiqFunnelAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
49573
49681
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
49574
49682
|
i0.ɵɵelementStart(0, "div", 1, 0);
|
|
49575
49683
|
i0.ɵɵelement(2, "div", 2)(3, "symphiq-scroll-progress-bar", 3);
|
|
@@ -49587,21 +49695,21 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
49587
49695
|
i0.ɵɵconditionalCreate(11, SymphiqFunnelAnalysisDashboardComponent_Conditional_11_Template, 16, 8, "div", 10);
|
|
49588
49696
|
i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_12_Template, 1, 4, "symphiq-floating-toc", 11);
|
|
49589
49697
|
i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Template, 6, 5, "div", 12);
|
|
49590
|
-
i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Template,
|
|
49591
|
-
i0.ɵɵelement(18, "symphiq-funnel-analysis-modal",
|
|
49592
|
-
i0.ɵɵelementStart(22, "symphiq-search-bar",
|
|
49698
|
+
i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Template, 6, 6)(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Template, 2, 7)(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Template, 15, 12)(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Template, 7, 7, "main", 13);
|
|
49699
|
+
i0.ɵɵelement(18, "symphiq-funnel-analysis-modal", 14)(19, "symphiq-profile-analysis-modal", 15)(20, "symphiq-business-analysis-modal", 16)(21, "symphiq-tooltip-container");
|
|
49700
|
+
i0.ɵɵelementStart(22, "symphiq-search-bar", 17);
|
|
49593
49701
|
i0.ɵɵlistener("resultSelected", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_search_bar_resultSelected_22_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleSearchResult($event)); });
|
|
49594
49702
|
i0.ɵɵelementEnd();
|
|
49595
|
-
i0.ɵɵelementStart(23, "symphiq-view-mode-switcher-modal",
|
|
49703
|
+
i0.ɵɵelementStart(23, "symphiq-view-mode-switcher-modal", 18);
|
|
49596
49704
|
i0.ɵɵlistener("close", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_close_23_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.closeViewModeSwitcher()); })("modeSelected", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_modeSelected_23_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleDisplayModeChange($event)); });
|
|
49597
49705
|
i0.ɵɵelementEnd();
|
|
49598
|
-
i0.ɵɵelementStart(24, "symphiq-mobile-fab",
|
|
49706
|
+
i0.ɵɵelementStart(24, "symphiq-mobile-fab", 19);
|
|
49599
49707
|
i0.ɵɵlistener("expandedChange", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_expandedChange_24_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.fabExpanded.set($event)); })("scrollToTop", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_scrollToTop_24_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.scrollToTop()); })("toggleView", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_toggleView_24_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.viewModeService.toggleViewMode()); });
|
|
49600
49708
|
i0.ɵɵelementEnd();
|
|
49601
|
-
i0.ɵɵelementStart(25, "symphiq-mobile-bottom-nav",
|
|
49709
|
+
i0.ɵɵelementStart(25, "symphiq-mobile-bottom-nav", 20);
|
|
49602
49710
|
i0.ɵɵlistener("navigate", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_bottom_nav_navigate_25_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleMobileNavigation($event)); });
|
|
49603
49711
|
i0.ɵɵelementEnd();
|
|
49604
|
-
i0.ɵɵelementStart(26, "symphiq-mark-as-reviewed-footer",
|
|
49712
|
+
i0.ɵɵelementStart(26, "symphiq-mark-as-reviewed-footer", 21);
|
|
49605
49713
|
i0.ɵɵlistener("markAsReviewedClick", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mark_as_reviewed_footer_markAsReviewedClick_26_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleMarkAsReviewedClick()); });
|
|
49606
49714
|
i0.ɵɵelementEnd()();
|
|
49607
49715
|
} if (rf & 2) {
|
|
@@ -49615,7 +49723,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
49615
49723
|
i0.ɵɵadvance();
|
|
49616
49724
|
i0.ɵɵproperty("viewMode", ctx.isLightMode() ? ctx.ViewModeEnum.LIGHT : ctx.ViewModeEnum.DARK)("progress", ctx.scrollProgress())("embedded", ctx.embedded());
|
|
49617
49725
|
i0.ɵɵadvance();
|
|
49618
|
-
i0.ɵɵproperty("title", ((tmp_9_0 = ctx.analysisData()) == null ? null : tmp_9_0.title) || "")("subtitle", "Revenue Orchestration & Funnel Analysis")("viewMode", ctx.isLightMode() ? ctx.ViewModeEnum.LIGHT : ctx.ViewModeEnum.DARK)("viewModeLabel", ctx.displayModeLabel())("isLoading", ctx.isLoading() && !ctx.isShowingLoader())("requestedByUser", ctx.requestedByUser())("createdDate", ctx.analysisCreatedDate())("showControls",
|
|
49726
|
+
i0.ɵɵproperty("title", ((tmp_9_0 = ctx.analysisData()) == null ? null : tmp_9_0.title) || "Your Funnel Analysis")("subtitle", "Revenue Orchestration & Funnel Analysis")("viewMode", ctx.isLightMode() ? ctx.ViewModeEnum.LIGHT : ctx.ViewModeEnum.DARK)("viewModeLabel", ctx.displayModeLabel())("isLoading", ctx.isLoading() && !ctx.isShowingLoader())("requestedByUser", ctx.requestedByUser())("createdDate", ctx.analysisCreatedDate())("showControls", !ctx.isLoading())("hasCondensedLeftContent", !!ctx.revenueMetric())("embedded", ctx.embedded())("scrollEvent", ctx.scrollEvent());
|
|
49619
49727
|
i0.ɵɵadvance(2);
|
|
49620
49728
|
i0.ɵɵconditional(!ctx.isSimplifiedView() ? 6 : -1);
|
|
49621
49729
|
i0.ɵɵadvance(2);
|
|
@@ -49668,10 +49776,10 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
49668
49776
|
ProfileAnalysisModalComponent,
|
|
49669
49777
|
BusinessAnalysisModalComponent,
|
|
49670
49778
|
ContentGenerationProgressWithConfettiComponent,
|
|
49671
|
-
IndeterminateSpinnerComponent,
|
|
49672
49779
|
MarkAsReviewedFooterComponent,
|
|
49673
49780
|
DashboardHeaderComponent,
|
|
49674
|
-
ScrollProgressBarComponent
|
|
49781
|
+
ScrollProgressBarComponent,
|
|
49782
|
+
LoadingCardComponent], styles: ["[_nghost-%COMP%]{display:block;min-height:100%}.bg-gradient-radial[_ngcontent-%COMP%]{background:radial-gradient(circle,var(--tw-gradient-stops))}.bento-grid[_ngcontent-%COMP%]{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;grid-auto-flow:dense}@media(min-width:768px){.bento-grid[_ngcontent-%COMP%]{grid-template-columns:repeat(6,1fr)}}.bento-small[_ngcontent-%COMP%]{grid-column:span 2;grid-row:span 1}.bento-medium[_ngcontent-%COMP%]{grid-column:span 3;grid-row:span 1}.bento-large[_ngcontent-%COMP%]{grid-column:span 4;grid-row:span 1}.bento-featured[_ngcontent-%COMP%]{grid-column:span 6;grid-row:span 1}@media(max-width:767px){.bento-small[_ngcontent-%COMP%], .bento-medium[_ngcontent-%COMP%], .bento-large[_ngcontent-%COMP%], .bento-featured[_ngcontent-%COMP%]{grid-column:span 1}}.masonry-grid[_ngcontent-%COMP%]{column-count:1;column-gap:1.5rem}@media(min-width:768px){.masonry-grid[_ngcontent-%COMP%]{column-count:2}}@media(min-width:1280px){.masonry-grid[_ngcontent-%COMP%]{column-count:3}}.masonry-grid[_ngcontent-%COMP%] > div[_ngcontent-%COMP%]{break-inside:avoid;margin-bottom:1.5rem}.masonry-featured[_ngcontent-%COMP%]{column-span:all}.scrollbar-hide[_ngcontent-%COMP%]{-ms-overflow-style:none;scrollbar-width:none}.scrollbar-hide[_ngcontent-%COMP%]::-webkit-scrollbar{display:none}@media(max-width:640px){.animate-fade-in-up[_ngcontent-%COMP%]{animation-duration:.4s}}"], changeDetection: 0 }); }
|
|
49675
49783
|
}
|
|
49676
49784
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SymphiqFunnelAnalysisDashboardComponent, [{
|
|
49677
49785
|
type: Component,
|
|
@@ -49704,6 +49812,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
49704
49812
|
MarkAsReviewedFooterComponent,
|
|
49705
49813
|
DashboardHeaderComponent,
|
|
49706
49814
|
ScrollProgressBarComponent,
|
|
49815
|
+
LoadingCardComponent,
|
|
49707
49816
|
], template: `
|
|
49708
49817
|
<div
|
|
49709
49818
|
class="bg-transparent"
|
|
@@ -49722,14 +49831,14 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
49722
49831
|
/>
|
|
49723
49832
|
|
|
49724
49833
|
<symphiq-dashboard-header
|
|
49725
|
-
[title]="analysisData()?.title || ''"
|
|
49834
|
+
[title]="analysisData()?.title || 'Your Funnel Analysis'"
|
|
49726
49835
|
[subtitle]="'Revenue Orchestration & Funnel Analysis'"
|
|
49727
49836
|
[viewMode]="isLightMode() ? ViewModeEnum.LIGHT : ViewModeEnum.DARK"
|
|
49728
49837
|
[viewModeLabel]="displayModeLabel()"
|
|
49729
49838
|
[isLoading]="isLoading() && !isShowingLoader()"
|
|
49730
49839
|
[requestedByUser]="requestedByUser()"
|
|
49731
49840
|
[createdDate]="analysisCreatedDate()"
|
|
49732
|
-
[showControls]="
|
|
49841
|
+
[showControls]="!isLoading()"
|
|
49733
49842
|
[hasCondensedLeftContent]="!!revenueMetric()"
|
|
49734
49843
|
[embedded]="embedded()"
|
|
49735
49844
|
[scrollEvent]="scrollEvent()"
|
|
@@ -49882,13 +49991,40 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
49882
49991
|
}
|
|
49883
49992
|
|
|
49884
49993
|
@if (isLoading()) {
|
|
49885
|
-
<!--
|
|
49886
|
-
|
|
49887
|
-
<symphiq-
|
|
49994
|
+
<!-- Loading State with Journey Progress and Welcome Banner -->
|
|
49995
|
+
@if (!isOnboarded()) {
|
|
49996
|
+
<symphiq-journey-progress-indicator
|
|
49888
49997
|
[viewMode]="isLightMode() ? ViewModeEnum.LIGHT : ViewModeEnum.DARK"
|
|
49889
|
-
|
|
49998
|
+
[currentStepId]="JourneyStepIdEnum.FUNNEL_ANALYSIS"
|
|
49999
|
+
[showNextStepAction]="false"
|
|
50000
|
+
[forDemo]="forDemo()"
|
|
50001
|
+
[maxAccessibleStepId]="maxAccessibleStepId()"
|
|
50002
|
+
(stepClick)="stepClick.emit($event)"
|
|
50003
|
+
(nextStepClick)="nextStepClick.emit()"
|
|
49890
50004
|
/>
|
|
49891
|
-
|
|
50005
|
+
}
|
|
50006
|
+
|
|
50007
|
+
<main class="max-w-7xl mx-auto px-6 sm:px-8">
|
|
50008
|
+
<div class="pt-8 sm:pt-12 pb-16 sm:pb-24">
|
|
50009
|
+
<!-- Welcome Banner -->
|
|
50010
|
+
<div class="mb-8">
|
|
50011
|
+
<symphiq-funnel-welcome-banner
|
|
50012
|
+
[viewMode]="isLightMode() ? ViewModeEnum.LIGHT : ViewModeEnum.DARK"
|
|
50013
|
+
[isOnboarded]="isOnboarded()"
|
|
50014
|
+
[analysisDate]="funnelAnalysis()?.selfContentCompletedDate"
|
|
50015
|
+
/>
|
|
50016
|
+
</div>
|
|
50017
|
+
|
|
50018
|
+
<!-- Loading Card -->
|
|
50019
|
+
<symphiq-loading-card
|
|
50020
|
+
[viewMode]="isLightMode() ? ViewModeEnum.LIGHT : ViewModeEnum.DARK"
|
|
50021
|
+
title="Loading Your Funnel Analysis"
|
|
50022
|
+
subtitle="Please wait while we prepare your personalized insights..."
|
|
50023
|
+
size="large"
|
|
50024
|
+
[backdropBlur]="true"
|
|
50025
|
+
/>
|
|
50026
|
+
</div>
|
|
50027
|
+
</main>
|
|
49892
50028
|
} @else if (isContentGenerating()) {
|
|
49893
50029
|
<!-- Journey Progress Banner (always show when not onboarded) -->
|
|
49894
50030
|
@if (!isOnboarded()) {
|
|
@@ -50661,7 +50797,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
50661
50797
|
type: HostListener,
|
|
50662
50798
|
args: ['window:scroll']
|
|
50663
50799
|
}] }); })();
|
|
50664
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqFunnelAnalysisDashboardComponent, { className: "SymphiqFunnelAnalysisDashboardComponent", filePath: "lib/components/funnel-analysis-dashboard/symphiq-funnel-analysis-dashboard.component.ts", lineNumber:
|
|
50800
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqFunnelAnalysisDashboardComponent, { className: "SymphiqFunnelAnalysisDashboardComponent", filePath: "lib/components/funnel-analysis-dashboard/symphiq-funnel-analysis-dashboard.component.ts", lineNumber: 1193 }); })();
|
|
50665
50801
|
|
|
50666
50802
|
/**
|
|
50667
50803
|
* Shared Theme Color Utilities
|
|
@@ -64505,98 +64641,6 @@ class InitialTargetSettingComponent {
|
|
|
64505
64641
|
}], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], funnelMetrics: [{ type: i0.Input, args: [{ isSignal: true, alias: "funnelMetrics", required: false }] }], mainUiData: [{ type: i0.Input, args: [{ isSignal: true, alias: "mainUiData", required: false }] }], trendUiData: [{ type: i0.Input, args: [{ isSignal: true, alias: "trendUiData", required: false }] }], shopId: [{ type: i0.Input, args: [{ isSignal: true, alias: "shopId", required: false }] }], pacingResponse: [{ type: i0.Input, args: [{ isSignal: true, alias: "pacingResponse", required: false }] }], dataResults: [{ type: i0.Input, args: [{ isSignal: true, alias: "dataResults", required: false }] }], calculateRevenueReverseResponse: [{ type: i0.Input, args: [{ isSignal: true, alias: "calculateRevenueReverseResponse", required: false }] }], calculateRevenueResponse: [{ type: i0.Input, args: [{ isSignal: true, alias: "calculateRevenueResponse", required: false }] }], isCalculatingTargets: [{ type: i0.Input, args: [{ isSignal: true, alias: "isCalculatingTargets", required: false }] }], targets: [{ type: i0.Input, args: [{ isSignal: true, alias: "targets", required: false }] }], targetHistories: [{ type: i0.Input, args: [{ isSignal: true, alias: "targetHistories", required: false }] }], users: [{ type: i0.Input, args: [{ isSignal: true, alias: "users", required: false }] }], targetsCreated: [{ type: i0.Output, args: ["targetsCreated"] }], calculateRevenueReverseRequest: [{ type: i0.Output, args: ["calculateRevenueReverseRequest"] }], calculateRevenueRequest: [{ type: i0.Output, args: ["calculateRevenueRequest"] }], editRelatedMetricTarget: [{ type: i0.Output, args: ["editRelatedMetricTarget"] }], saveTargetsClick: [{ type: i0.Output, args: ["saveTargetsClick"] }], discardChangesClick: [{ type: i0.Output, args: ["discardChangesClick"] }], targetsUpdated: [{ type: i0.Output, args: ["targetsUpdated"] }] }); })();
|
|
64506
64642
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(InitialTargetSettingComponent, { className: "InitialTargetSettingComponent", filePath: "lib/components/revenue-calculator-dashboard/initial-target-setting.component.ts", lineNumber: 627 }); })();
|
|
64507
64643
|
|
|
64508
|
-
class LoadingCardComponent {
|
|
64509
|
-
constructor() {
|
|
64510
|
-
this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
|
|
64511
|
-
this.title = input('Loading...', ...(ngDevMode ? [{ debugName: "title" }] : []));
|
|
64512
|
-
this.subtitle = input('Please wait...', ...(ngDevMode ? [{ debugName: "subtitle" }] : []));
|
|
64513
|
-
this.size = input('medium', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
64514
|
-
this.backdropBlur = input(false, ...(ngDevMode ? [{ debugName: "backdropBlur" }] : []));
|
|
64515
|
-
this.isLightMode = computed(() => this.viewMode() === ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "isLightMode" }] : []));
|
|
64516
|
-
this.spinnerSize = computed(() => {
|
|
64517
|
-
switch (this.size()) {
|
|
64518
|
-
case 'small': return 'medium';
|
|
64519
|
-
case 'large': return 'large';
|
|
64520
|
-
default: return 'large';
|
|
64521
|
-
}
|
|
64522
|
-
}, ...(ngDevMode ? [{ debugName: "spinnerSize" }] : []));
|
|
64523
|
-
this.containerClasses = computed(() => {
|
|
64524
|
-
const base = this.isLightMode()
|
|
64525
|
-
? 'bg-white border-slate-200'
|
|
64526
|
-
: 'bg-slate-800/50 border-slate-700/50';
|
|
64527
|
-
const blur = this.backdropBlur() ? 'backdrop-blur-sm' : '';
|
|
64528
|
-
return `${base} ${blur}`.trim();
|
|
64529
|
-
}, ...(ngDevMode ? [{ debugName: "containerClasses" }] : []));
|
|
64530
|
-
this.contentClasses = computed(() => {
|
|
64531
|
-
switch (this.size()) {
|
|
64532
|
-
case 'small': return 'p-6 space-y-3';
|
|
64533
|
-
case 'large': return 'p-12 space-y-6';
|
|
64534
|
-
default: return 'p-8 space-y-4';
|
|
64535
|
-
}
|
|
64536
|
-
}, ...(ngDevMode ? [{ debugName: "contentClasses" }] : []));
|
|
64537
|
-
this.titleClasses = computed(() => {
|
|
64538
|
-
const colorClass = this.isLightMode() ? 'text-slate-900' : 'text-white';
|
|
64539
|
-
const sizeClass = this.size() === 'large' ? 'text-xl' : 'text-lg';
|
|
64540
|
-
return `${sizeClass} font-semibold ${colorClass}`;
|
|
64541
|
-
}, ...(ngDevMode ? [{ debugName: "titleClasses" }] : []));
|
|
64542
|
-
this.subtitleClasses = computed(() => {
|
|
64543
|
-
const colorClass = this.isLightMode() ? 'text-slate-600' : 'text-slate-400';
|
|
64544
|
-
return `text-base ${colorClass}`;
|
|
64545
|
-
}, ...(ngDevMode ? [{ debugName: "subtitleClasses" }] : []));
|
|
64546
|
-
}
|
|
64547
|
-
static { this.ɵfac = function LoadingCardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || LoadingCardComponent)(); }; }
|
|
64548
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: LoadingCardComponent, selectors: [["symphiq-loading-card"]], inputs: { viewMode: [1, "viewMode"], title: [1, "title"], subtitle: [1, "subtitle"], size: [1, "size"], backdropBlur: [1, "backdropBlur"] }, decls: 7, vars: 8, consts: [[1, "rounded-2xl", "border", "shadow-lg", 3, "ngClass"], [1, "flex", "flex-col", "items-center", "justify-center", "text-center", 3, "ngClass"], [3, "viewMode", "size"], [3, "ngClass"]], template: function LoadingCardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
64549
|
-
i0.ɵɵelementStart(0, "div", 0)(1, "div", 1);
|
|
64550
|
-
i0.ɵɵelement(2, "symphiq-indeterminate-spinner", 2);
|
|
64551
|
-
i0.ɵɵelementStart(3, "h3", 3);
|
|
64552
|
-
i0.ɵɵtext(4);
|
|
64553
|
-
i0.ɵɵelementEnd();
|
|
64554
|
-
i0.ɵɵelementStart(5, "p", 3);
|
|
64555
|
-
i0.ɵɵtext(6);
|
|
64556
|
-
i0.ɵɵelementEnd()()();
|
|
64557
|
-
} if (rf & 2) {
|
|
64558
|
-
i0.ɵɵproperty("ngClass", ctx.containerClasses());
|
|
64559
|
-
i0.ɵɵadvance();
|
|
64560
|
-
i0.ɵɵproperty("ngClass", ctx.contentClasses());
|
|
64561
|
-
i0.ɵɵadvance();
|
|
64562
|
-
i0.ɵɵproperty("viewMode", ctx.viewMode())("size", ctx.spinnerSize());
|
|
64563
|
-
i0.ɵɵadvance();
|
|
64564
|
-
i0.ɵɵproperty("ngClass", ctx.titleClasses());
|
|
64565
|
-
i0.ɵɵadvance();
|
|
64566
|
-
i0.ɵɵtextInterpolate1(" ", ctx.title(), " ");
|
|
64567
|
-
i0.ɵɵadvance();
|
|
64568
|
-
i0.ɵɵproperty("ngClass", ctx.subtitleClasses());
|
|
64569
|
-
i0.ɵɵadvance();
|
|
64570
|
-
i0.ɵɵtextInterpolate1(" ", ctx.subtitle(), " ");
|
|
64571
|
-
} }, dependencies: [CommonModule, i1$1.NgClass, IndeterminateSpinnerComponent], encapsulation: 2, changeDetection: 0 }); }
|
|
64572
|
-
}
|
|
64573
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LoadingCardComponent, [{
|
|
64574
|
-
type: Component,
|
|
64575
|
-
args: [{
|
|
64576
|
-
selector: 'symphiq-loading-card',
|
|
64577
|
-
standalone: true,
|
|
64578
|
-
imports: [CommonModule, IndeterminateSpinnerComponent],
|
|
64579
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
64580
|
-
template: `
|
|
64581
|
-
<div [ngClass]="containerClasses()" class="rounded-2xl border shadow-lg">
|
|
64582
|
-
<div class="flex flex-col items-center justify-center text-center" [ngClass]="contentClasses()">
|
|
64583
|
-
<symphiq-indeterminate-spinner
|
|
64584
|
-
[viewMode]="viewMode()"
|
|
64585
|
-
[size]="spinnerSize()"
|
|
64586
|
-
/>
|
|
64587
|
-
<h3 [ngClass]="titleClasses()">
|
|
64588
|
-
{{ title() }}
|
|
64589
|
-
</h3>
|
|
64590
|
-
<p [ngClass]="subtitleClasses()">
|
|
64591
|
-
{{ subtitle() }}
|
|
64592
|
-
</p>
|
|
64593
|
-
</div>
|
|
64594
|
-
</div>
|
|
64595
|
-
`
|
|
64596
|
-
}]
|
|
64597
|
-
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], subtitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "subtitle", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], backdropBlur: [{ type: i0.Input, args: [{ isSignal: true, alias: "backdropBlur", required: false }] }] }); })();
|
|
64598
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(LoadingCardComponent, { className: "LoadingCardComponent", filePath: "lib/components/shared/loading-card.component.ts", lineNumber: 30 }); })();
|
|
64599
|
-
|
|
64600
64644
|
const _c0$A = () => [];
|
|
64601
64645
|
function SymphiqRevenueCalculatorDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
64602
64646
|
i0.ɵɵelementStart(0, "div", 8);
|
|
@@ -68210,17 +68254,23 @@ class CollapsibleSectionGroupComponent {
|
|
|
68210
68254
|
|
|
68211
68255
|
const _c0$w = () => [];
|
|
68212
68256
|
function SymphiqBusinessAnalysisDashboardComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
68213
|
-
i0.ɵɵelementStart(0, "div", 6);
|
|
68214
|
-
i0.ɵɵelement(
|
|
68257
|
+
i0.ɵɵelementStart(0, "div", 6)(1, "div", 13);
|
|
68258
|
+
i0.ɵɵelement(2, "symphiq-welcome-banner", 14);
|
|
68259
|
+
i0.ɵɵelementEnd();
|
|
68260
|
+
i0.ɵɵelement(3, "symphiq-loading-card", 15);
|
|
68215
68261
|
i0.ɵɵelementEnd();
|
|
68216
68262
|
} if (rf & 2) {
|
|
68263
|
+
let tmp_2_0;
|
|
68264
|
+
let tmp_4_0;
|
|
68217
68265
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
68266
|
+
i0.ɵɵadvance(2);
|
|
68267
|
+
i0.ɵɵproperty("viewMode", ctx_r0.viewMode())("businessName", ((tmp_2_0 = ctx_r0.currentProfile()) == null ? null : tmp_2_0.profileStructured == null ? null : tmp_2_0.profileStructured.businessName) || "your business")("isOnboarded", ctx_r0.isOnboarded())("analysisDate", (tmp_4_0 = ctx_r0.profile()) == null ? null : tmp_4_0.selfContentCompletedDate);
|
|
68218
68268
|
i0.ɵɵadvance();
|
|
68219
|
-
i0.ɵɵproperty("viewMode", ctx_r0.viewMode());
|
|
68269
|
+
i0.ɵɵproperty("viewMode", ctx_r0.viewMode())("title", "Loading Business Analysis...")("subtitle", "Please wait while we fetch your data.");
|
|
68220
68270
|
} }
|
|
68221
68271
|
function SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
68222
68272
|
const _r2 = i0.ɵɵgetCurrentView();
|
|
68223
|
-
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator",
|
|
68273
|
+
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 18);
|
|
68224
68274
|
i0.ɵɵlistener("stepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.stepClick.emit($event)); })("nextStepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.nextStepClick.emit()); });
|
|
68225
68275
|
i0.ɵɵelementEnd();
|
|
68226
68276
|
} if (rf & 2) {
|
|
@@ -68228,8 +68278,8 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Conditional_0_T
|
|
|
68228
68278
|
i0.ɵɵproperty("viewMode", ctx_r0.viewMode())("currentStepId", ctx_r0.JourneyStepIdEnum.BUSINESS_ANALYSIS)("showNextStepAction", false)("forDemo", ctx_r0.forDemo())("maxAccessibleStepId", ctx_r0.maxAccessibleStepId());
|
|
68229
68279
|
} }
|
|
68230
68280
|
function SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Template(rf, ctx) { if (rf & 1) {
|
|
68231
|
-
i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator",
|
|
68232
|
-
i0.ɵɵelement(1, "symphiq-content-generation-progress-with-confetti",
|
|
68281
|
+
i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 16);
|
|
68282
|
+
i0.ɵɵelement(1, "symphiq-content-generation-progress-with-confetti", 17);
|
|
68233
68283
|
} if (rf & 2) {
|
|
68234
68284
|
let tmp_4_0;
|
|
68235
68285
|
let tmp_6_0;
|
|
@@ -68240,7 +68290,7 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Template(rf, ct
|
|
|
68240
68290
|
} }
|
|
68241
68291
|
function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
68242
68292
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
68243
|
-
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator",
|
|
68293
|
+
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 18);
|
|
68244
68294
|
i0.ɵɵlistener("stepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r0 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r0.stepClick.emit($event)); })("nextStepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r0 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r0.nextStepClick.emit()); });
|
|
68245
68295
|
i0.ɵɵelementEnd();
|
|
68246
68296
|
} if (rf & 2) {
|
|
@@ -68249,15 +68299,15 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_C
|
|
|
68249
68299
|
} }
|
|
68250
68300
|
function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
68251
68301
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
68252
|
-
i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator",
|
|
68253
|
-
i0.ɵɵelementStart(1, "div",
|
|
68254
|
-
i0.ɵɵelement(3, "symphiq-welcome-banner",
|
|
68302
|
+
i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 16);
|
|
68303
|
+
i0.ɵɵelementStart(1, "div", 6)(2, "div", 13);
|
|
68304
|
+
i0.ɵɵelement(3, "symphiq-welcome-banner", 14);
|
|
68255
68305
|
i0.ɵɵelementEnd();
|
|
68256
|
-
i0.ɵɵelementStart(4, "div",
|
|
68306
|
+
i0.ɵɵelementStart(4, "div", 13)(5, "symphiq-recommendations-tiled-grid", 19);
|
|
68257
68307
|
i0.ɵɵlistener("viewMoreClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_Template_symphiq_recommendations_tiled_grid_viewMoreClick_5_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.openRecommendationDetailsModal($event)); });
|
|
68258
68308
|
i0.ɵɵelementEnd()();
|
|
68259
68309
|
i0.ɵɵelementStart(6, "div");
|
|
68260
|
-
i0.ɵɵelement(7, "symphiq-collapsible-section-group",
|
|
68310
|
+
i0.ɵɵelement(7, "symphiq-collapsible-section-group", 20);
|
|
68261
68311
|
i0.ɵɵelementEnd()();
|
|
68262
68312
|
} if (rf & 2) {
|
|
68263
68313
|
let tmp_4_0;
|
|
@@ -68272,26 +68322,26 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_T
|
|
|
68272
68322
|
i0.ɵɵproperty("sections", ctx_r0.nonRecommendationSections())("viewMode", ctx_r0.viewMode());
|
|
68273
68323
|
} }
|
|
68274
68324
|
function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_1_For_1_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
68275
|
-
i0.ɵɵelementStart(0, "div",
|
|
68276
|
-
i0.ɵɵelement(1, "symphiq-section-divider",
|
|
68325
|
+
i0.ɵɵelementStart(0, "div", 22);
|
|
68326
|
+
i0.ɵɵelement(1, "symphiq-section-divider", 23);
|
|
68277
68327
|
i0.ɵɵelementEnd();
|
|
68278
68328
|
} if (rf & 2) {
|
|
68279
|
-
const ɵ$
|
|
68329
|
+
const ɵ$index_48_r5 = i0.ɵɵnextContext().$index;
|
|
68280
68330
|
const ctx_r0 = i0.ɵɵnextContext(3);
|
|
68281
68331
|
i0.ɵɵadvance();
|
|
68282
|
-
i0.ɵɵproperty("viewMode", ctx_r0.viewMode())("subsections", ctx_r0.sections()[ɵ$
|
|
68332
|
+
i0.ɵɵproperty("viewMode", ctx_r0.viewMode())("subsections", ctx_r0.sections()[ɵ$index_48_r5 + 1].subsections || i0.ɵɵpureFunction0(2, _c0$w));
|
|
68283
68333
|
} }
|
|
68284
68334
|
function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_1_For_1_Template(rf, ctx) { if (rf & 1) {
|
|
68285
|
-
i0.ɵɵelement(0, "symphiq-profile-section",
|
|
68286
|
-
i0.ɵɵconditionalCreate(1, SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_1_For_1_Conditional_1_Template, 2, 3, "div",
|
|
68335
|
+
i0.ɵɵelement(0, "symphiq-profile-section", 21);
|
|
68336
|
+
i0.ɵɵconditionalCreate(1, SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_1_For_1_Conditional_1_Template, 2, 3, "div", 22);
|
|
68287
68337
|
} if (rf & 2) {
|
|
68288
68338
|
const section_r6 = ctx.$implicit;
|
|
68289
|
-
const ɵ$
|
|
68290
|
-
const ɵ$
|
|
68339
|
+
const ɵ$index_48_r5 = ctx.$index;
|
|
68340
|
+
const ɵ$count_48_r7 = ctx.$count;
|
|
68291
68341
|
const ctx_r0 = i0.ɵɵnextContext(3);
|
|
68292
68342
|
i0.ɵɵproperty("section", section_r6)("viewMode", ctx_r0.viewMode())("forceExpanded", !ctx_r0.isCompactView());
|
|
68293
68343
|
i0.ɵɵadvance();
|
|
68294
|
-
i0.ɵɵconditional(!(ɵ$
|
|
68344
|
+
i0.ɵɵconditional(!(ɵ$index_48_r5 === ɵ$count_48_r7 - 1) ? 1 : -1);
|
|
68295
68345
|
} }
|
|
68296
68346
|
function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
68297
68347
|
i0.ɵɵrepeaterCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_1_For_1_Template, 2, 4, null, null, i0.ɵɵcomponentInstance().trackBySectionId, true);
|
|
@@ -68842,14 +68892,14 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
68842
68892
|
static { this.ɵfac = function SymphiqBusinessAnalysisDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqBusinessAnalysisDashboardComponent)(); }; }
|
|
68843
68893
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqBusinessAnalysisDashboardComponent, selectors: [["symphiq-business-analysis-dashboard"]], hostBindings: function SymphiqBusinessAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
68844
68894
|
i0.ɵɵlistener("scroll", function SymphiqBusinessAnalysisDashboardComponent_scroll_HostBindingHandler() { return ctx.onScroll(); }, i0.ɵɵresolveWindow)("keydown", function SymphiqBusinessAnalysisDashboardComponent_keydown_HostBindingHandler($event) { return ctx.handleKeyDown($event); }, i0.ɵɵresolveDocument);
|
|
68845
|
-
} }, inputs: { embedded: [1, "embedded"], profile: [1, "profile"], parentHeaderOffset: [1, "parentHeaderOffset"], requestedByUser: [1, "requestedByUser"], viewMode: [1, "viewMode"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", markAsReviewedClick: "markAsReviewedClick" }, decls: 17, vars: 41, consts: [[3, "ngClass"], [3, "viewMode", "progress", "embedded"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "viewMode", "viewModeLabel", "currentSection", "currentSubsection", "sectionFading", "subsectionFading", "showControls", "embedded", "scrollEvent"], [1, "relative"], [1, "
|
|
68895
|
+
} }, inputs: { embedded: [1, "embedded"], profile: [1, "profile"], parentHeaderOffset: [1, "parentHeaderOffset"], requestedByUser: [1, "requestedByUser"], viewMode: [1, "viewMode"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", markAsReviewedClick: "markAsReviewedClick" }, decls: 17, vars: 41, consts: [[3, "ngClass"], [3, "viewMode", "progress", "embedded"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "viewMode", "viewModeLabel", "currentSection", "currentSubsection", "sectionFading", "subsectionFading", "showControls", "embedded", "scrollEvent"], [1, "relative"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "viewMode", "embedded"], [3, "viewInContextRequested", "isLightMode"], [3, "searchChange", "resultSelected", "close", "isLightMode", "isOpen", "searchQuery", "results", "hasResults", "selectedIndex", "placeholder"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode", "isLoading"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed", "isLoading"], [1, "mb-8"], [3, "viewMode", "businessName", "isOnboarded", "analysisDate"], ["size", "large", 3, "viewMode", "title", "subtitle"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "itemStatus", "currentStatus", "confettiIntensity", "title", "subtitle"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMoreClick", "recommendations", "viewMode"], [3, "sections", "viewMode"], [3, "section", "viewMode", "forceExpanded"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8"], [3, "viewMode", "subsections"]], template: function SymphiqBusinessAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
68846
68896
|
i0.ɵɵelementStart(0, "div", 0);
|
|
68847
68897
|
i0.ɵɵelement(1, "symphiq-scroll-progress-bar", 1)(2, "div", 2);
|
|
68848
68898
|
i0.ɵɵelementStart(3, "div", 3)(4, "symphiq-dashboard-header", 4);
|
|
68849
68899
|
i0.ɵɵlistener("searchClick", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_dashboard_header_searchClick_4_listener() { return ctx.openSearch(); })("viewModeClick", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_dashboard_header_viewModeClick_4_listener() { return ctx.openViewModeSwitcher(); });
|
|
68850
68900
|
i0.ɵɵelementEnd();
|
|
68851
68901
|
i0.ɵɵelementStart(5, "main", 5);
|
|
68852
|
-
i0.ɵɵconditionalCreate(6, SymphiqBusinessAnalysisDashboardComponent_Conditional_6_Template,
|
|
68902
|
+
i0.ɵɵconditionalCreate(6, SymphiqBusinessAnalysisDashboardComponent_Conditional_6_Template, 4, 7, "div", 6)(7, SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Template, 2, 7)(8, SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Template, 2, 1);
|
|
68853
68903
|
i0.ɵɵelementEnd();
|
|
68854
68904
|
i0.ɵɵconditionalCreate(9, SymphiqBusinessAnalysisDashboardComponent_Conditional_9_Template, 1, 4, "symphiq-section-navigation", 7);
|
|
68855
68905
|
i0.ɵɵconditionalCreate(10, SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Template, 1, 4, "symphiq-floating-toc", 7);
|
|
@@ -68898,11 +68948,11 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
68898
68948
|
i0.ɵɵproperty("isOpen", ctx.isViewModeSwitcherOpen())("currentMode", ctx.displayMode())("viewMode", ctx.viewMode())("isLoading", ctx.isViewModeSwitching());
|
|
68899
68949
|
i0.ɵɵadvance();
|
|
68900
68950
|
i0.ɵɵproperty("viewMode", ctx.viewMode())("reviewStatus", (tmp_35_0 = ctx.profile()) == null ? null : tmp_35_0.reviewStatus)("selfContentStatus", (tmp_36_0 = ctx.profile()) == null ? null : tmp_36_0.selfContentStatus)("isMarkingAsReviewed", ctx.isMarkingAsReviewed())("isLoading", !!ctx.isLoading());
|
|
68901
|
-
} }, dependencies: [CommonModule, i1$1.NgClass, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent, ContentGenerationProgressWithConfettiComponent,
|
|
68951
|
+
} }, dependencies: [CommonModule, i1$1.NgClass, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent, ContentGenerationProgressWithConfettiComponent, MarkAsReviewedFooterComponent, DashboardHeaderComponent, ScrollProgressBarComponent, LoadingCardComponent], styles: ["[_nghost-%COMP%]{display:block}@keyframes _ngcontent-%COMP%_spin{to{transform:rotate(360deg)}}@keyframes _ngcontent-%COMP%_pulse-highlight{0%,to{transform:scale(1);box-shadow:0 0 #3b82f6b3}50%{transform:scale(1.02);box-shadow:0 0 20px 8px #3b82f64d}}[_nghost-%COMP%] .search-highlight-pulse{animation:_ngcontent-%COMP%_pulse-highlight 2s ease-in-out;border-color:#3b82f6!important}"], changeDetection: 0 }); }
|
|
68902
68952
|
}
|
|
68903
68953
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SymphiqBusinessAnalysisDashboardComponent, [{
|
|
68904
68954
|
type: Component,
|
|
68905
|
-
args: [{ selector: 'symphiq-business-analysis-dashboard', standalone: true, imports: [CommonModule, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent, ContentGenerationProgressWithConfettiComponent,
|
|
68955
|
+
args: [{ selector: 'symphiq-business-analysis-dashboard', standalone: true, imports: [CommonModule, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent, ContentGenerationProgressWithConfettiComponent, MarkAsReviewedFooterComponent, DashboardHeaderComponent, ScrollProgressBarComponent, LoadingCardComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
68906
68956
|
<div [ngClass]="getContainerClasses()">
|
|
68907
68957
|
<symphiq-scroll-progress-bar
|
|
68908
68958
|
[viewMode]="viewMode()"
|
|
@@ -68931,10 +68981,20 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
68931
68981
|
|
|
68932
68982
|
<main class="relative" [class.pb-32]="shouldShowReviewFooter()">
|
|
68933
68983
|
@if (isLoading()) {
|
|
68934
|
-
|
|
68935
|
-
|
|
68936
|
-
|
|
68984
|
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
|
68985
|
+
<div class="mb-8">
|
|
68986
|
+
<symphiq-welcome-banner
|
|
68987
|
+
[viewMode]="viewMode()"
|
|
68988
|
+
[businessName]="currentProfile()?.profileStructured?.businessName || 'your business'"
|
|
68989
|
+
[isOnboarded]="isOnboarded()"
|
|
68990
|
+
[analysisDate]="profile()?.selfContentCompletedDate"
|
|
68991
|
+
/>
|
|
68992
|
+
</div>
|
|
68993
|
+
|
|
68994
|
+
<symphiq-loading-card
|
|
68937
68995
|
[viewMode]="viewMode()"
|
|
68996
|
+
[title]="'Loading Business Analysis...'"
|
|
68997
|
+
[subtitle]="'Please wait while we fetch your data.'"
|
|
68938
68998
|
size="large"
|
|
68939
68999
|
/>
|
|
68940
69000
|
</div>
|
|
@@ -69089,7 +69149,7 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
69089
69149
|
type: HostListener,
|
|
69090
69150
|
args: ['document:keydown', ['$event']]
|
|
69091
69151
|
}] }); })();
|
|
69092
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqBusinessAnalysisDashboardComponent, { className: "SymphiqBusinessAnalysisDashboardComponent", filePath: "lib/components/business-analysis-dashboard/symphiq-business-analysis-dashboard.component.ts", lineNumber:
|
|
69152
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqBusinessAnalysisDashboardComponent, { className: "SymphiqBusinessAnalysisDashboardComponent", filePath: "lib/components/business-analysis-dashboard/symphiq-business-analysis-dashboard.component.ts", lineNumber: 279 }); })();
|
|
69093
69153
|
|
|
69094
69154
|
class GradeBadgeComponent {
|
|
69095
69155
|
constructor() {
|
|
@@ -69666,9 +69726,9 @@ function MetricExecutiveSummaryComponent_Conditional_11_Template(rf, ctx) { if (
|
|
|
69666
69726
|
i0.ɵɵproperty("grade", ctx_r0.summary().overallGrade)("gradeRationale", ctx_r0.summary().gradeRationale || "")("viewMode", ctx_r0.viewMode());
|
|
69667
69727
|
} }
|
|
69668
69728
|
function MetricExecutiveSummaryComponent_Conditional_14_Conditional_7_Template(rf, ctx) { if (rf & 1) {
|
|
69669
|
-
i0.ɵɵelementStart(0, "div",
|
|
69670
|
-
i0.ɵɵelement(1, "symphiq-icon",
|
|
69671
|
-
i0.ɵɵelementStart(2, "span",
|
|
69729
|
+
i0.ɵɵelementStart(0, "div", 27);
|
|
69730
|
+
i0.ɵɵelement(1, "symphiq-icon", 24);
|
|
69731
|
+
i0.ɵɵelementStart(2, "span", 28);
|
|
69672
69732
|
i0.ɵɵtext(3);
|
|
69673
69733
|
i0.ɵɵelementEnd()();
|
|
69674
69734
|
} if (rf & 2) {
|
|
@@ -69681,15 +69741,15 @@ function MetricExecutiveSummaryComponent_Conditional_14_Conditional_7_Template(r
|
|
|
69681
69741
|
i0.ɵɵtextInterpolate1(" ", ctx_r0.summary().yoyChange, " YoY ");
|
|
69682
69742
|
} }
|
|
69683
69743
|
function MetricExecutiveSummaryComponent_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
69684
|
-
i0.ɵɵelementStart(0, "div", 12)(1, "div",
|
|
69685
|
-
i0.ɵɵelement(2, "symphiq-icon",
|
|
69686
|
-
i0.ɵɵelementStart(3, "span",
|
|
69744
|
+
i0.ɵɵelementStart(0, "div", 12)(1, "div", 23);
|
|
69745
|
+
i0.ɵɵelement(2, "symphiq-icon", 24);
|
|
69746
|
+
i0.ɵɵelementStart(3, "span", 25);
|
|
69687
69747
|
i0.ɵɵtext(4, " Current Value ");
|
|
69688
69748
|
i0.ɵɵelementEnd()();
|
|
69689
|
-
i0.ɵɵelementStart(5, "div",
|
|
69749
|
+
i0.ɵɵelementStart(5, "div", 26);
|
|
69690
69750
|
i0.ɵɵtext(6);
|
|
69691
69751
|
i0.ɵɵelementEnd();
|
|
69692
|
-
i0.ɵɵconditionalCreate(7, MetricExecutiveSummaryComponent_Conditional_14_Conditional_7_Template, 4, 7, "div",
|
|
69752
|
+
i0.ɵɵconditionalCreate(7, MetricExecutiveSummaryComponent_Conditional_14_Conditional_7_Template, 4, 7, "div", 27);
|
|
69693
69753
|
i0.ɵɵelementEnd();
|
|
69694
69754
|
} if (rf & 2) {
|
|
69695
69755
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
@@ -69706,10 +69766,10 @@ function MetricExecutiveSummaryComponent_Conditional_14_Template(rf, ctx) { if (
|
|
|
69706
69766
|
i0.ɵɵconditional(ctx_r0.summary().yoyChange ? 7 : -1);
|
|
69707
69767
|
} }
|
|
69708
69768
|
function MetricExecutiveSummaryComponent_Conditional_15_Conditional_7_Template(rf, ctx) { if (rf & 1) {
|
|
69709
|
-
i0.ɵɵelementStart(0, "div",
|
|
69769
|
+
i0.ɵɵelementStart(0, "div", 29)(1, "span", 30);
|
|
69710
69770
|
i0.ɵɵtext(2, " Pacing Towards ");
|
|
69711
69771
|
i0.ɵɵelementEnd();
|
|
69712
|
-
i0.ɵɵelementStart(3, "div",
|
|
69772
|
+
i0.ɵɵelementStart(3, "div", 31);
|
|
69713
69773
|
i0.ɵɵtext(4);
|
|
69714
69774
|
i0.ɵɵelementEnd()();
|
|
69715
69775
|
} if (rf & 2) {
|
|
@@ -69722,15 +69782,15 @@ function MetricExecutiveSummaryComponent_Conditional_15_Conditional_7_Template(r
|
|
|
69722
69782
|
i0.ɵɵtextInterpolate1(" ", ctx_r0.formatNumber(ctx_r0.projectedValue()), " ");
|
|
69723
69783
|
} }
|
|
69724
69784
|
function MetricExecutiveSummaryComponent_Conditional_15_Template(rf, ctx) { if (rf & 1) {
|
|
69725
|
-
i0.ɵɵelementStart(0, "div", 12)(1, "div",
|
|
69726
|
-
i0.ɵɵelement(2, "symphiq-icon",
|
|
69727
|
-
i0.ɵɵelementStart(3, "span",
|
|
69785
|
+
i0.ɵɵelementStart(0, "div", 12)(1, "div", 23);
|
|
69786
|
+
i0.ɵɵelement(2, "symphiq-icon", 24);
|
|
69787
|
+
i0.ɵɵelementStart(3, "span", 25);
|
|
69728
69788
|
i0.ɵɵtext(4, " Target ");
|
|
69729
69789
|
i0.ɵɵelementEnd()();
|
|
69730
|
-
i0.ɵɵelementStart(5, "div",
|
|
69790
|
+
i0.ɵɵelementStart(5, "div", 26);
|
|
69731
69791
|
i0.ɵɵtext(6);
|
|
69732
69792
|
i0.ɵɵelementEnd();
|
|
69733
|
-
i0.ɵɵconditionalCreate(7, MetricExecutiveSummaryComponent_Conditional_15_Conditional_7_Template, 5, 3, "div",
|
|
69793
|
+
i0.ɵɵconditionalCreate(7, MetricExecutiveSummaryComponent_Conditional_15_Conditional_7_Template, 5, 3, "div", 29);
|
|
69734
69794
|
i0.ɵɵelementEnd();
|
|
69735
69795
|
} if (rf & 2) {
|
|
69736
69796
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
@@ -69747,7 +69807,7 @@ function MetricExecutiveSummaryComponent_Conditional_15_Template(rf, ctx) { if (
|
|
|
69747
69807
|
i0.ɵɵconditional(ctx_r0.projectedValue() ? 7 : -1);
|
|
69748
69808
|
} }
|
|
69749
69809
|
function MetricExecutiveSummaryComponent_Conditional_16_Conditional_7_Template(rf, ctx) { if (rf & 1) {
|
|
69750
|
-
i0.ɵɵelementStart(0, "div",
|
|
69810
|
+
i0.ɵɵelementStart(0, "div", 33);
|
|
69751
69811
|
i0.ɵɵtext(1);
|
|
69752
69812
|
i0.ɵɵelementEnd();
|
|
69753
69813
|
} if (rf & 2) {
|
|
@@ -69757,21 +69817,22 @@ function MetricExecutiveSummaryComponent_Conditional_16_Conditional_7_Template(r
|
|
|
69757
69817
|
i0.ɵɵtextInterpolate1(" ", ctx_r0.summary().pacingStatusDescription, " ");
|
|
69758
69818
|
} }
|
|
69759
69819
|
function MetricExecutiveSummaryComponent_Conditional_16_Template(rf, ctx) { if (rf & 1) {
|
|
69760
|
-
i0.ɵɵelementStart(0, "div", 12)(1, "div",
|
|
69761
|
-
i0.ɵɵelement(2, "symphiq-icon",
|
|
69762
|
-
i0.ɵɵelementStart(3, "span",
|
|
69820
|
+
i0.ɵɵelementStart(0, "div", 12)(1, "div", 23);
|
|
69821
|
+
i0.ɵɵelement(2, "symphiq-icon", 24);
|
|
69822
|
+
i0.ɵɵelementStart(3, "span", 25);
|
|
69763
69823
|
i0.ɵɵtext(4, " Pacing vs Target ");
|
|
69764
69824
|
i0.ɵɵelementEnd()();
|
|
69765
|
-
i0.ɵɵelementStart(5, "div",
|
|
69825
|
+
i0.ɵɵelementStart(5, "div", 32);
|
|
69766
69826
|
i0.ɵɵtext(6);
|
|
69767
69827
|
i0.ɵɵelementEnd();
|
|
69768
|
-
i0.ɵɵconditionalCreate(7, MetricExecutiveSummaryComponent_Conditional_16_Conditional_7_Template, 2, 4, "div",
|
|
69828
|
+
i0.ɵɵconditionalCreate(7, MetricExecutiveSummaryComponent_Conditional_16_Conditional_7_Template, 2, 4, "div", 33);
|
|
69769
69829
|
i0.ɵɵelementEnd();
|
|
69770
69830
|
} if (rf & 2) {
|
|
69771
69831
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
69832
|
+
i0.ɵɵclassProp("pulse-critical", ctx_r0.summary().pacingStatus === "CRITICAL");
|
|
69772
69833
|
i0.ɵɵproperty("ngClass", ctx_r0.metricCardClasses());
|
|
69773
69834
|
i0.ɵɵadvance(2);
|
|
69774
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(
|
|
69835
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(9, _c5$2, ctx_r0.iconSource))("ngClass", ctx_r0.metricLabelClasses());
|
|
69775
69836
|
i0.ɵɵadvance();
|
|
69776
69837
|
i0.ɵɵproperty("ngClass", ctx_r0.metricLabelClasses());
|
|
69777
69838
|
i0.ɵɵadvance(2);
|
|
@@ -69782,7 +69843,7 @@ function MetricExecutiveSummaryComponent_Conditional_16_Template(rf, ctx) { if (
|
|
|
69782
69843
|
i0.ɵɵconditional(ctx_r0.summary().pacingStatusDescription ? 7 : -1);
|
|
69783
69844
|
} }
|
|
69784
69845
|
function MetricExecutiveSummaryComponent_Conditional_17_Conditional_7_Template(rf, ctx) { if (rf & 1) {
|
|
69785
|
-
i0.ɵɵelementStart(0, "div",
|
|
69846
|
+
i0.ɵɵelementStart(0, "div", 33);
|
|
69786
69847
|
i0.ɵɵtext(1);
|
|
69787
69848
|
i0.ɵɵelementEnd();
|
|
69788
69849
|
} if (rf & 2) {
|
|
@@ -69792,34 +69853,35 @@ function MetricExecutiveSummaryComponent_Conditional_17_Conditional_7_Template(r
|
|
|
69792
69853
|
i0.ɵɵtextInterpolate1(" ", ctx_r0.summary().metricHealthDescription, " ");
|
|
69793
69854
|
} }
|
|
69794
69855
|
function MetricExecutiveSummaryComponent_Conditional_17_Template(rf, ctx) { if (rf & 1) {
|
|
69795
|
-
i0.ɵɵelementStart(0, "div", 12)(1, "div",
|
|
69796
|
-
i0.ɵɵelement(2, "symphiq-icon",
|
|
69797
|
-
i0.ɵɵelementStart(3, "span",
|
|
69856
|
+
i0.ɵɵelementStart(0, "div", 12)(1, "div", 23);
|
|
69857
|
+
i0.ɵɵelement(2, "symphiq-icon", 24);
|
|
69858
|
+
i0.ɵɵelementStart(3, "span", 25);
|
|
69798
69859
|
i0.ɵɵtext(4, " Health ");
|
|
69799
69860
|
i0.ɵɵelementEnd()();
|
|
69800
|
-
i0.ɵɵelementStart(5, "div",
|
|
69861
|
+
i0.ɵɵelementStart(5, "div", 32);
|
|
69801
69862
|
i0.ɵɵtext(6);
|
|
69802
69863
|
i0.ɵɵelementEnd();
|
|
69803
|
-
i0.ɵɵconditionalCreate(7, MetricExecutiveSummaryComponent_Conditional_17_Conditional_7_Template, 2, 4, "div",
|
|
69864
|
+
i0.ɵɵconditionalCreate(7, MetricExecutiveSummaryComponent_Conditional_17_Conditional_7_Template, 2, 4, "div", 33);
|
|
69804
69865
|
i0.ɵɵelementEnd();
|
|
69805
69866
|
} if (rf & 2) {
|
|
69806
|
-
let
|
|
69867
|
+
let tmp_7_0;
|
|
69807
69868
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
69869
|
+
i0.ɵɵclassProp("pulse-critical", ctx_r0.summary().metricHealth === "CRITICAL");
|
|
69808
69870
|
i0.ɵɵproperty("ngClass", ctx_r0.metricCardClasses());
|
|
69809
69871
|
i0.ɵɵadvance(2);
|
|
69810
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(
|
|
69872
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(9, _c6$1, ctx_r0.iconSource))("ngClass", ctx_r0.metricLabelClasses());
|
|
69811
69873
|
i0.ɵɵadvance();
|
|
69812
69874
|
i0.ɵɵproperty("ngClass", ctx_r0.metricLabelClasses());
|
|
69813
69875
|
i0.ɵɵadvance(2);
|
|
69814
69876
|
i0.ɵɵproperty("ngClass", ctx_r0.getHealthValueClasses());
|
|
69815
69877
|
i0.ɵɵadvance();
|
|
69816
|
-
i0.ɵɵtextInterpolate1(" ", (
|
|
69878
|
+
i0.ɵɵtextInterpolate1(" ", (tmp_7_0 = ctx_r0.summary().metricHealth) == null ? null : tmp_7_0.replace("_", " "), " ");
|
|
69817
69879
|
i0.ɵɵadvance();
|
|
69818
69880
|
i0.ɵɵconditional(ctx_r0.summary().metricHealthDescription ? 7 : -1);
|
|
69819
69881
|
} }
|
|
69820
69882
|
function MetricExecutiveSummaryComponent_Conditional_29_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
69821
|
-
i0.ɵɵelementStart(0, "div",
|
|
69822
|
-
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder",
|
|
69883
|
+
i0.ɵɵelementStart(0, "div", 36);
|
|
69884
|
+
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 39);
|
|
69823
69885
|
i0.ɵɵelementEnd();
|
|
69824
69886
|
} if (rf & 2) {
|
|
69825
69887
|
const ctx_r0 = i0.ɵɵnextContext(2);
|
|
@@ -69827,15 +69889,15 @@ function MetricExecutiveSummaryComponent_Conditional_29_Conditional_4_Template(r
|
|
|
69827
69889
|
i0.ɵɵproperty("visual", ctx_r0.summary().napkinVisual)("viewMode", ctx_r0.viewMode());
|
|
69828
69890
|
} }
|
|
69829
69891
|
function MetricExecutiveSummaryComponent_Conditional_29_Template(rf, ctx) { if (rf & 1) {
|
|
69830
|
-
i0.ɵɵelementStart(0, "div",
|
|
69892
|
+
i0.ɵɵelementStart(0, "div", 20)(1, "h3", 34);
|
|
69831
69893
|
i0.ɵɵtext(2, " Analysis Narrative ");
|
|
69832
69894
|
i0.ɵɵelementEnd();
|
|
69833
|
-
i0.ɵɵelementStart(3, "div",
|
|
69834
|
-
i0.ɵɵconditionalCreate(4, MetricExecutiveSummaryComponent_Conditional_29_Conditional_4_Template, 2, 2, "div",
|
|
69835
|
-
i0.ɵɵelementStart(5, "p",
|
|
69895
|
+
i0.ɵɵelementStart(3, "div", 35);
|
|
69896
|
+
i0.ɵɵconditionalCreate(4, MetricExecutiveSummaryComponent_Conditional_29_Conditional_4_Template, 2, 2, "div", 36);
|
|
69897
|
+
i0.ɵɵelementStart(5, "p", 37);
|
|
69836
69898
|
i0.ɵɵtext(6);
|
|
69837
69899
|
i0.ɵɵelementEnd();
|
|
69838
|
-
i0.ɵɵelement(7, "div",
|
|
69900
|
+
i0.ɵɵelement(7, "div", 38);
|
|
69839
69901
|
i0.ɵɵelementEnd()();
|
|
69840
69902
|
} if (rf & 2) {
|
|
69841
69903
|
let tmp_3_0;
|
|
@@ -69851,12 +69913,12 @@ function MetricExecutiveSummaryComponent_Conditional_29_Template(rf, ctx) { if (
|
|
|
69851
69913
|
i0.ɵɵtextInterpolate1(" ", ctx_r0.summary().narrative, " ");
|
|
69852
69914
|
} }
|
|
69853
69915
|
function MetricExecutiveSummaryComponent_Conditional_30_For_5_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
69854
|
-
i0.ɵɵelementStart(0, "div",
|
|
69855
|
-
i0.ɵɵelement(2, "symphiq-icon",
|
|
69856
|
-
i0.ɵɵelementStart(3, "div")(4, "span",
|
|
69916
|
+
i0.ɵɵelementStart(0, "div", 48)(1, "div", 49);
|
|
69917
|
+
i0.ɵɵelement(2, "symphiq-icon", 50);
|
|
69918
|
+
i0.ɵɵelementStart(3, "div")(4, "span", 51);
|
|
69857
69919
|
i0.ɵɵtext(5, " Expected Impact ");
|
|
69858
69920
|
i0.ɵɵelementEnd();
|
|
69859
|
-
i0.ɵɵelementStart(6, "p",
|
|
69921
|
+
i0.ɵɵelementStart(6, "p", 52);
|
|
69860
69922
|
i0.ɵɵtext(7);
|
|
69861
69923
|
i0.ɵɵelementEnd()()()();
|
|
69862
69924
|
} if (rf & 2) {
|
|
@@ -69874,18 +69936,18 @@ function MetricExecutiveSummaryComponent_Conditional_30_For_5_Conditional_8_Temp
|
|
|
69874
69936
|
} }
|
|
69875
69937
|
function MetricExecutiveSummaryComponent_Conditional_30_For_5_Template(rf, ctx) { if (rf & 1) {
|
|
69876
69938
|
const _r2 = i0.ɵɵgetCurrentView();
|
|
69877
|
-
i0.ɵɵelementStart(0, "button",
|
|
69939
|
+
i0.ɵɵelementStart(0, "button", 43);
|
|
69878
69940
|
i0.ɵɵlistener("click", function MetricExecutiveSummaryComponent_Conditional_30_For_5_Template_button_click_0_listener() { const ctx_r2 = i0.ɵɵrestoreView(_r2); const priority_r4 = ctx_r2.$implicit; const $index_r5 = ctx_r2.$index; const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.priorityDetailClick.emit({ priority: priority_r4, index: $index_r5 })); });
|
|
69879
|
-
i0.ɵɵelementStart(1, "div",
|
|
69941
|
+
i0.ɵɵelementStart(1, "div", 44)(2, "span", 45);
|
|
69880
69942
|
i0.ɵɵtext(3);
|
|
69881
69943
|
i0.ɵɵelementEnd();
|
|
69882
|
-
i0.ɵɵelementStart(4, "h4",
|
|
69944
|
+
i0.ɵɵelementStart(4, "h4", 46);
|
|
69883
69945
|
i0.ɵɵtext(5);
|
|
69884
69946
|
i0.ɵɵelementEnd()();
|
|
69885
|
-
i0.ɵɵelementStart(6, "p",
|
|
69947
|
+
i0.ɵɵelementStart(6, "p", 47);
|
|
69886
69948
|
i0.ɵɵtext(7);
|
|
69887
69949
|
i0.ɵɵelementEnd();
|
|
69888
|
-
i0.ɵɵconditionalCreate(8, MetricExecutiveSummaryComponent_Conditional_30_For_5_Conditional_8_Template, 8, 8, "div",
|
|
69950
|
+
i0.ɵɵconditionalCreate(8, MetricExecutiveSummaryComponent_Conditional_30_For_5_Conditional_8_Template, 8, 8, "div", 48);
|
|
69889
69951
|
i0.ɵɵelementEnd();
|
|
69890
69952
|
} if (rf & 2) {
|
|
69891
69953
|
const priority_r4 = ctx.$implicit;
|
|
@@ -69908,11 +69970,11 @@ function MetricExecutiveSummaryComponent_Conditional_30_For_5_Template(rf, ctx)
|
|
|
69908
69970
|
i0.ɵɵconditional(priority_r4.expectedImpact ? 8 : -1);
|
|
69909
69971
|
} }
|
|
69910
69972
|
function MetricExecutiveSummaryComponent_Conditional_30_Template(rf, ctx) { if (rf & 1) {
|
|
69911
|
-
i0.ɵɵelementStart(0, "div",
|
|
69973
|
+
i0.ɵɵelementStart(0, "div", 21)(1, "h3", 40);
|
|
69912
69974
|
i0.ɵɵtext(2, "Top Priorities");
|
|
69913
69975
|
i0.ɵɵelementEnd();
|
|
69914
|
-
i0.ɵɵelementStart(3, "div",
|
|
69915
|
-
i0.ɵɵrepeaterCreate(4, MetricExecutiveSummaryComponent_Conditional_30_For_5_Template, 9, 8, "button",
|
|
69976
|
+
i0.ɵɵelementStart(3, "div", 41);
|
|
69977
|
+
i0.ɵɵrepeaterCreate(4, MetricExecutiveSummaryComponent_Conditional_30_For_5_Template, 9, 8, "button", 42, i0.ɵɵrepeaterTrackByIndex);
|
|
69916
69978
|
i0.ɵɵelementEnd()();
|
|
69917
69979
|
} if (rf & 2) {
|
|
69918
69980
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
@@ -69922,8 +69984,8 @@ function MetricExecutiveSummaryComponent_Conditional_30_Template(rf, ctx) { if (
|
|
|
69922
69984
|
i0.ɵɵrepeater(ctx_r0.summary().topPriorities);
|
|
69923
69985
|
} }
|
|
69924
69986
|
function MetricExecutiveSummaryComponent_Conditional_31_For_5_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
69925
|
-
i0.ɵɵelementStart(0, "div",
|
|
69926
|
-
i0.ɵɵelement(1, "symphiq-icon",
|
|
69987
|
+
i0.ɵɵelementStart(0, "div", 61);
|
|
69988
|
+
i0.ɵɵelement(1, "symphiq-icon", 16);
|
|
69927
69989
|
i0.ɵɵelementStart(2, "span");
|
|
69928
69990
|
i0.ɵɵtext(3);
|
|
69929
69991
|
i0.ɵɵelementEnd()();
|
|
@@ -69937,10 +69999,10 @@ function MetricExecutiveSummaryComponent_Conditional_31_For_5_Conditional_12_Tem
|
|
|
69937
69999
|
i0.ɵɵtextInterpolate(entry_r6.win.estimatedTimeframe);
|
|
69938
70000
|
} }
|
|
69939
70001
|
function MetricExecutiveSummaryComponent_Conditional_31_For_5_Conditional_13_Template(rf, ctx) { if (rf & 1) {
|
|
69940
|
-
i0.ɵɵelementStart(0, "div",
|
|
70002
|
+
i0.ɵɵelementStart(0, "div", 62)(1, "h4", 25);
|
|
69941
70003
|
i0.ɵɵtext(2, " Related Goal ");
|
|
69942
70004
|
i0.ɵɵelementEnd();
|
|
69943
|
-
i0.ɵɵelement(3, "symphiq-related-goal-chips",
|
|
70005
|
+
i0.ɵɵelement(3, "symphiq-related-goal-chips", 63);
|
|
69944
70006
|
i0.ɵɵelementEnd();
|
|
69945
70007
|
} if (rf & 2) {
|
|
69946
70008
|
const entry_r6 = i0.ɵɵnextContext().$implicit;
|
|
@@ -69951,20 +70013,20 @@ function MetricExecutiveSummaryComponent_Conditional_31_For_5_Conditional_13_Tem
|
|
|
69951
70013
|
i0.ɵɵproperty("relatedGoalIds", i0.ɵɵpureFunction1(4, _c9, entry_r6.win.relatedGoalId))("allGoals", ctx_r0.allGoals() || i0.ɵɵpureFunction0(6, _c10))("viewMode", ctx_r0.viewMode());
|
|
69952
70014
|
} }
|
|
69953
70015
|
function MetricExecutiveSummaryComponent_Conditional_31_For_5_Template(rf, ctx) { if (rf & 1) {
|
|
69954
|
-
i0.ɵɵelementStart(0, "div",
|
|
70016
|
+
i0.ɵɵelementStart(0, "div", 55)(1, "div", 56)(2, "div", 57)(3, "span", 45);
|
|
69955
70017
|
i0.ɵɵtext(4);
|
|
69956
70018
|
i0.ɵɵelementEnd();
|
|
69957
|
-
i0.ɵɵelementStart(5, "p",
|
|
70019
|
+
i0.ɵɵelementStart(5, "p", 58);
|
|
69958
70020
|
i0.ɵɵtext(6);
|
|
69959
70021
|
i0.ɵɵelementEnd()();
|
|
69960
|
-
i0.ɵɵelementStart(7, "div",
|
|
70022
|
+
i0.ɵɵelementStart(7, "div", 59)(8, "span", 60);
|
|
69961
70023
|
i0.ɵɵtext(9);
|
|
69962
70024
|
i0.ɵɵelementEnd();
|
|
69963
|
-
i0.ɵɵelementStart(10, "span",
|
|
70025
|
+
i0.ɵɵelementStart(10, "span", 60);
|
|
69964
70026
|
i0.ɵɵtext(11);
|
|
69965
70027
|
i0.ɵɵelementEnd()();
|
|
69966
|
-
i0.ɵɵconditionalCreate(12, MetricExecutiveSummaryComponent_Conditional_31_For_5_Conditional_12_Template, 4, 5, "div",
|
|
69967
|
-
i0.ɵɵconditionalCreate(13, MetricExecutiveSummaryComponent_Conditional_31_For_5_Conditional_13_Template, 4, 7, "div",
|
|
70028
|
+
i0.ɵɵconditionalCreate(12, MetricExecutiveSummaryComponent_Conditional_31_For_5_Conditional_12_Template, 4, 5, "div", 61);
|
|
70029
|
+
i0.ɵɵconditionalCreate(13, MetricExecutiveSummaryComponent_Conditional_31_For_5_Conditional_13_Template, 4, 7, "div", 62);
|
|
69968
70030
|
i0.ɵɵelementEnd()();
|
|
69969
70031
|
} if (rf & 2) {
|
|
69970
70032
|
const entry_r6 = ctx.$implicit;
|
|
@@ -69992,11 +70054,11 @@ function MetricExecutiveSummaryComponent_Conditional_31_For_5_Template(rf, ctx)
|
|
|
69992
70054
|
i0.ɵɵconditional(entry_r6.win.relatedGoalId && ctx_r0.allGoals() ? 13 : -1);
|
|
69993
70055
|
} }
|
|
69994
70056
|
function MetricExecutiveSummaryComponent_Conditional_31_Template(rf, ctx) { if (rf & 1) {
|
|
69995
|
-
i0.ɵɵelementStart(0, "div",
|
|
70057
|
+
i0.ɵɵelementStart(0, "div", 22)(1, "h3", 53);
|
|
69996
70058
|
i0.ɵɵtext(2, "Quick Wins");
|
|
69997
70059
|
i0.ɵɵelementEnd();
|
|
69998
|
-
i0.ɵɵelementStart(3, "div",
|
|
69999
|
-
i0.ɵɵrepeaterCreate(4, MetricExecutiveSummaryComponent_Conditional_31_For_5_Template, 14, 11, "div",
|
|
70060
|
+
i0.ɵɵelementStart(3, "div", 54);
|
|
70061
|
+
i0.ɵɵrepeaterCreate(4, MetricExecutiveSummaryComponent_Conditional_31_For_5_Template, 14, 11, "div", 55, _forTrack0$v);
|
|
70000
70062
|
i0.ɵɵelementEnd()();
|
|
70001
70063
|
} if (rf & 2) {
|
|
70002
70064
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
@@ -70226,7 +70288,7 @@ class MetricExecutiveSummaryComponent {
|
|
|
70226
70288
|
return num.toLocaleString('en-US', { minimumFractionDigits: 0, maximumFractionDigits: 2 });
|
|
70227
70289
|
}
|
|
70228
70290
|
static { this.ɵfac = function MetricExecutiveSummaryComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MetricExecutiveSummaryComponent)(); }; }
|
|
70229
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: MetricExecutiveSummaryComponent, selectors: [["symphiq-metric-executive-summary"]], inputs: { viewMode: [1, "viewMode"], summary: [1, "summary"], metricName: [1, "metricName"], allGoals: [1, "allGoals"] }, outputs: { topPrioritiesClick: "topPrioritiesClick", priorityDetailClick: "priorityDetailClick", viewMetricDetailsClick: "viewMetricDetailsClick", viewReportClick: "viewReportClick" }, decls: 32, vars: 26, consts: [["id", "section-metric-executive-summary", 1, "space-y-6", "scroll-mt-24"], [1, "rounded-2xl", "p-8", "shadow-xl", 3, "ngClass"], [1, "space-y-6"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "flex-1"], [1, "flex", "items-center", "gap-3", "mb-3"], [3, "icon", "size", "ngClass"], [1, "text-3xl", "font-bold", 3, "ngClass"], [1, "text-lg", "leading-relaxed", 3, "ngClass"], [3, "grade", "gradeRationale", "viewMode"], ["type", "button", 1, "w-full", "text-left", "cursor-pointer", "group", 3, "click"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-4", "gap-4"], [1, "rounded-xl", "p-4", "transition-all", "duration-200", "group-hover:scale-[1.02]", "group-hover:shadow-lg", 3, "ngClass"], [1, "flex", "flex-wrap", "items-center", "justify-center", "gap-3", "mt-4"], ["type", "button", 1, "inline-flex", "items-center", "gap-2", "px-4", "py-2.5", "rounded-lg", "text-sm", "font-semibold", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"], ["size", "w-4 h-4", 3, "icon"], ["type", "button", 1, "inline-flex", "items-center", "gap-2", "px-4", "py-2.5", "rounded-lg", "font-medium", "text-sm", "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", "M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"], [1, "rounded-xl", "p-6", "mt-6", 3, "ngClass"], [1, "mt-6"], ["id", "quick-wins-section", 1, "mt-8", "scroll-mt-24"], [1, "flex", "items-center", "gap-2", "mb-2"], ["size", "w-4 h-4", 3, "icon", "ngClass"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [1, "text-2xl", "font-bold", 3, "ngClass"], [1, "flex", "items-center", "gap-1", "mt-2"], [1, "text-sm", "font-medium", 3, "ngClass"], [1, "mt-2", "pt-2", "border-t", "border-slate-600/30"], [1, "text-[10px]", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [1, "text-base", "font-semibold", 3, "ngClass"], [1, "text-xl", "font-bold", 3, "ngClass"], [1, "text-xs", "mt-1", "truncate", "max-w-full", "cursor-help", 3, "libSymphiqTooltip", "tooltipPosition", "ngClass"], [1, "text-lg", "font-semibold", "mb-3", 3, "ngClass"], [1, "relative"], [1, "mb-6", "lg:float-left", "lg:mr-6", "lg:mb-4", "lg:max-w-[66%]"], [1, "text-sm", "leading-relaxed", "whitespace-pre-line", 3, "ngClass"], [1, "clear-both"], [3, "visual", "viewMode"], [1, "text-xl", "font-bold", "mb-4", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "gap-4"], ["type", "button", 1, "rounded-xl", "p-6", "text-left", "transition-all", "duration-200", "hover:scale-[1.02]", "active:scale-[0.98]", "cursor-pointer", 3, "ngClass"], ["type", "button", 1, "rounded-xl", "p-6", "text-left", "transition-all", "duration-200", "hover:scale-[1.02]", "active:scale-[0.98]", "cursor-pointer", 3, "click", "ngClass"], [1, "flex", "items-start", "gap-3", "mb-3"], [1, "flex-shrink-0", "w-8", "h-8", "rounded-full", "flex", "items-center", "justify-center", "text-sm", "font-bold", 3, "ngClass"], [1, "text-lg", "font-semibold", "flex-1", 3, "ngClass"], [1, "text-sm", "leading-relaxed", "mb-3", 3, "ngClass"], [1, "rounded-lg", "p-3", 3, "ngClass"], [1, "flex", "items-start", "gap-2"], ["size", "w-4 h-4", 1, "mt-0.5", 3, "icon", "ngClass"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", "block", "mb-1", 3, "ngClass"], [1, "text-xs", "leading-relaxed", 3, "ngClass"], [1, "text-xl", "font-bold", "mb-6", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "gap-6"], [1, "rounded-xl", "p-6", "transition-all", "duration-300", 3, "ngClass"], [1, "space-y-4"], [1, "flex", "items-start", "gap-3"], [1, "font-semibold", "leading-tight", "flex-1", 3, "ngClass"], [1, "flex", "flex-wrap", "gap-2"], [1, "px-3", "py-1", "rounded-full", "text-xs", "font-semibold", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "text-sm", 3, "ngClass"], [1, "space-y-2"], [3, "relatedGoalIds", "allGoals", "viewMode"]], template: function MetricExecutiveSummaryComponent_Template(rf, ctx) { if (rf & 1) {
|
|
70291
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: MetricExecutiveSummaryComponent, selectors: [["symphiq-metric-executive-summary"]], inputs: { viewMode: [1, "viewMode"], summary: [1, "summary"], metricName: [1, "metricName"], allGoals: [1, "allGoals"] }, outputs: { topPrioritiesClick: "topPrioritiesClick", priorityDetailClick: "priorityDetailClick", viewMetricDetailsClick: "viewMetricDetailsClick", viewReportClick: "viewReportClick" }, decls: 32, vars: 26, consts: [["id", "section-metric-executive-summary", 1, "space-y-6", "scroll-mt-24"], [1, "rounded-2xl", "p-8", "shadow-xl", 3, "ngClass"], [1, "space-y-6"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "flex-1"], [1, "flex", "items-center", "gap-3", "mb-3"], [3, "icon", "size", "ngClass"], [1, "text-3xl", "font-bold", 3, "ngClass"], [1, "text-lg", "leading-relaxed", 3, "ngClass"], [3, "grade", "gradeRationale", "viewMode"], ["type", "button", 1, "w-full", "text-left", "cursor-pointer", "group", 3, "click"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-4", "gap-4"], [1, "rounded-xl", "p-4", "transition-all", "duration-200", "group-hover:scale-[1.02]", "group-hover:shadow-lg", 3, "ngClass"], [1, "rounded-xl", "p-4", "transition-all", "duration-200", "group-hover:scale-[1.02]", "group-hover:shadow-lg", 3, "ngClass", "pulse-critical"], [1, "flex", "flex-wrap", "items-center", "justify-center", "gap-3", "mt-4"], ["type", "button", 1, "inline-flex", "items-center", "gap-2", "px-4", "py-2.5", "rounded-lg", "text-sm", "font-semibold", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"], ["size", "w-4 h-4", 3, "icon"], ["type", "button", 1, "inline-flex", "items-center", "gap-2", "px-4", "py-2.5", "rounded-lg", "font-medium", "text-sm", "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", "M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"], [1, "rounded-xl", "p-6", "mt-6", 3, "ngClass"], [1, "mt-6"], ["id", "quick-wins-section", 1, "mt-8", "scroll-mt-24"], [1, "flex", "items-center", "gap-2", "mb-2"], ["size", "w-4 h-4", 3, "icon", "ngClass"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [1, "text-2xl", "font-bold", 3, "ngClass"], [1, "flex", "items-center", "gap-1", "mt-2"], [1, "text-sm", "font-medium", 3, "ngClass"], [1, "mt-2", "pt-2", "border-t", "border-slate-600/30"], [1, "text-[10px]", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [1, "text-base", "font-semibold", 3, "ngClass"], [1, "text-xl", "font-bold", 3, "ngClass"], [1, "text-xs", "mt-1", "truncate", "max-w-full", "cursor-help", 3, "libSymphiqTooltip", "tooltipPosition", "ngClass"], [1, "text-lg", "font-semibold", "mb-3", 3, "ngClass"], [1, "relative"], [1, "mb-6", "lg:float-left", "lg:mr-6", "lg:mb-4", "lg:max-w-[66%]"], [1, "text-sm", "leading-relaxed", "whitespace-pre-line", 3, "ngClass"], [1, "clear-both"], [3, "visual", "viewMode"], [1, "text-xl", "font-bold", "mb-4", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "gap-4"], ["type", "button", 1, "rounded-xl", "p-6", "text-left", "transition-all", "duration-200", "hover:scale-[1.02]", "active:scale-[0.98]", "cursor-pointer", 3, "ngClass"], ["type", "button", 1, "rounded-xl", "p-6", "text-left", "transition-all", "duration-200", "hover:scale-[1.02]", "active:scale-[0.98]", "cursor-pointer", 3, "click", "ngClass"], [1, "flex", "items-start", "gap-3", "mb-3"], [1, "flex-shrink-0", "w-8", "h-8", "rounded-full", "flex", "items-center", "justify-center", "text-sm", "font-bold", 3, "ngClass"], [1, "text-lg", "font-semibold", "flex-1", 3, "ngClass"], [1, "text-sm", "leading-relaxed", "mb-3", 3, "ngClass"], [1, "rounded-lg", "p-3", 3, "ngClass"], [1, "flex", "items-start", "gap-2"], ["size", "w-4 h-4", 1, "mt-0.5", 3, "icon", "ngClass"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", "block", "mb-1", 3, "ngClass"], [1, "text-xs", "leading-relaxed", 3, "ngClass"], [1, "text-xl", "font-bold", "mb-6", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "gap-6"], [1, "rounded-xl", "p-6", "transition-all", "duration-300", 3, "ngClass"], [1, "space-y-4"], [1, "flex", "items-start", "gap-3"], [1, "font-semibold", "leading-tight", "flex-1", 3, "ngClass"], [1, "flex", "flex-wrap", "gap-2"], [1, "px-3", "py-1", "rounded-full", "text-xs", "font-semibold", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "text-sm", 3, "ngClass"], [1, "space-y-2"], [3, "relatedGoalIds", "allGoals", "viewMode"]], template: function MetricExecutiveSummaryComponent_Template(rf, ctx) { if (rf & 1) {
|
|
70230
70292
|
i0.ɵɵelementStart(0, "section", 0)(1, "div", 1)(2, "div", 2)(3, "div", 3)(4, "div", 4)(5, "div", 5);
|
|
70231
70293
|
i0.ɵɵelement(6, "symphiq-icon", 6);
|
|
70232
70294
|
i0.ɵɵelementStart(7, "h2", 7);
|
|
@@ -70242,31 +70304,31 @@ class MetricExecutiveSummaryComponent {
|
|
|
70242
70304
|
i0.ɵɵelementStart(13, "div", 11);
|
|
70243
70305
|
i0.ɵɵconditionalCreate(14, MetricExecutiveSummaryComponent_Conditional_14_Template, 8, 9, "div", 12);
|
|
70244
70306
|
i0.ɵɵconditionalCreate(15, MetricExecutiveSummaryComponent_Conditional_15_Template, 8, 9, "div", 12);
|
|
70245
|
-
i0.ɵɵconditionalCreate(16, MetricExecutiveSummaryComponent_Conditional_16_Template, 8,
|
|
70246
|
-
i0.ɵɵconditionalCreate(17, MetricExecutiveSummaryComponent_Conditional_17_Template, 8,
|
|
70307
|
+
i0.ɵɵconditionalCreate(16, MetricExecutiveSummaryComponent_Conditional_16_Template, 8, 11, "div", 13);
|
|
70308
|
+
i0.ɵɵconditionalCreate(17, MetricExecutiveSummaryComponent_Conditional_17_Template, 8, 11, "div", 13);
|
|
70247
70309
|
i0.ɵɵelementEnd()();
|
|
70248
|
-
i0.ɵɵelementStart(18, "div",
|
|
70310
|
+
i0.ɵɵelementStart(18, "div", 14)(19, "button", 15);
|
|
70249
70311
|
i0.ɵɵlistener("click", function MetricExecutiveSummaryComponent_Template_button_click_19_listener() { return ctx.handleViewMetricDetailsClick(); });
|
|
70250
70312
|
i0.ɵɵelementStart(20, "span");
|
|
70251
70313
|
i0.ɵɵtext(21, "View Metric Details");
|
|
70252
70314
|
i0.ɵɵelementEnd();
|
|
70253
|
-
i0.ɵɵelement(22, "symphiq-icon",
|
|
70315
|
+
i0.ɵɵelement(22, "symphiq-icon", 16);
|
|
70254
70316
|
i0.ɵɵelementEnd();
|
|
70255
|
-
i0.ɵɵelementStart(23, "button",
|
|
70317
|
+
i0.ɵɵelementStart(23, "button", 17);
|
|
70256
70318
|
i0.ɵɵlistener("click", function MetricExecutiveSummaryComponent_Template_button_click_23_listener() { return ctx.handleViewReportClick(); });
|
|
70257
70319
|
i0.ɵɵnamespaceSVG();
|
|
70258
|
-
i0.ɵɵelementStart(24, "svg",
|
|
70259
|
-
i0.ɵɵelement(25, "path",
|
|
70320
|
+
i0.ɵɵelementStart(24, "svg", 18);
|
|
70321
|
+
i0.ɵɵelement(25, "path", 19);
|
|
70260
70322
|
i0.ɵɵelementEnd();
|
|
70261
70323
|
i0.ɵɵnamespaceHTML();
|
|
70262
70324
|
i0.ɵɵelementStart(26, "span");
|
|
70263
70325
|
i0.ɵɵtext(27, "View Report");
|
|
70264
70326
|
i0.ɵɵelementEnd();
|
|
70265
|
-
i0.ɵɵelement(28, "symphiq-icon",
|
|
70327
|
+
i0.ɵɵelement(28, "symphiq-icon", 16);
|
|
70266
70328
|
i0.ɵɵelementEnd()();
|
|
70267
|
-
i0.ɵɵconditionalCreate(29, MetricExecutiveSummaryComponent_Conditional_29_Template, 8, 5, "div",
|
|
70268
|
-
i0.ɵɵconditionalCreate(30, MetricExecutiveSummaryComponent_Conditional_30_Template, 6, 1, "div",
|
|
70269
|
-
i0.ɵɵconditionalCreate(31, MetricExecutiveSummaryComponent_Conditional_31_Template, 6, 1, "div",
|
|
70329
|
+
i0.ɵɵconditionalCreate(29, MetricExecutiveSummaryComponent_Conditional_29_Template, 8, 5, "div", 20);
|
|
70330
|
+
i0.ɵɵconditionalCreate(30, MetricExecutiveSummaryComponent_Conditional_30_Template, 6, 1, "div", 21);
|
|
70331
|
+
i0.ɵɵconditionalCreate(31, MetricExecutiveSummaryComponent_Conditional_31_Template, 6, 1, "div", 22);
|
|
70270
70332
|
i0.ɵɵelementEnd()()();
|
|
70271
70333
|
} if (rf & 2) {
|
|
70272
70334
|
let tmp_18_0;
|
|
@@ -70310,23 +70372,18 @@ class MetricExecutiveSummaryComponent {
|
|
|
70310
70372
|
SymphiqIconComponent,
|
|
70311
70373
|
NapkinVisualPlaceholderComponent,
|
|
70312
70374
|
RelatedGoalChipsComponent,
|
|
70313
|
-
TooltipDirective],
|
|
70375
|
+
TooltipDirective], styles: [".pulse-critical[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_pulse-critical 2s ease-in-out infinite}@keyframes _ngcontent-%COMP%_pulse-critical{0%,to{opacity:1}50%{opacity:.7}}"], changeDetection: 0 }); }
|
|
70314
70376
|
}
|
|
70315
70377
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MetricExecutiveSummaryComponent, [{
|
|
70316
70378
|
type: Component,
|
|
70317
|
-
args: [{
|
|
70318
|
-
selector: 'symphiq-metric-executive-summary',
|
|
70319
|
-
standalone: true,
|
|
70320
|
-
imports: [
|
|
70379
|
+
args: [{ selector: 'symphiq-metric-executive-summary', standalone: true, imports: [
|
|
70321
70380
|
CommonModule,
|
|
70322
70381
|
GradeBadgeComponent,
|
|
70323
70382
|
SymphiqIconComponent,
|
|
70324
70383
|
NapkinVisualPlaceholderComponent,
|
|
70325
70384
|
RelatedGoalChipsComponent,
|
|
70326
70385
|
TooltipDirective
|
|
70327
|
-
],
|
|
70328
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
70329
|
-
template: `
|
|
70386
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
70330
70387
|
<section id="section-metric-executive-summary" class="space-y-6 scroll-mt-24">
|
|
70331
70388
|
<!-- Metric Hero Banner -->
|
|
70332
70389
|
<div [ngClass]="bannerClasses()" class="rounded-2xl p-8 shadow-xl">
|
|
@@ -70427,7 +70484,7 @@ class MetricExecutiveSummaryComponent {
|
|
|
70427
70484
|
|
|
70428
70485
|
<!-- Pacing Status -->
|
|
70429
70486
|
@if (summary().pacingStatus) {
|
|
70430
|
-
<div [ngClass]="metricCardClasses()" class="rounded-xl p-4 transition-all duration-200 group-hover:scale-[1.02] group-hover:shadow-lg">
|
|
70487
|
+
<div [ngClass]="metricCardClasses()" [class.pulse-critical]="summary().pacingStatus === 'CRITICAL'" class="rounded-xl p-4 transition-all duration-200 group-hover:scale-[1.02] group-hover:shadow-lg">
|
|
70431
70488
|
<div class="flex items-center gap-2 mb-2">
|
|
70432
70489
|
<symphiq-icon
|
|
70433
70490
|
[icon]="{ name: 'arrow-trending-up', source: iconSource }"
|
|
@@ -70456,7 +70513,7 @@ class MetricExecutiveSummaryComponent {
|
|
|
70456
70513
|
|
|
70457
70514
|
<!-- Health Status -->
|
|
70458
70515
|
@if (summary().metricHealth) {
|
|
70459
|
-
<div [ngClass]="metricCardClasses()" class="rounded-xl p-4 transition-all duration-200 group-hover:scale-[1.02] group-hover:shadow-lg">
|
|
70516
|
+
<div [ngClass]="metricCardClasses()" [class.pulse-critical]="summary().metricHealth === 'CRITICAL'" class="rounded-xl p-4 transition-all duration-200 group-hover:scale-[1.02] group-hover:shadow-lg">
|
|
70460
70517
|
<div class="flex items-center gap-2 mb-2">
|
|
70461
70518
|
<symphiq-icon
|
|
70462
70519
|
[icon]="{ name: 'heart', source: iconSource }"
|
|
@@ -70651,10 +70708,9 @@ class MetricExecutiveSummaryComponent {
|
|
|
70651
70708
|
</div>
|
|
70652
70709
|
</div>
|
|
70653
70710
|
</section>
|
|
70654
|
-
|
|
70655
|
-
}]
|
|
70711
|
+
`, styles: [".pulse-critical{animation:pulse-critical 2s ease-in-out infinite}@keyframes pulse-critical{0%,to{opacity:1}50%{opacity:.7}}\n"] }]
|
|
70656
70712
|
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], summary: [{ type: i0.Input, args: [{ isSignal: true, alias: "summary", required: true }] }], metricName: [{ type: i0.Input, args: [{ isSignal: true, alias: "metricName", required: false }] }], allGoals: [{ type: i0.Input, args: [{ isSignal: true, alias: "allGoals", required: false }] }], topPrioritiesClick: [{ type: i0.Output, args: ["topPrioritiesClick"] }], priorityDetailClick: [{ type: i0.Output, args: ["priorityDetailClick"] }], viewMetricDetailsClick: [{ type: i0.Output, args: ["viewMetricDetailsClick"] }], viewReportClick: [{ type: i0.Output, args: ["viewReportClick"] }] }); })();
|
|
70657
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(MetricExecutiveSummaryComponent, { className: "MetricExecutiveSummaryComponent", filePath: "lib/components/profile-analysis-shop-dashboard/metric-executive-summary.component.ts", lineNumber:
|
|
70713
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(MetricExecutiveSummaryComponent, { className: "MetricExecutiveSummaryComponent", filePath: "lib/components/profile-analysis-shop-dashboard/metric-executive-summary.component.ts", lineNumber: 358 }); })();
|
|
70658
70714
|
|
|
70659
70715
|
const _c0$t = a0 => ({ name: "chevron-right", source: a0 });
|
|
70660
70716
|
function GoalCardComponent_Conditional_13_Template(rf, ctx) { if (rf & 1) {
|
|
@@ -92755,7 +92811,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Template(rf,
|
|
|
92755
92811
|
} }
|
|
92756
92812
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
92757
92813
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
92758
|
-
i0.ɵɵelementStart(0, "div", 32)(1, "symphiq-profile-status-card",
|
|
92814
|
+
i0.ɵɵelementStart(0, "div", 32)(1, "symphiq-profile-status-card", 34, 0);
|
|
92759
92815
|
i0.ɵɵlistener("startCategoryQuestions", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_0_Template_symphiq_profile_status_card_startCategoryQuestions_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleStartCategoryQuestions($event)); })("answerSave", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_0_Template_symphiq_profile_status_card_answerSave_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleProfileQuestionAnswerSave($event)); })("adminAnswerAction", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_0_Template_symphiq_profile_status_card_adminAnswerAction_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.shopProfileAdminAnswerAction.emit($event)); });
|
|
92760
92816
|
i0.ɵɵelementEnd()();
|
|
92761
92817
|
} if (rf & 2) {
|
|
@@ -92764,7 +92820,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92764
92820
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("totalQuestions", ctx_r1.totalShopQuestions())("answeredQuestions", ctx_r1.answeredShopQuestions())("questions", ctx_r1.profileShopQuestions() || i0.ɵɵpureFunction0(10, _c2$2))("profileAnswers", ctx_r1.profileAnswers() || i0.ɵɵpureFunction0(11, _c2$2))("profileAnswerHistories", ctx_r1.profileAnswerHistories() || i0.ɵɵpureFunction0(12, _c2$2))("users", ctx_r1.users() || i0.ɵɵpureFunction0(13, _c2$2))("config", ctx_r1.shopProfileStatusCardConfig)("groupConfig", ctx_r1.shopProfileStatusCardGroupConfig)("currentUser", ctx_r1.currentUser());
|
|
92765
92821
|
} }
|
|
92766
92822
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
92767
|
-
i0.ɵɵelementStart(0, "div", 32)(1, "div",
|
|
92823
|
+
i0.ɵɵelementStart(0, "div", 32)(1, "div", 33);
|
|
92768
92824
|
i0.ɵɵelement(2, "symphiq-content-generation-progress", 35);
|
|
92769
92825
|
i0.ɵɵelementEnd()();
|
|
92770
92826
|
} if (rf & 2) {
|
|
@@ -92775,7 +92831,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92775
92831
|
i0.ɵɵproperty("itemStatus", ctx_r1.itemStatusProfileShop())("viewMode", ctx_r1.viewMode());
|
|
92776
92832
|
} }
|
|
92777
92833
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
92778
|
-
i0.ɵɵelementStart(0, "div",
|
|
92834
|
+
i0.ɵɵelementStart(0, "div", 33);
|
|
92779
92835
|
i0.ɵɵelement(1, "symphiq-content-generation-progress", 35);
|
|
92780
92836
|
i0.ɵɵelementEnd();
|
|
92781
92837
|
} if (rf & 2) {
|
|
@@ -92785,7 +92841,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92785
92841
|
i0.ɵɵproperty("itemStatus", ctx_r1.itemStatusProfileShop())("viewMode", ctx_r1.viewMode());
|
|
92786
92842
|
} }
|
|
92787
92843
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
92788
|
-
i0.ɵɵelementStart(0, "div",
|
|
92844
|
+
i0.ɵɵelementStart(0, "div", 33);
|
|
92789
92845
|
i0.ɵɵelement(1, "symphiq-content-generation-progress", 37);
|
|
92790
92846
|
i0.ɵɵelementEnd();
|
|
92791
92847
|
} if (rf & 2) {
|
|
@@ -92805,7 +92861,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92805
92861
|
} }
|
|
92806
92862
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
92807
92863
|
i0.ɵɵelementStart(0, "div", 32);
|
|
92808
|
-
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_1_Template, 2, 3, "div",
|
|
92864
|
+
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_1_Template, 2, 3, "div", 33)(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_2_Template, 2, 4, "div", 33)(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_3_Template, 1, 2, "symphiq-strategic-goals-tiled-grid", 36);
|
|
92809
92865
|
i0.ɵɵelementEnd();
|
|
92810
92866
|
} if (rf & 2) {
|
|
92811
92867
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -92878,12 +92934,60 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92878
92934
|
i0.ɵɵadvance();
|
|
92879
92935
|
i0.ɵɵproperty("sections", ctx_r1.nonStrategicSections())("viewMode", ctx_r1.viewMode())("executiveSummary", ctx_r1.executiveSummary())("metricExecutiveSummary", ctx_r1.metricExecutiveSummary())("metricName", ctx_r1.metricName())("allGoals", ctx_r1.allGoals())("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("allInsights", ctx_r1.allInsights())("businessProfile", ctx_r1.profile());
|
|
92880
92936
|
} }
|
|
92937
|
+
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
92938
|
+
const _r8 = i0.ɵɵgetCurrentView();
|
|
92939
|
+
i0.ɵɵelementStart(0, "div", 33)(1, "button", 46);
|
|
92940
|
+
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.toggleShopProfileCard()); });
|
|
92941
|
+
i0.ɵɵelementStart(2, "div", 47)(3, "div", 48);
|
|
92942
|
+
i0.ɵɵnamespaceSVG();
|
|
92943
|
+
i0.ɵɵelementStart(4, "svg", 49);
|
|
92944
|
+
i0.ɵɵelement(5, "path", 50);
|
|
92945
|
+
i0.ɵɵelementEnd()();
|
|
92946
|
+
i0.ɵɵnamespaceHTML();
|
|
92947
|
+
i0.ɵɵelementStart(6, "div")(7, "h2", 51);
|
|
92948
|
+
i0.ɵɵtext(8, " Shop Profile ");
|
|
92949
|
+
i0.ɵɵelementEnd();
|
|
92950
|
+
i0.ɵɵelementStart(9, "p", 52);
|
|
92951
|
+
i0.ɵɵtext(10);
|
|
92952
|
+
i0.ɵɵelementEnd()()();
|
|
92953
|
+
i0.ɵɵnamespaceSVG();
|
|
92954
|
+
i0.ɵɵelementStart(11, "svg", 53);
|
|
92955
|
+
i0.ɵɵelement(12, "path", 54);
|
|
92956
|
+
i0.ɵɵelementEnd()();
|
|
92957
|
+
i0.ɵɵnamespaceHTML();
|
|
92958
|
+
i0.ɵɵelementStart(13, "div", 55)(14, "div", 56)(15, "div", 57)(16, "symphiq-profile-status-card", 34);
|
|
92959
|
+
i0.ɵɵlistener("startCategoryQuestions", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template_symphiq_profile_status_card_startCategoryQuestions_16_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleStartCategoryQuestions($event)); })("answerSave", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template_symphiq_profile_status_card_answerSave_16_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleProfileQuestionAnswerSave($event)); })("adminAnswerAction", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template_symphiq_profile_status_card_adminAnswerAction_16_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.shopProfileAdminAnswerAction.emit($event)); });
|
|
92960
|
+
i0.ɵɵelementEnd()()()()();
|
|
92961
|
+
} if (rf & 2) {
|
|
92962
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
92963
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardContainerClasses());
|
|
92964
|
+
i0.ɵɵadvance();
|
|
92965
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardHeaderClasses());
|
|
92966
|
+
i0.ɵɵadvance(2);
|
|
92967
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardIconClasses());
|
|
92968
|
+
i0.ɵɵadvance(4);
|
|
92969
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardTitleClasses());
|
|
92970
|
+
i0.ɵɵadvance(2);
|
|
92971
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardSubtitleClasses());
|
|
92972
|
+
i0.ɵɵadvance();
|
|
92973
|
+
i0.ɵɵtextInterpolate2(" ", ctx_r1.answeredShopQuestions(), " of ", ctx_r1.totalShopQuestions(), " questions answered ");
|
|
92974
|
+
i0.ɵɵadvance();
|
|
92975
|
+
i0.ɵɵclassProp("rotate-180", ctx_r1.shopProfileCardExpanded());
|
|
92976
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardChevronClasses());
|
|
92977
|
+
i0.ɵɵadvance(2);
|
|
92978
|
+
i0.ɵɵstyleProp("grid-template-rows", ctx_r1.shopProfileCardExpanded() ? "1fr" : "0fr");
|
|
92979
|
+
i0.ɵɵadvance(2);
|
|
92980
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardContentClasses());
|
|
92981
|
+
i0.ɵɵadvance();
|
|
92982
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("totalQuestions", ctx_r1.totalShopQuestions())("answeredQuestions", ctx_r1.answeredShopQuestions())("questions", ctx_r1.profileShopQuestions() || i0.ɵɵpureFunction0(23, _c2$2))("profileAnswers", ctx_r1.profileAnswers() || i0.ɵɵpureFunction0(24, _c2$2))("profileAnswerHistories", ctx_r1.profileAnswerHistories() || i0.ɵɵpureFunction0(25, _c2$2))("users", ctx_r1.users() || i0.ɵɵpureFunction0(26, _c2$2))("config", ctx_r1.shopProfilePostAnalysisCardConfig)("groupConfig", ctx_r1.shopProfileStatusCardGroupConfig)("currentUser", ctx_r1.currentUser());
|
|
92983
|
+
} }
|
|
92881
92984
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
92882
92985
|
i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_0_Template, 3, 14, "div", 32);
|
|
92883
92986
|
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_1_Template, 3, 3, "div", 32);
|
|
92884
92987
|
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Template, 4, 1, "div", 32);
|
|
92885
92988
|
i0.ɵɵconditionalCreate(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Template, 4, 1, "div", 32);
|
|
92886
92989
|
i0.ɵɵconditionalCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_4_Template, 2, 10, "div");
|
|
92990
|
+
i0.ɵɵconditionalCreate(5, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template, 17, 27, "div", 33);
|
|
92887
92991
|
} if (rf & 2) {
|
|
92888
92992
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
92889
92993
|
i0.ɵɵconditional(ctx_r1.shouldShowShopProfileStatus() && !ctx_r1.isMetricAnalysis() && !ctx_r1.profileAnalysis() ? 0 : -1);
|
|
@@ -92894,127 +92998,129 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Template(rf,
|
|
|
92894
92998
|
i0.ɵɵadvance();
|
|
92895
92999
|
i0.ɵɵconditional(!ctx_r1.isSubscriptionActive() && !ctx_r1.isMetricAnalysis() ? 3 : -1);
|
|
92896
93000
|
i0.ɵɵadvance();
|
|
92897
|
-
i0.ɵɵconditional(ctx_r1.nonStrategicSections().length > 0 ? 4 : -1);
|
|
93001
|
+
i0.ɵɵconditional(ctx_r1.nonStrategicSections().length > 0 && !ctx_r1.isLoading() ? 4 : -1);
|
|
93002
|
+
i0.ɵɵadvance();
|
|
93003
|
+
i0.ɵɵconditional(ctx_r1.shouldShowPostAnalysisShopProfile() ? 5 : -1);
|
|
92898
93004
|
} }
|
|
92899
93005
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
92900
|
-
i0.ɵɵelement(0, "symphiq-grade-badge",
|
|
93006
|
+
i0.ɵɵelement(0, "symphiq-grade-badge", 67);
|
|
92901
93007
|
} if (rf & 2) {
|
|
92902
|
-
const
|
|
93008
|
+
const summary_r10 = i0.ɵɵnextContext();
|
|
92903
93009
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
92904
|
-
i0.ɵɵproperty("grade",
|
|
93010
|
+
i0.ɵɵproperty("grade", summary_r10.overallGrade)("gradeRationale", summary_r10.gradeRationale || "")("viewMode", ctx_r1.viewMode());
|
|
92905
93011
|
} }
|
|
92906
93012
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
92907
|
-
i0.ɵɵelementStart(0, "div",
|
|
92908
|
-
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder",
|
|
93013
|
+
i0.ɵɵelementStart(0, "div", 80);
|
|
93014
|
+
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 83);
|
|
92909
93015
|
i0.ɵɵelementEnd();
|
|
92910
93016
|
} if (rf & 2) {
|
|
92911
|
-
const
|
|
93017
|
+
const summary_r10 = i0.ɵɵnextContext(2);
|
|
92912
93018
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
92913
93019
|
i0.ɵɵadvance();
|
|
92914
|
-
i0.ɵɵproperty("visual",
|
|
93020
|
+
i0.ɵɵproperty("visual", summary_r10.napkinVisual)("viewMode", ctx_r1.viewMode());
|
|
92915
93021
|
} }
|
|
92916
93022
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
92917
|
-
i0.ɵɵelementStart(0, "div",
|
|
93023
|
+
i0.ɵɵelementStart(0, "div", 68)(1, "h3", 78);
|
|
92918
93024
|
i0.ɵɵtext(2, " Analysis Narrative ");
|
|
92919
93025
|
i0.ɵɵelementEnd();
|
|
92920
|
-
i0.ɵɵelementStart(3, "div",
|
|
92921
|
-
i0.ɵɵconditionalCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Conditional_4_Template, 2, 2, "div",
|
|
92922
|
-
i0.ɵɵelementStart(5, "p",
|
|
93026
|
+
i0.ɵɵelementStart(3, "div", 79);
|
|
93027
|
+
i0.ɵɵconditionalCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Conditional_4_Template, 2, 2, "div", 80);
|
|
93028
|
+
i0.ɵɵelementStart(5, "p", 81);
|
|
92923
93029
|
i0.ɵɵtext(6);
|
|
92924
93030
|
i0.ɵɵelementEnd();
|
|
92925
|
-
i0.ɵɵelement(7, "div",
|
|
93031
|
+
i0.ɵɵelement(7, "div", 82);
|
|
92926
93032
|
i0.ɵɵelementEnd()();
|
|
92927
93033
|
} if (rf & 2) {
|
|
92928
|
-
const
|
|
93034
|
+
const summary_r10 = i0.ɵɵnextContext();
|
|
92929
93035
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
92930
93036
|
i0.ɵɵproperty("ngClass", ctx_r1.getNarrativeClasses());
|
|
92931
93037
|
i0.ɵɵadvance();
|
|
92932
93038
|
i0.ɵɵproperty("ngClass", ctx_r1.getSubheadingClasses());
|
|
92933
93039
|
i0.ɵɵadvance(3);
|
|
92934
|
-
i0.ɵɵconditional(
|
|
93040
|
+
i0.ɵɵconditional(summary_r10.napkinVisual && summary_r10.napkinVisual.enabled ? 4 : -1);
|
|
92935
93041
|
i0.ɵɵadvance();
|
|
92936
93042
|
i0.ɵɵproperty("ngClass", ctx_r1.getTextClasses());
|
|
92937
93043
|
i0.ɵɵadvance();
|
|
92938
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
93044
|
+
i0.ɵɵtextInterpolate1(" ", summary_r10.narrative, " ");
|
|
92939
93045
|
} }
|
|
92940
93046
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
92941
|
-
i0.ɵɵelementStart(0, "div",
|
|
93047
|
+
i0.ɵɵelementStart(0, "div", 92);
|
|
92942
93048
|
i0.ɵɵnamespaceSVG();
|
|
92943
|
-
i0.ɵɵelementStart(1, "svg",
|
|
92944
|
-
i0.ɵɵelement(2, "path",
|
|
93049
|
+
i0.ɵɵelementStart(1, "svg", 94);
|
|
93050
|
+
i0.ɵɵelement(2, "path", 95);
|
|
92945
93051
|
i0.ɵɵelementEnd();
|
|
92946
93052
|
i0.ɵɵnamespaceHTML();
|
|
92947
93053
|
i0.ɵɵelementStart(3, "span");
|
|
92948
93054
|
i0.ɵɵtext(4);
|
|
92949
93055
|
i0.ɵɵelementEnd()();
|
|
92950
93056
|
} if (rf & 2) {
|
|
92951
|
-
const
|
|
93057
|
+
const entry_r11 = i0.ɵɵnextContext().$implicit;
|
|
92952
93058
|
const ctx_r1 = i0.ɵɵnextContext(4);
|
|
92953
93059
|
i0.ɵɵproperty("ngClass", ctx_r1.getMetaTextClasses());
|
|
92954
93060
|
i0.ɵɵadvance(4);
|
|
92955
|
-
i0.ɵɵtextInterpolate(
|
|
93061
|
+
i0.ɵɵtextInterpolate(entry_r11.win.estimatedTimeframe);
|
|
92956
93062
|
} }
|
|
92957
93063
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_13_Template(rf, ctx) { if (rf & 1) {
|
|
92958
|
-
i0.ɵɵelementStart(0, "div",
|
|
93064
|
+
i0.ɵɵelementStart(0, "div", 93)(1, "h4", 96);
|
|
92959
93065
|
i0.ɵɵtext(2, " Related Goal ");
|
|
92960
93066
|
i0.ɵɵelementEnd();
|
|
92961
|
-
i0.ɵɵelement(3, "symphiq-related-goal-chips",
|
|
93067
|
+
i0.ɵɵelement(3, "symphiq-related-goal-chips", 97);
|
|
92962
93068
|
i0.ɵɵelementEnd();
|
|
92963
93069
|
} if (rf & 2) {
|
|
92964
|
-
const
|
|
93070
|
+
const entry_r11 = i0.ɵɵnextContext().$implicit;
|
|
92965
93071
|
const ctx_r1 = i0.ɵɵnextContext(4);
|
|
92966
93072
|
i0.ɵɵadvance();
|
|
92967
93073
|
i0.ɵɵproperty("ngClass", ctx_r1.getMetaTextClasses());
|
|
92968
93074
|
i0.ɵɵadvance(2);
|
|
92969
|
-
i0.ɵɵproperty("relatedGoalIds", i0.ɵɵpureFunction1(4, _c5,
|
|
93075
|
+
i0.ɵɵproperty("relatedGoalIds", i0.ɵɵpureFunction1(4, _c5, entry_r11.win.relatedGoalId))("allGoals", ctx_r1.allGoals())("viewMode", ctx_r1.viewMode());
|
|
92970
93076
|
} }
|
|
92971
93077
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Template(rf, ctx) { if (rf & 1) {
|
|
92972
|
-
i0.ɵɵelementStart(0, "div",
|
|
93078
|
+
i0.ɵɵelementStart(0, "div", 85)(1, "div", 86)(2, "div", 87)(3, "span", 88);
|
|
92973
93079
|
i0.ɵɵtext(4);
|
|
92974
93080
|
i0.ɵɵelementEnd();
|
|
92975
|
-
i0.ɵɵelementStart(5, "p",
|
|
93081
|
+
i0.ɵɵelementStart(5, "p", 89);
|
|
92976
93082
|
i0.ɵɵtext(6);
|
|
92977
93083
|
i0.ɵɵelementEnd()();
|
|
92978
|
-
i0.ɵɵelementStart(7, "div",
|
|
93084
|
+
i0.ɵɵelementStart(7, "div", 90)(8, "span", 91);
|
|
92979
93085
|
i0.ɵɵtext(9);
|
|
92980
93086
|
i0.ɵɵelementEnd();
|
|
92981
|
-
i0.ɵɵelementStart(10, "span",
|
|
93087
|
+
i0.ɵɵelementStart(10, "span", 91);
|
|
92982
93088
|
i0.ɵɵtext(11);
|
|
92983
93089
|
i0.ɵɵelementEnd()();
|
|
92984
|
-
i0.ɵɵconditionalCreate(12, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_12_Template, 5, 2, "div",
|
|
92985
|
-
i0.ɵɵconditionalCreate(13, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_13_Template, 4, 6, "div",
|
|
93090
|
+
i0.ɵɵconditionalCreate(12, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_12_Template, 5, 2, "div", 92);
|
|
93091
|
+
i0.ɵɵconditionalCreate(13, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_13_Template, 4, 6, "div", 93);
|
|
92986
93092
|
i0.ɵɵelementEnd()();
|
|
92987
93093
|
} if (rf & 2) {
|
|
92988
|
-
const
|
|
93094
|
+
const entry_r11 = ctx.$implicit;
|
|
92989
93095
|
const ctx_r1 = i0.ɵɵnextContext(4);
|
|
92990
93096
|
i0.ɵɵproperty("ngClass", ctx_r1.getQuickWinCardClasses());
|
|
92991
93097
|
i0.ɵɵadvance(3);
|
|
92992
93098
|
i0.ɵɵproperty("ngClass", ctx_r1.getNumberBadgeClasses());
|
|
92993
93099
|
i0.ɵɵadvance();
|
|
92994
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
93100
|
+
i0.ɵɵtextInterpolate1(" ", entry_r11.index, " ");
|
|
92995
93101
|
i0.ɵɵadvance();
|
|
92996
93102
|
i0.ɵɵproperty("ngClass", ctx_r1.getQuickWinTextClasses());
|
|
92997
93103
|
i0.ɵɵadvance();
|
|
92998
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
93104
|
+
i0.ɵɵtextInterpolate1(" ", entry_r11.win.action, " ");
|
|
92999
93105
|
i0.ɵɵadvance(2);
|
|
93000
|
-
i0.ɵɵproperty("ngClass",
|
|
93106
|
+
i0.ɵɵproperty("ngClass", entry_r11.effortBadgeClasses);
|
|
93001
93107
|
i0.ɵɵadvance();
|
|
93002
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
93108
|
+
i0.ɵɵtextInterpolate1(" ", entry_r11.effortLabel, " Effort ");
|
|
93003
93109
|
i0.ɵɵadvance();
|
|
93004
|
-
i0.ɵɵproperty("ngClass",
|
|
93110
|
+
i0.ɵɵproperty("ngClass", entry_r11.impactBadgeClasses);
|
|
93005
93111
|
i0.ɵɵadvance();
|
|
93006
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
93112
|
+
i0.ɵɵtextInterpolate1(" ", entry_r11.impactLabel, " Impact ");
|
|
93007
93113
|
i0.ɵɵadvance();
|
|
93008
|
-
i0.ɵɵconditional(
|
|
93114
|
+
i0.ɵɵconditional(entry_r11.win.estimatedTimeframe ? 12 : -1);
|
|
93009
93115
|
i0.ɵɵadvance();
|
|
93010
|
-
i0.ɵɵconditional(
|
|
93116
|
+
i0.ɵɵconditional(entry_r11.win.relatedGoalId ? 13 : -1);
|
|
93011
93117
|
} }
|
|
93012
93118
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_Template(rf, ctx) { if (rf & 1) {
|
|
93013
|
-
i0.ɵɵelementStart(0, "div",
|
|
93119
|
+
i0.ɵɵelementStart(0, "div", 77)(1, "h3", 51);
|
|
93014
93120
|
i0.ɵɵtext(2, " Quick Wins ");
|
|
93015
93121
|
i0.ɵɵelementEnd();
|
|
93016
|
-
i0.ɵɵelementStart(3, "div",
|
|
93017
|
-
i0.ɵɵrepeaterCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Template, 14, 11, "div",
|
|
93122
|
+
i0.ɵɵelementStart(3, "div", 84);
|
|
93123
|
+
i0.ɵɵrepeaterCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Template, 14, 11, "div", 85, _forTrack0$8);
|
|
93018
93124
|
i0.ɵɵelementEnd()();
|
|
93019
93125
|
} if (rf & 2) {
|
|
93020
93126
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
@@ -93024,59 +93130,59 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93024
93130
|
i0.ɵɵrepeater(ctx_r1.quickWinsDisplay());
|
|
93025
93131
|
} }
|
|
93026
93132
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
93027
|
-
const
|
|
93028
|
-
i0.ɵɵelementStart(0, "section",
|
|
93133
|
+
const _r9 = i0.ɵɵgetCurrentView();
|
|
93134
|
+
i0.ɵɵelementStart(0, "section", 58)(1, "div", 61)(2, "div", 62)(3, "div", 63)(4, "div", 64)(5, "h2", 65);
|
|
93029
93135
|
i0.ɵɵtext(6, " Executive Summary ");
|
|
93030
93136
|
i0.ɵɵelementEnd();
|
|
93031
|
-
i0.ɵɵelementStart(7, "p",
|
|
93137
|
+
i0.ɵɵelementStart(7, "p", 66);
|
|
93032
93138
|
i0.ɵɵtext(8);
|
|
93033
93139
|
i0.ɵɵelementEnd()();
|
|
93034
|
-
i0.ɵɵconditionalCreate(9, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_9_Template, 1, 3, "symphiq-grade-badge",
|
|
93140
|
+
i0.ɵɵconditionalCreate(9, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_9_Template, 1, 3, "symphiq-grade-badge", 67);
|
|
93035
93141
|
i0.ɵɵelementEnd();
|
|
93036
|
-
i0.ɵɵconditionalCreate(10, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Template, 8, 5, "div",
|
|
93037
|
-
i0.ɵɵelementStart(11, "div",
|
|
93038
|
-
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template_button_click_12_listener() { const
|
|
93039
|
-
i0.ɵɵelementStart(13, "div",
|
|
93142
|
+
i0.ɵɵconditionalCreate(10, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Template, 8, 5, "div", 68);
|
|
93143
|
+
i0.ɵɵelementStart(11, "div", 69)(12, "button", 70);
|
|
93144
|
+
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template_button_click_12_listener() { const summary_r10 = i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onKeyStrengthsClick(summary_r10)); });
|
|
93145
|
+
i0.ɵɵelementStart(13, "div", 71);
|
|
93040
93146
|
i0.ɵɵtext(14, " Key Strengths ");
|
|
93041
93147
|
i0.ɵɵelementEnd();
|
|
93042
|
-
i0.ɵɵelementStart(15, "div",
|
|
93148
|
+
i0.ɵɵelementStart(15, "div", 72);
|
|
93043
93149
|
i0.ɵɵtext(16);
|
|
93044
93150
|
i0.ɵɵelementEnd();
|
|
93045
|
-
i0.ɵɵelementStart(17, "div",
|
|
93151
|
+
i0.ɵɵelementStart(17, "div", 73)(18, "span", 74);
|
|
93046
93152
|
i0.ɵɵtext(19, "View Details");
|
|
93047
93153
|
i0.ɵɵelementEnd();
|
|
93048
|
-
i0.ɵɵelement(20, "symphiq-icon",
|
|
93154
|
+
i0.ɵɵelement(20, "symphiq-icon", 75);
|
|
93049
93155
|
i0.ɵɵelementEnd()();
|
|
93050
|
-
i0.ɵɵelementStart(21, "button",
|
|
93051
|
-
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template_button_click_21_listener() { const
|
|
93052
|
-
i0.ɵɵelementStart(22, "div",
|
|
93156
|
+
i0.ɵɵelementStart(21, "button", 70);
|
|
93157
|
+
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template_button_click_21_listener() { const summary_r10 = i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onCriticalGapsClick(summary_r10)); });
|
|
93158
|
+
i0.ɵɵelementStart(22, "div", 71);
|
|
93053
93159
|
i0.ɵɵtext(23, " Critical Gaps ");
|
|
93054
93160
|
i0.ɵɵelementEnd();
|
|
93055
|
-
i0.ɵɵelementStart(24, "div",
|
|
93161
|
+
i0.ɵɵelementStart(24, "div", 72);
|
|
93056
93162
|
i0.ɵɵtext(25);
|
|
93057
93163
|
i0.ɵɵelementEnd();
|
|
93058
|
-
i0.ɵɵelementStart(26, "div",
|
|
93164
|
+
i0.ɵɵelementStart(26, "div", 73)(27, "span", 74);
|
|
93059
93165
|
i0.ɵɵtext(28, "View Details");
|
|
93060
93166
|
i0.ɵɵelementEnd();
|
|
93061
|
-
i0.ɵɵelement(29, "symphiq-icon",
|
|
93167
|
+
i0.ɵɵelement(29, "symphiq-icon", 75);
|
|
93062
93168
|
i0.ɵɵelementEnd()();
|
|
93063
|
-
i0.ɵɵelementStart(30, "button",
|
|
93064
|
-
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template_button_click_30_listener() { i0.ɵɵrestoreView(
|
|
93065
|
-
i0.ɵɵelementStart(31, "div",
|
|
93169
|
+
i0.ɵɵelementStart(30, "button", 70);
|
|
93170
|
+
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template_button_click_30_listener() { i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.scrollToQuickWins()); });
|
|
93171
|
+
i0.ɵɵelementStart(31, "div", 71);
|
|
93066
93172
|
i0.ɵɵtext(32, " Quick Wins ");
|
|
93067
93173
|
i0.ɵɵelementEnd();
|
|
93068
|
-
i0.ɵɵelementStart(33, "div",
|
|
93174
|
+
i0.ɵɵelementStart(33, "div", 72);
|
|
93069
93175
|
i0.ɵɵtext(34);
|
|
93070
93176
|
i0.ɵɵelementEnd();
|
|
93071
|
-
i0.ɵɵelementStart(35, "div",
|
|
93177
|
+
i0.ɵɵelementStart(35, "div", 73)(36, "span", 74);
|
|
93072
93178
|
i0.ɵɵtext(37, "Details Below");
|
|
93073
93179
|
i0.ɵɵelementEnd();
|
|
93074
|
-
i0.ɵɵelement(38, "symphiq-icon",
|
|
93180
|
+
i0.ɵɵelement(38, "symphiq-icon", 76);
|
|
93075
93181
|
i0.ɵɵelementEnd()()()()();
|
|
93076
|
-
i0.ɵɵconditionalCreate(39, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_Template, 6, 1, "div",
|
|
93182
|
+
i0.ɵɵconditionalCreate(39, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_Template, 6, 1, "div", 77);
|
|
93077
93183
|
i0.ɵɵelementEnd();
|
|
93078
93184
|
} if (rf & 2) {
|
|
93079
|
-
const
|
|
93185
|
+
const summary_r10 = ctx;
|
|
93080
93186
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
93081
93187
|
i0.ɵɵadvance();
|
|
93082
93188
|
i0.ɵɵproperty("ngClass", ctx_r1.getBannerClasses());
|
|
@@ -93085,11 +93191,11 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93085
93191
|
i0.ɵɵadvance(2);
|
|
93086
93192
|
i0.ɵɵproperty("ngClass", ctx_r1.getTextClasses());
|
|
93087
93193
|
i0.ɵɵadvance();
|
|
93088
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
93194
|
+
i0.ɵɵtextInterpolate1(" ", summary_r10.gradeRationale, " ");
|
|
93089
93195
|
i0.ɵɵadvance();
|
|
93090
|
-
i0.ɵɵconditional(
|
|
93196
|
+
i0.ɵɵconditional(summary_r10.overallGrade ? 9 : -1);
|
|
93091
93197
|
i0.ɵɵadvance();
|
|
93092
|
-
i0.ɵɵconditional(
|
|
93198
|
+
i0.ɵɵconditional(summary_r10.narrative ? 10 : -1);
|
|
93093
93199
|
i0.ɵɵadvance(2);
|
|
93094
93200
|
i0.ɵɵproperty("ngClass", ctx_r1.getKeyStrengthsStatCardClasses());
|
|
93095
93201
|
i0.ɵɵadvance();
|
|
@@ -93097,7 +93203,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93097
93203
|
i0.ɵɵadvance(2);
|
|
93098
93204
|
i0.ɵɵproperty("ngClass", ctx_r1.getKeyStrengthsStatValueClasses());
|
|
93099
93205
|
i0.ɵɵadvance();
|
|
93100
|
-
i0.ɵɵtextInterpolate1(" ", (
|
|
93206
|
+
i0.ɵɵtextInterpolate1(" ", (summary_r10.keyStrengths == null ? null : summary_r10.keyStrengths.length) || 0, " ");
|
|
93101
93207
|
i0.ɵɵadvance(2);
|
|
93102
93208
|
i0.ɵɵproperty("ngClass", ctx_r1.getKeyStrengthsButtonTextClasses());
|
|
93103
93209
|
i0.ɵɵadvance(2);
|
|
@@ -93109,7 +93215,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93109
93215
|
i0.ɵɵadvance(2);
|
|
93110
93216
|
i0.ɵɵproperty("ngClass", ctx_r1.getCriticalGapsStatValueClasses());
|
|
93111
93217
|
i0.ɵɵadvance();
|
|
93112
|
-
i0.ɵɵtextInterpolate1(" ", (
|
|
93218
|
+
i0.ɵɵtextInterpolate1(" ", (summary_r10.criticalGaps == null ? null : summary_r10.criticalGaps.length) || 0, " ");
|
|
93113
93219
|
i0.ɵɵadvance(2);
|
|
93114
93220
|
i0.ɵɵproperty("ngClass", ctx_r1.getCriticalGapsButtonTextClasses());
|
|
93115
93221
|
i0.ɵɵadvance(2);
|
|
@@ -93121,7 +93227,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93121
93227
|
i0.ɵɵadvance(2);
|
|
93122
93228
|
i0.ɵɵproperty("ngClass", ctx_r1.getQuickWinsStatValueClasses());
|
|
93123
93229
|
i0.ɵɵadvance();
|
|
93124
|
-
i0.ɵɵtextInterpolate1(" ", (
|
|
93230
|
+
i0.ɵɵtextInterpolate1(" ", (summary_r10.quickWins == null ? null : summary_r10.quickWins.length) || 0, " ");
|
|
93125
93231
|
i0.ɵɵadvance(2);
|
|
93126
93232
|
i0.ɵɵproperty("ngClass", ctx_r1.getQuickWinsButtonTextClasses());
|
|
93127
93233
|
i0.ɵɵadvance(2);
|
|
@@ -93130,115 +93236,115 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93130
93236
|
i0.ɵɵconditional(ctx_r1.quickWinsDisplay().length > 0 ? 39 : -1);
|
|
93131
93237
|
} }
|
|
93132
93238
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
93133
|
-
const
|
|
93134
|
-
i0.ɵɵelementStart(0, "symphiq-metric-executive-summary",
|
|
93135
|
-
i0.ɵɵlistener("topPrioritiesClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template_symphiq_metric_executive_summary_topPrioritiesClick_0_listener() { i0.ɵɵrestoreView(
|
|
93239
|
+
const _r12 = i0.ɵɵgetCurrentView();
|
|
93240
|
+
i0.ɵɵelementStart(0, "symphiq-metric-executive-summary", 98);
|
|
93241
|
+
i0.ɵɵlistener("topPrioritiesClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template_symphiq_metric_executive_summary_topPrioritiesClick_0_listener() { i0.ɵɵrestoreView(_r12); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleMetricTopPrioritiesClick()); })("priorityDetailClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template_symphiq_metric_executive_summary_priorityDetailClick_0_listener($event) { i0.ɵɵrestoreView(_r12); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleMetricPriorityDetailClick($event)); })("viewMetricDetailsClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template_symphiq_metric_executive_summary_viewMetricDetailsClick_0_listener() { i0.ɵɵrestoreView(_r12); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleMetricViewDetailsClick()); });
|
|
93136
93242
|
i0.ɵɵelementEnd();
|
|
93137
93243
|
} if (rf & 2) {
|
|
93138
93244
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
93139
93245
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("summary", ctx)("metricName", ctx_r1.metricName())("allGoals", ctx_r1.allGoals());
|
|
93140
93246
|
} }
|
|
93141
93247
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
93142
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
93248
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 99);
|
|
93143
93249
|
} if (rf & 2) {
|
|
93144
|
-
const
|
|
93250
|
+
const sectionList_r13 = i0.ɵɵnextContext();
|
|
93145
93251
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
93146
|
-
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon",
|
|
93252
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r13[0].icon);
|
|
93147
93253
|
} }
|
|
93148
93254
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
93149
|
-
i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Template, 1, 2, "symphiq-section-divider",
|
|
93255
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Template, 1, 2, "symphiq-section-divider", 99);
|
|
93150
93256
|
} if (rf & 2) {
|
|
93151
|
-
const
|
|
93152
|
-
i0.ɵɵconditional(
|
|
93257
|
+
const sectionList_r13 = ctx;
|
|
93258
|
+
i0.ɵɵconditional(sectionList_r13.length > 0 && sectionList_r13[0].icon ? 0 : -1);
|
|
93153
93259
|
} }
|
|
93154
93260
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
93155
|
-
i0.ɵɵelementStart(0, "div",
|
|
93156
|
-
i0.ɵɵelement(1, "symphiq-icon",
|
|
93261
|
+
i0.ɵɵelementStart(0, "div", 102);
|
|
93262
|
+
i0.ɵɵelement(1, "symphiq-icon", 106);
|
|
93157
93263
|
i0.ɵɵelementEnd();
|
|
93158
93264
|
} if (rf & 2) {
|
|
93159
|
-
const
|
|
93265
|
+
const section_r14 = i0.ɵɵnextContext().$implicit;
|
|
93160
93266
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
93161
93267
|
i0.ɵɵproperty("ngClass", ctx_r1.getSectionIconClasses());
|
|
93162
93268
|
i0.ɵɵadvance();
|
|
93163
|
-
i0.ɵɵproperty("icon",
|
|
93269
|
+
i0.ɵɵproperty("icon", section_r14.icon);
|
|
93164
93270
|
} }
|
|
93165
93271
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
93166
|
-
i0.ɵɵelementStart(0, "div",
|
|
93167
|
-
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder",
|
|
93272
|
+
i0.ɵɵelementStart(0, "div", 108);
|
|
93273
|
+
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 83);
|
|
93168
93274
|
i0.ɵɵelementEnd();
|
|
93169
93275
|
} if (rf & 2) {
|
|
93170
|
-
const
|
|
93276
|
+
const section_r14 = i0.ɵɵnextContext(2).$implicit;
|
|
93171
93277
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
93172
93278
|
i0.ɵɵadvance();
|
|
93173
|
-
i0.ɵɵproperty("visual",
|
|
93279
|
+
i0.ɵɵproperty("visual", section_r14.visual)("viewMode", ctx_r1.viewMode());
|
|
93174
93280
|
} }
|
|
93175
93281
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
93176
|
-
i0.ɵɵelementStart(0, "div",
|
|
93282
|
+
i0.ɵɵelementStart(0, "div", 110)(1, "p", 81);
|
|
93177
93283
|
i0.ɵɵtext(2);
|
|
93178
93284
|
i0.ɵɵelementEnd()();
|
|
93179
93285
|
} if (rf & 2) {
|
|
93180
|
-
const
|
|
93286
|
+
const section_r14 = i0.ɵɵnextContext(2).$implicit;
|
|
93181
93287
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
93182
|
-
i0.ɵɵclassProp("lg:w-1/3",
|
|
93288
|
+
i0.ɵɵclassProp("lg:w-1/3", section_r14.visual && section_r14.visual.enabled)("lg:w-full", !section_r14.visual || !section_r14.visual.enabled);
|
|
93183
93289
|
i0.ɵɵadvance();
|
|
93184
93290
|
i0.ɵɵproperty("ngClass", ctx_r1.getSectionDescriptionClasses());
|
|
93185
93291
|
i0.ɵɵadvance();
|
|
93186
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
93292
|
+
i0.ɵɵtextInterpolate1(" ", section_r14.description, " ");
|
|
93187
93293
|
} }
|
|
93188
93294
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
93189
|
-
i0.ɵɵelementStart(0, "div",
|
|
93190
|
-
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div",
|
|
93191
|
-
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div",
|
|
93295
|
+
i0.ɵɵelementStart(0, "div", 107);
|
|
93296
|
+
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div", 108);
|
|
93297
|
+
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div", 109);
|
|
93192
93298
|
i0.ɵɵelementEnd();
|
|
93193
93299
|
} if (rf & 2) {
|
|
93194
|
-
const
|
|
93195
|
-
const
|
|
93196
|
-
const ɵ$
|
|
93197
|
-
i0.ɵɵclassProp("lg:flex-row-reverse", ɵ$
|
|
93300
|
+
const ctx_r14 = i0.ɵɵnextContext();
|
|
93301
|
+
const section_r14 = ctx_r14.$implicit;
|
|
93302
|
+
const ɵ$index_261_r16 = ctx_r14.$index;
|
|
93303
|
+
i0.ɵɵclassProp("lg:flex-row-reverse", ɵ$index_261_r16 % 2 === 0);
|
|
93198
93304
|
i0.ɵɵadvance();
|
|
93199
|
-
i0.ɵɵconditional(
|
|
93305
|
+
i0.ɵɵconditional(section_r14.visual && section_r14.visual.enabled ? 1 : -1);
|
|
93200
93306
|
i0.ɵɵadvance();
|
|
93201
|
-
i0.ɵɵconditional(
|
|
93307
|
+
i0.ɵɵconditional(section_r14.description ? 2 : -1);
|
|
93202
93308
|
} }
|
|
93203
93309
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
93204
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
93310
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 99);
|
|
93205
93311
|
} if (rf & 2) {
|
|
93206
|
-
const ɵ$
|
|
93207
|
-
const
|
|
93312
|
+
const ɵ$index_261_r16 = i0.ɵɵnextContext().$index;
|
|
93313
|
+
const sectionList_r17 = i0.ɵɵnextContext();
|
|
93208
93314
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
93209
|
-
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon",
|
|
93315
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r17[ɵ$index_261_r16 + 1].icon);
|
|
93210
93316
|
} }
|
|
93211
93317
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
93212
|
-
i0.ɵɵelementStart(0, "div",
|
|
93213
|
-
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_2_Template, 2, 2, "div",
|
|
93214
|
-
i0.ɵɵelementStart(3, "div",
|
|
93318
|
+
i0.ɵɵelementStart(0, "div", 100)(1, "div", 101);
|
|
93319
|
+
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_2_Template, 2, 2, "div", 102);
|
|
93320
|
+
i0.ɵɵelementStart(3, "div", 64)(4, "h3", 103);
|
|
93215
93321
|
i0.ɵɵtext(5);
|
|
93216
93322
|
i0.ɵɵelementEnd()()();
|
|
93217
|
-
i0.ɵɵconditionalCreate(6, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Template, 3, 4, "div",
|
|
93218
|
-
i0.ɵɵelement(7, "symphiq-profile-section-content",
|
|
93323
|
+
i0.ɵɵconditionalCreate(6, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Template, 3, 4, "div", 104);
|
|
93324
|
+
i0.ɵɵelement(7, "symphiq-profile-section-content", 105);
|
|
93219
93325
|
i0.ɵɵelementEnd();
|
|
93220
|
-
i0.ɵɵconditionalCreate(8, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider",
|
|
93326
|
+
i0.ɵɵconditionalCreate(8, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider", 99);
|
|
93221
93327
|
} if (rf & 2) {
|
|
93222
|
-
const
|
|
93223
|
-
const ɵ$
|
|
93224
|
-
const ɵ$
|
|
93328
|
+
const section_r14 = ctx.$implicit;
|
|
93329
|
+
const ɵ$index_261_r16 = ctx.$index;
|
|
93330
|
+
const ɵ$count_261_r18 = ctx.$count;
|
|
93225
93331
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
93226
|
-
i0.ɵɵproperty("id", "section-" +
|
|
93332
|
+
i0.ɵɵproperty("id", "section-" + section_r14.id)("ngClass", ctx_r1.getSectionCardClasses());
|
|
93227
93333
|
i0.ɵɵadvance(2);
|
|
93228
|
-
i0.ɵɵconditional(
|
|
93334
|
+
i0.ɵɵconditional(section_r14.icon ? 2 : -1);
|
|
93229
93335
|
i0.ɵɵadvance(2);
|
|
93230
93336
|
i0.ɵɵproperty("ngClass", ctx_r1.getSectionTitleClasses());
|
|
93231
93337
|
i0.ɵɵadvance();
|
|
93232
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
93338
|
+
i0.ɵɵtextInterpolate1(" ", section_r14.title, " ");
|
|
93233
93339
|
i0.ɵɵadvance();
|
|
93234
|
-
i0.ɵɵconditional(
|
|
93340
|
+
i0.ɵɵconditional(section_r14.description || section_r14.visual && section_r14.visual.enabled ? 6 : -1);
|
|
93235
93341
|
i0.ɵɵadvance();
|
|
93236
|
-
i0.ɵɵproperty("section",
|
|
93342
|
+
i0.ɵɵproperty("section", section_r14)("executiveSummary", section_r14.id === "executive-summary" ? ctx_r1.executiveSummary() : undefined)("viewMode", ctx_r1.viewMode())("sectionIndex", ɵ$index_261_r16)("allGoals", ctx_r1.allGoals())("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("allInsights", ctx_r1.allInsights())("businessProfile", ctx_r1.profile());
|
|
93237
93343
|
i0.ɵɵadvance();
|
|
93238
|
-
i0.ɵɵconditional(!(ɵ$
|
|
93344
|
+
i0.ɵɵconditional(!(ɵ$index_261_r16 === ɵ$count_261_r18 - 1) ? 8 : -1);
|
|
93239
93345
|
} }
|
|
93240
93346
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
93241
|
-
i0.ɵɵelementStart(0, "section",
|
|
93347
|
+
i0.ɵɵelementStart(0, "section", 60);
|
|
93242
93348
|
i0.ɵɵrepeaterCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Template, 9, 16, null, null, _forTrack1$1);
|
|
93243
93349
|
i0.ɵɵelementEnd();
|
|
93244
93350
|
} if (rf & 2) {
|
|
@@ -93246,10 +93352,10 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93246
93352
|
i0.ɵɵrepeater(ctx);
|
|
93247
93353
|
} }
|
|
93248
93354
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
93249
|
-
i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template, 40, 34, "section",
|
|
93250
|
-
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template, 1, 4, "symphiq-metric-executive-summary",
|
|
93355
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template, 40, 34, "section", 58);
|
|
93356
|
+
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template, 1, 4, "symphiq-metric-executive-summary", 59);
|
|
93251
93357
|
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Template, 1, 1);
|
|
93252
|
-
i0.ɵɵconditionalCreate(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Template, 3, 0, "section",
|
|
93358
|
+
i0.ɵɵconditionalCreate(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Template, 3, 0, "section", 60);
|
|
93253
93359
|
} if (rf & 2) {
|
|
93254
93360
|
let tmp_1_0;
|
|
93255
93361
|
let tmp_2_0;
|
|
@@ -93279,88 +93385,88 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_11_Template(rf
|
|
|
93279
93385
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_15_Template(rf, ctx) { if (rf & 1) {
|
|
93280
93386
|
i0.ɵɵelement(0, "symphiq-goal-card", 13);
|
|
93281
93387
|
} if (rf & 2) {
|
|
93282
|
-
const
|
|
93388
|
+
const data_r19 = ctx;
|
|
93283
93389
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
93284
|
-
i0.ɵɵproperty("goal",
|
|
93390
|
+
i0.ɵɵproperty("goal", data_r19.goal)("viewMode", data_r19.viewMode)("isInModal", true)("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("allInsights", ctx_r1.allInsights())("currentModalState", ctx_r1.getCurrentModalState())("businessProfile", ctx_r1.profile());
|
|
93285
93391
|
} }
|
|
93286
93392
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_16_Template(rf, ctx) { if (rf & 1) {
|
|
93287
93393
|
i0.ɵɵelement(0, "symphiq-goal-objectives-modal-content", 14);
|
|
93288
93394
|
} if (rf & 2) {
|
|
93289
|
-
const
|
|
93290
|
-
i0.ɵɵproperty("goal",
|
|
93395
|
+
const data_r20 = ctx;
|
|
93396
|
+
i0.ɵɵproperty("goal", data_r20.goal)("viewMode", data_r20.viewMode);
|
|
93291
93397
|
} }
|
|
93292
93398
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_17_Template(rf, ctx) { if (rf & 1) {
|
|
93293
93399
|
i0.ɵɵelement(0, "symphiq-objective-strategies-modal-content", 15);
|
|
93294
93400
|
} if (rf & 2) {
|
|
93295
|
-
const
|
|
93296
|
-
i0.ɵɵproperty("objective",
|
|
93401
|
+
const data_r21 = ctx;
|
|
93402
|
+
i0.ɵɵproperty("objective", data_r21.objective)("goalTitle", data_r21.goalTitle)("viewMode", data_r21.viewMode);
|
|
93297
93403
|
} }
|
|
93298
93404
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_18_Template(rf, ctx) { if (rf & 1) {
|
|
93299
93405
|
i0.ɵɵelement(0, "symphiq-strategy-recommendations-modal-content", 16);
|
|
93300
93406
|
} if (rf & 2) {
|
|
93301
|
-
const
|
|
93407
|
+
const data_r22 = ctx;
|
|
93302
93408
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
93303
|
-
i0.ɵɵproperty("strategy",
|
|
93409
|
+
i0.ɵɵproperty("strategy", data_r22.strategy)("objectiveTitle", data_r22.objectiveTitle)("goalTitle", data_r22.goalTitle)("viewMode", data_r22.viewMode)("expandedRecommendationId", data_r22.expandedRecommendationId)("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("allInsights", ctx_r1.allInsights())("allBusinessInsights", ctx_r1.allBusinessInsights())("currentModalState", ctx_r1.getCurrentModalState());
|
|
93304
93410
|
} }
|
|
93305
93411
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_19_Template(rf, ctx) { if (rf & 1) {
|
|
93306
93412
|
i0.ɵɵelement(0, "symphiq-category-detail-modal-content", 17);
|
|
93307
93413
|
} if (rf & 2) {
|
|
93308
|
-
const
|
|
93309
|
-
i0.ɵɵproperty("category",
|
|
93414
|
+
const data_r23 = ctx;
|
|
93415
|
+
i0.ɵɵproperty("category", data_r23.category)("viewMode", data_r23.viewMode)("scrollToSection", data_r23.scrollToSection);
|
|
93310
93416
|
} }
|
|
93311
93417
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_20_Template(rf, ctx) { if (rf & 1) {
|
|
93312
93418
|
i0.ɵɵelement(0, "symphiq-strength-detail-modal-content", 18);
|
|
93313
93419
|
} if (rf & 2) {
|
|
93314
|
-
const
|
|
93420
|
+
const data_r24 = ctx;
|
|
93315
93421
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
93316
|
-
i0.ɵɵproperty("strength",
|
|
93422
|
+
i0.ɵɵproperty("strength", data_r24.strength)("viewMode", data_r24.viewMode)("allFunnelStrengths", ctx_r1.funnelStrengths())("currentModalState", ctx_r1.getCurrentModalState());
|
|
93317
93423
|
} }
|
|
93318
93424
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_21_Template(rf, ctx) { if (rf & 1) {
|
|
93319
93425
|
i0.ɵɵelement(0, "symphiq-gap-detail-modal-content", 19);
|
|
93320
93426
|
} if (rf & 2) {
|
|
93321
|
-
const
|
|
93427
|
+
const data_r25 = ctx;
|
|
93322
93428
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
93323
|
-
i0.ɵɵproperty("gap",
|
|
93429
|
+
i0.ɵɵproperty("gap", data_r25.gap)("viewMode", data_r25.viewMode)("allGoals", ctx_r1.allGoals())("allWeaknesses", ctx_r1.funnelWeaknesses())("currentModalState", ctx_r1.getCurrentModalState());
|
|
93324
93430
|
} }
|
|
93325
93431
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_22_Template(rf, ctx) { if (rf & 1) {
|
|
93326
93432
|
i0.ɵɵelement(0, "symphiq-opportunity-detail-modal-content", 20);
|
|
93327
93433
|
} if (rf & 2) {
|
|
93328
|
-
const
|
|
93434
|
+
const data_r26 = ctx;
|
|
93329
93435
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
93330
|
-
i0.ɵɵproperty("opportunity",
|
|
93436
|
+
i0.ɵɵproperty("opportunity", data_r26.opportunity)("viewMode", data_r26.viewMode)("allStrengths", ctx_r1.funnelStrengths())("currentModalState", ctx_r1.getCurrentModalState());
|
|
93331
93437
|
} }
|
|
93332
93438
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_26_Template(rf, ctx) { if (rf & 1) {
|
|
93333
|
-
const
|
|
93334
|
-
i0.ɵɵelementStart(0, "symphiq-sticky-subscription-continue-button",
|
|
93335
|
-
i0.ɵɵlistener("continueClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_26_Template_symphiq_sticky_subscription_continue_button_continueClick_0_listener() { i0.ɵɵrestoreView(
|
|
93439
|
+
const _r27 = i0.ɵɵgetCurrentView();
|
|
93440
|
+
i0.ɵɵelementStart(0, "symphiq-sticky-subscription-continue-button", 111);
|
|
93441
|
+
i0.ɵɵlistener("continueClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_26_Template_symphiq_sticky_subscription_continue_button_continueClick_0_listener() { i0.ɵɵrestoreView(_r27); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleStickyButtonClick()); });
|
|
93336
93442
|
i0.ɵɵelementEnd();
|
|
93337
93443
|
} if (rf & 2) {
|
|
93338
93444
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
93339
93445
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("isEnabled", ctx_r1.hasCurrencySelected())("isLoading", ctx_r1.isCurrencySelectionLoading());
|
|
93340
93446
|
} }
|
|
93341
93447
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template(rf, ctx) { if (rf & 1) {
|
|
93342
|
-
const
|
|
93343
|
-
i0.ɵɵelementStart(0, "symphiq-profile-sticky-footer",
|
|
93344
|
-
i0.ɵɵlistener("continueClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template_symphiq_profile_sticky_footer_continueClick_0_listener() { i0.ɵɵrestoreView(
|
|
93448
|
+
const _r28 = i0.ɵɵgetCurrentView();
|
|
93449
|
+
i0.ɵɵelementStart(0, "symphiq-profile-sticky-footer", 112);
|
|
93450
|
+
i0.ɵɵlistener("continueClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template_symphiq_profile_sticky_footer_continueClick_0_listener() { i0.ɵɵrestoreView(_r28); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleShopProfileContinueClick()); });
|
|
93345
93451
|
i0.ɵɵelementEnd();
|
|
93346
93452
|
} if (rf & 2) {
|
|
93347
93453
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
93348
93454
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("totalQuestions", ctx_r1.totalShopQuestions())("answeredQuestions", ctx_r1.answeredShopQuestions())("buttonConfig", ctx_r1.shopProfileStickyFooterButtonConfig);
|
|
93349
93455
|
} }
|
|
93350
93456
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template(rf, ctx) { if (rf & 1) {
|
|
93351
|
-
const
|
|
93352
|
-
i0.ɵɵelementStart(0, "div", 25)(1, "div",
|
|
93353
|
-
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template_button_click_3_listener() { i0.ɵɵrestoreView(
|
|
93457
|
+
const _r29 = i0.ɵɵgetCurrentView();
|
|
93458
|
+
i0.ɵɵelementStart(0, "div", 25)(1, "div", 113)(2, "div", 114)(3, "button", 115);
|
|
93459
|
+
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template_button_click_3_listener() { i0.ɵɵrestoreView(_r29); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleCancelCurrencyEdit()); });
|
|
93354
93460
|
i0.ɵɵtext(4, " Cancel ");
|
|
93355
93461
|
i0.ɵɵelementEnd();
|
|
93356
|
-
i0.ɵɵelementStart(5, "button",
|
|
93357
|
-
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template_button_click_5_listener() { i0.ɵɵrestoreView(
|
|
93462
|
+
i0.ɵɵelementStart(5, "button", 116);
|
|
93463
|
+
i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template_button_click_5_listener() { i0.ɵɵrestoreView(_r29); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleContinueToPlans()); });
|
|
93358
93464
|
i0.ɵɵelementStart(6, "span");
|
|
93359
93465
|
i0.ɵɵtext(7, "Continue to Plans");
|
|
93360
93466
|
i0.ɵɵelementEnd();
|
|
93361
93467
|
i0.ɵɵnamespaceSVG();
|
|
93362
|
-
i0.ɵɵelementStart(8, "svg",
|
|
93363
|
-
i0.ɵɵelement(9, "path",
|
|
93468
|
+
i0.ɵɵelementStart(8, "svg", 117);
|
|
93469
|
+
i0.ɵɵelement(9, "path", 118);
|
|
93364
93470
|
i0.ɵɵelementEnd()()()()();
|
|
93365
93471
|
} if (rf & 2) {
|
|
93366
93472
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -93387,6 +93493,16 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
93387
93493
|
showFocusAreaToggle: true,
|
|
93388
93494
|
showFocusAreaChips: false
|
|
93389
93495
|
};
|
|
93496
|
+
this.shopProfilePostAnalysisCardConfig = {
|
|
93497
|
+
title: 'Shop Profile',
|
|
93498
|
+
introTitle: '',
|
|
93499
|
+
introText: '',
|
|
93500
|
+
introTextMinimal: '',
|
|
93501
|
+
breadcrumbPrefix: 'Shop Profile'
|
|
93502
|
+
};
|
|
93503
|
+
this.SHOP_PROFILE_CARD_STORAGE_KEY = 'shop-profile-card-expanded';
|
|
93504
|
+
this.shopProfileCardExpanded = signal(false, ...(ngDevMode ? [{ debugName: "shopProfileCardExpanded" }] : []));
|
|
93505
|
+
this.shopProfileCardRouterSubscription = null;
|
|
93390
93506
|
this.shopProfileStickyFooterButtonConfig = {
|
|
93391
93507
|
startText: 'Start Answering Questions',
|
|
93392
93508
|
continueText: 'Continue Answering Questions',
|
|
@@ -93517,6 +93633,14 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
93517
93633
|
this.shouldShowHeaderControls = computed(() => {
|
|
93518
93634
|
return !!this.profileAnalysis() && this.profileShop()?.selfContentStatus === AiDynamicContentStatusEnum.GENERATED;
|
|
93519
93635
|
}, ...(ngDevMode ? [{ debugName: "shouldShowHeaderControls" }] : []));
|
|
93636
|
+
this.shouldShowPostAnalysisShopProfile = computed(() => {
|
|
93637
|
+
const profileAnalysis = this.profileAnalysis();
|
|
93638
|
+
return this.isSimplifiedView() &&
|
|
93639
|
+
!this.isMetricAnalysis() &&
|
|
93640
|
+
!this.isLoading() &&
|
|
93641
|
+
!!profileAnalysis &&
|
|
93642
|
+
profileAnalysis.selfContentStatus === AiDynamicContentStatusEnum.GENERATED;
|
|
93643
|
+
}, ...(ngDevMode ? [{ debugName: "shouldShowPostAnalysisShopProfile" }] : []));
|
|
93520
93644
|
this.totalShopQuestions = computed(() => {
|
|
93521
93645
|
return this.profileShopQuestions()?.length || 0;
|
|
93522
93646
|
}, ...(ngDevMode ? [{ debugName: "totalShopQuestions" }] : []));
|
|
@@ -93607,6 +93731,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
93607
93731
|
this.viewModeService = inject(ViewModeService);
|
|
93608
93732
|
this.profileContextService = inject(ProfileContextService);
|
|
93609
93733
|
this.profileItemLookupService = inject(ProfileItemLookupService);
|
|
93734
|
+
this.router = inject(Router);
|
|
93610
93735
|
this.IconSourceEnum = IconSourceEnum;
|
|
93611
93736
|
this.scrollProgress = signal(0, ...(ngDevMode ? [{ debugName: "scrollProgress" }] : []));
|
|
93612
93737
|
this.currentDisplayMode = signal(DisplayModeEnum.SIMPLIFIED, ...(ngDevMode ? [{ debugName: "currentDisplayMode" }] : []));
|
|
@@ -93973,6 +94098,12 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
93973
94098
|
if (storedCurrency) {
|
|
93974
94099
|
this.selectedCurrency.set(storedCurrency);
|
|
93975
94100
|
}
|
|
94101
|
+
this.loadShopProfileCardExpandedState();
|
|
94102
|
+
this.shopProfileCardRouterSubscription = this.router.events
|
|
94103
|
+
.pipe(filter(event => event instanceof NavigationStart))
|
|
94104
|
+
.subscribe(() => {
|
|
94105
|
+
this.clearShopProfileCardExpandedState();
|
|
94106
|
+
});
|
|
93976
94107
|
// Initialize ProfileItemLookupService with business profile
|
|
93977
94108
|
// This enables competitor and focus area chip lookups in business insights
|
|
93978
94109
|
const profileToUse = this.profile();
|
|
@@ -94010,6 +94141,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94010
94141
|
ngOnDestroy() {
|
|
94011
94142
|
this.headerScrollService.resetState();
|
|
94012
94143
|
this.viewModeService.setViewMode('compact');
|
|
94144
|
+
this.shopProfileCardRouterSubscription?.unsubscribe();
|
|
94013
94145
|
}
|
|
94014
94146
|
openSearch() {
|
|
94015
94147
|
this.isSearchOpen.set(true);
|
|
@@ -94388,6 +94520,73 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94388
94520
|
this.shopProfileStatusCard.openAllQuestionsAnswerMode();
|
|
94389
94521
|
}
|
|
94390
94522
|
}
|
|
94523
|
+
toggleShopProfileCard() {
|
|
94524
|
+
this.shopProfileCardExpanded.update(v => !v);
|
|
94525
|
+
this.saveShopProfileCardExpandedState();
|
|
94526
|
+
}
|
|
94527
|
+
saveShopProfileCardExpandedState() {
|
|
94528
|
+
try {
|
|
94529
|
+
localStorage.setItem(this.SHOP_PROFILE_CARD_STORAGE_KEY, JSON.stringify(this.shopProfileCardExpanded()));
|
|
94530
|
+
}
|
|
94531
|
+
catch {
|
|
94532
|
+
}
|
|
94533
|
+
}
|
|
94534
|
+
loadShopProfileCardExpandedState() {
|
|
94535
|
+
try {
|
|
94536
|
+
const saved = localStorage.getItem(this.SHOP_PROFILE_CARD_STORAGE_KEY);
|
|
94537
|
+
if (saved) {
|
|
94538
|
+
this.shopProfileCardExpanded.set(JSON.parse(saved));
|
|
94539
|
+
}
|
|
94540
|
+
}
|
|
94541
|
+
catch {
|
|
94542
|
+
}
|
|
94543
|
+
}
|
|
94544
|
+
clearShopProfileCardExpandedState() {
|
|
94545
|
+
try {
|
|
94546
|
+
localStorage.removeItem(this.SHOP_PROFILE_CARD_STORAGE_KEY);
|
|
94547
|
+
}
|
|
94548
|
+
catch {
|
|
94549
|
+
}
|
|
94550
|
+
}
|
|
94551
|
+
getShopProfileCardContainerClasses() {
|
|
94552
|
+
return this.viewMode() === ViewModeEnum.DARK
|
|
94553
|
+
? 'bg-slate-800/40 border-slate-700/50'
|
|
94554
|
+
: 'bg-white border-slate-200';
|
|
94555
|
+
}
|
|
94556
|
+
getShopProfileCardHeaderClasses() {
|
|
94557
|
+
const isExpanded = this.shopProfileCardExpanded();
|
|
94558
|
+
if (this.viewMode() === ViewModeEnum.DARK) {
|
|
94559
|
+
return isExpanded ? 'bg-slate-800/60 hover:bg-slate-700/50' : 'hover:bg-slate-800/60';
|
|
94560
|
+
}
|
|
94561
|
+
return isExpanded ? 'bg-slate-50/50 hover:bg-slate-100/50' : 'hover:bg-slate-50/50';
|
|
94562
|
+
}
|
|
94563
|
+
getShopProfileCardIconClasses() {
|
|
94564
|
+
return this.viewMode() === ViewModeEnum.DARK
|
|
94565
|
+
? 'bg-blue-500/20 text-blue-400'
|
|
94566
|
+
: 'bg-blue-100 text-blue-600';
|
|
94567
|
+
}
|
|
94568
|
+
getShopProfileCardTitleClasses() {
|
|
94569
|
+
return this.viewMode() === ViewModeEnum.DARK
|
|
94570
|
+
? 'text-white'
|
|
94571
|
+
: 'text-slate-900';
|
|
94572
|
+
}
|
|
94573
|
+
getShopProfileCardSubtitleClasses() {
|
|
94574
|
+
return this.viewMode() === ViewModeEnum.DARK
|
|
94575
|
+
? 'text-slate-400'
|
|
94576
|
+
: 'text-slate-600';
|
|
94577
|
+
}
|
|
94578
|
+
getShopProfileCardChevronClasses() {
|
|
94579
|
+
const isExpanded = this.shopProfileCardExpanded();
|
|
94580
|
+
if (isExpanded) {
|
|
94581
|
+
return this.viewMode() === ViewModeEnum.DARK ? 'text-blue-400' : 'text-blue-600';
|
|
94582
|
+
}
|
|
94583
|
+
return this.viewMode() === ViewModeEnum.DARK ? 'text-slate-400' : 'text-slate-500';
|
|
94584
|
+
}
|
|
94585
|
+
getShopProfileCardContentClasses() {
|
|
94586
|
+
return this.viewMode() === ViewModeEnum.DARK
|
|
94587
|
+
? 'border-slate-700/50'
|
|
94588
|
+
: 'border-slate-200';
|
|
94589
|
+
}
|
|
94391
94590
|
static { this.ɵfac = function SymphiqProfileShopAnalysisDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqProfileShopAnalysisDashboardComponent)(); }; }
|
|
94392
94591
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqProfileShopAnalysisDashboardComponent, selectors: [["symphiq-profile-shop-analysis-dashboard"]], viewQuery: function SymphiqProfileShopAnalysisDashboardComponent_Query(rf, ctx) { if (rf & 1) {
|
|
94393
94592
|
i0.ɵɵviewQuery(ModalComponent, 5)(_c0$9, 5)(_c1$2, 5);
|
|
@@ -94398,7 +94597,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94398
94597
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.planSelectionContainer = _t.first);
|
|
94399
94598
|
} }, hostBindings: function SymphiqProfileShopAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
94400
94599
|
i0.ɵɵlistener("scroll", function SymphiqProfileShopAnalysisDashboardComponent_scroll_HostBindingHandler() { return ctx.onWindowScroll(); }, i0.ɵɵresolveWindow);
|
|
94401
|
-
} }, 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: 30, vars: 59, 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", "showControls", "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, "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, "goal", "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"], [1, "mb-12"], [3, "viewMode", "businessName", "isOnboarded", "analysisDate"], [3, "viewMode", "metricName", "isOnboarded", "analysisDate"], ["title", "Loading Your Shop Profile Analysis", "subtitle", "Please wait while we prepare your personalized insights...", "size", "large", 3, "viewMode", "backdropBlur"], [1, "mb-8"], [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, "flex-1"], [1, "text-2xl", "font-bold", "mb-3", 3, "ngClass"], [1, "text-lg", "leading-relaxed", 3, "ngClass"], [3, "grade", "gradeRationale", "viewMode"], [1, "rounded-xl", "p-6", 3, "ngClass"], [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"], ["id", "quick-wins-section", 1, "space-y-4", "scroll-mt-24"], [1, "text-lg", "font-semibold", "mb-3", 3, "ngClass"], [1, "relative"], [1, "mb-6", "lg:float-left", "lg:mr-6", "lg:mb-4", "lg:max-w-[66%]"], [1, "text-sm", "leading-relaxed", "whitespace-pre-line", 3, "ngClass"], [1, "clear-both"], [3, "visual", "viewMode"], [1, "text-xl", "font-bold", 3, "ngClass"], [1, "grid", "grid-cols-1", "lg:grid-cols-2", "gap-6"], [1, "rounded-xl", "p-6", "transition-all", "duration-300", 3, "ngClass"], [1, "space-y-4"], [1, "flex", "items-start", "gap-3"], [1, "flex-shrink-0", "w-8", "h-8", "rounded-full", "flex", "items-center", "justify-center", "text-sm", "font-bold", 3, "ngClass"], [1, "font-semibold", "leading-tight", "flex-1", 3, "ngClass"], [1, "flex", "flex-wrap", "gap-2"], [1, "px-3", "py-1", "rounded-full", "text-xs", "font-semibold", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "text-sm", 3, "ngClass"], [1, "space-y-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [3, "relatedGoalIds", "allGoals", "viewMode"], [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, "text-2xl", "font-bold", 3, "ngClass"], [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"], [1, "w-full"], [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) {
|
|
94600
|
+
} }, 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: 30, vars: 59, 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", "showControls", "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, "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, "goal", "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"], [1, "mb-12"], [3, "viewMode", "businessName", "isOnboarded", "analysisDate"], [3, "viewMode", "metricName", "isOnboarded", "analysisDate"], ["title", "Loading Your Shop Profile Analysis", "subtitle", "Please wait while we prepare your personalized insights...", "size", "large", 3, "viewMode", "backdropBlur"], [1, "mb-8"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], [3, "startCategoryQuestions", "answerSave", "adminAnswerAction", "viewMode", "totalQuestions", "answeredQuestions", "questions", "profileAnswers", "profileAnswerHistories", "users", "config", "groupConfig", "currentUser"], ["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"], ["type", "button", 1, "cursor-pointer", "w-full", "px-6", "py-5", "flex", "items-center", "justify-between", "gap-4", "text-left", "transition-colors", "duration-200", 3, "click", "ngClass"], [1, "flex", "items-center", "gap-3"], [1, "p-2.5", "rounded-lg", 3, "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", "M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01"], [1, "text-xl", "font-bold", 3, "ngClass"], [1, "text-sm", "mt-0.5", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "flex-shrink-0", "transition-transform", "duration-200", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 9l-7 7-7-7"], [1, "grid", "transition-[grid-template-rows]", "duration-300", "ease-in-out"], [1, "overflow-hidden"], [1, "border-t", 3, "ngClass"], ["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, "flex-1"], [1, "text-2xl", "font-bold", "mb-3", 3, "ngClass"], [1, "text-lg", "leading-relaxed", 3, "ngClass"], [3, "grade", "gradeRationale", "viewMode"], [1, "rounded-xl", "p-6", 3, "ngClass"], [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"], ["id", "quick-wins-section", 1, "space-y-4", "scroll-mt-24"], [1, "text-lg", "font-semibold", "mb-3", 3, "ngClass"], [1, "relative"], [1, "mb-6", "lg:float-left", "lg:mr-6", "lg:mb-4", "lg:max-w-[66%]"], [1, "text-sm", "leading-relaxed", "whitespace-pre-line", 3, "ngClass"], [1, "clear-both"], [3, "visual", "viewMode"], [1, "grid", "grid-cols-1", "lg:grid-cols-2", "gap-6"], [1, "rounded-xl", "p-6", "transition-all", "duration-300", 3, "ngClass"], [1, "space-y-4"], [1, "flex", "items-start", "gap-3"], [1, "flex-shrink-0", "w-8", "h-8", "rounded-full", "flex", "items-center", "justify-center", "text-sm", "font-bold", 3, "ngClass"], [1, "font-semibold", "leading-tight", "flex-1", 3, "ngClass"], [1, "flex", "flex-wrap", "gap-2"], [1, "px-3", "py-1", "rounded-full", "text-xs", "font-semibold", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "text-sm", 3, "ngClass"], [1, "space-y-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [3, "relatedGoalIds", "allGoals", "viewMode"], [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, "text-2xl", "font-bold", 3, "ngClass"], [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"], [1, "w-full"], [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) {
|
|
94402
94601
|
i0.ɵɵelementStart(0, "div", 2);
|
|
94403
94602
|
i0.ɵɵelement(1, "div", 3)(2, "symphiq-scroll-progress-bar", 4);
|
|
94404
94603
|
i0.ɵɵelementStart(3, "div", 5)(4, "symphiq-dashboard-header", 6);
|
|
@@ -94407,7 +94606,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94407
94606
|
i0.ɵɵconditionalCreate(5, SymphiqProfileShopAnalysisDashboardComponent_Conditional_5_Template, 1, 5, "symphiq-journey-progress-indicator", 7);
|
|
94408
94607
|
i0.ɵɵelementStart(6, "main", 8);
|
|
94409
94608
|
i0.ɵɵconditionalCreate(7, SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Template, 4, 3);
|
|
94410
|
-
i0.ɵɵconditionalCreate(8, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Template,
|
|
94609
|
+
i0.ɵɵconditionalCreate(8, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Template, 6, 6);
|
|
94411
94610
|
i0.ɵɵconditionalCreate(9, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Template, 4, 4);
|
|
94412
94611
|
i0.ɵɵelementEnd();
|
|
94413
94612
|
i0.ɵɵconditionalCreate(10, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Template, 1, 4, "symphiq-floating-toc", 9);
|
|
@@ -94714,7 +94913,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94714
94913
|
}
|
|
94715
94914
|
|
|
94716
94915
|
<!-- Supporting Business Context -->
|
|
94717
|
-
@if (nonStrategicSections().length > 0) {
|
|
94916
|
+
@if (nonStrategicSections().length > 0 && !isLoading()) {
|
|
94718
94917
|
<div>
|
|
94719
94918
|
<symphiq-collapsible-analysis-section-group
|
|
94720
94919
|
[sections]="nonStrategicSections()"
|
|
@@ -94730,6 +94929,66 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94730
94929
|
/>
|
|
94731
94930
|
</div>
|
|
94732
94931
|
}
|
|
94932
|
+
|
|
94933
|
+
<!-- Shop Profile (Post-Analysis) - Collapsible -->
|
|
94934
|
+
@if (shouldShowPostAnalysisShopProfile()) {
|
|
94935
|
+
<div [ngClass]="getShopProfileCardContainerClasses()" class="rounded-2xl border shadow-lg overflow-hidden">
|
|
94936
|
+
<button
|
|
94937
|
+
type="button"
|
|
94938
|
+
(click)="toggleShopProfileCard()"
|
|
94939
|
+
[ngClass]="getShopProfileCardHeaderClasses()"
|
|
94940
|
+
class="cursor-pointer w-full px-6 py-5 flex items-center justify-between gap-4 text-left transition-colors duration-200">
|
|
94941
|
+
<div class="flex items-center gap-3">
|
|
94942
|
+
<div [ngClass]="getShopProfileCardIconClasses()" class="p-2.5 rounded-lg">
|
|
94943
|
+
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
94944
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01"></path>
|
|
94945
|
+
</svg>
|
|
94946
|
+
</div>
|
|
94947
|
+
<div>
|
|
94948
|
+
<h2 [ngClass]="getShopProfileCardTitleClasses()" class="text-xl font-bold">
|
|
94949
|
+
Shop Profile
|
|
94950
|
+
</h2>
|
|
94951
|
+
<p [ngClass]="getShopProfileCardSubtitleClasses()" class="text-sm mt-0.5">
|
|
94952
|
+
{{ answeredShopQuestions() }} of {{ totalShopQuestions() }} questions answered
|
|
94953
|
+
</p>
|
|
94954
|
+
</div>
|
|
94955
|
+
</div>
|
|
94956
|
+
<svg
|
|
94957
|
+
[ngClass]="getShopProfileCardChevronClasses()"
|
|
94958
|
+
[class.rotate-180]="shopProfileCardExpanded()"
|
|
94959
|
+
class="w-5 h-5 flex-shrink-0 transition-transform duration-200"
|
|
94960
|
+
fill="none"
|
|
94961
|
+
stroke="currentColor"
|
|
94962
|
+
viewBox="0 0 24 24">
|
|
94963
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path>
|
|
94964
|
+
</svg>
|
|
94965
|
+
</button>
|
|
94966
|
+
|
|
94967
|
+
<div
|
|
94968
|
+
class="grid transition-[grid-template-rows] duration-300 ease-in-out"
|
|
94969
|
+
[style.grid-template-rows]="shopProfileCardExpanded() ? '1fr' : '0fr'">
|
|
94970
|
+
<div class="overflow-hidden">
|
|
94971
|
+
<div [ngClass]="getShopProfileCardContentClasses()" class="border-t">
|
|
94972
|
+
<symphiq-profile-status-card
|
|
94973
|
+
[viewMode]="viewMode()"
|
|
94974
|
+
[totalQuestions]="totalShopQuestions()"
|
|
94975
|
+
[answeredQuestions]="answeredShopQuestions()"
|
|
94976
|
+
[questions]="profileShopQuestions() || []"
|
|
94977
|
+
[profileAnswers]="profileAnswers() || []"
|
|
94978
|
+
[profileAnswerHistories]="profileAnswerHistories() || []"
|
|
94979
|
+
[users]="users() || []"
|
|
94980
|
+
[config]="shopProfilePostAnalysisCardConfig"
|
|
94981
|
+
[groupConfig]="shopProfileStatusCardGroupConfig"
|
|
94982
|
+
[currentUser]="currentUser()"
|
|
94983
|
+
(startCategoryQuestions)="handleStartCategoryQuestions($event)"
|
|
94984
|
+
(answerSave)="handleProfileQuestionAnswerSave($event)"
|
|
94985
|
+
(adminAnswerAction)="shopProfileAdminAnswerAction.emit($event)"
|
|
94986
|
+
/>
|
|
94987
|
+
</div>
|
|
94988
|
+
</div>
|
|
94989
|
+
</div>
|
|
94990
|
+
</div>
|
|
94991
|
+
}
|
|
94733
94992
|
}
|
|
94734
94993
|
|
|
94735
94994
|
<!-- Compact & Expanded View Content -->
|
|
@@ -95221,7 +95480,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
95221
95480
|
type: HostListener,
|
|
95222
95481
|
args: ['window:scroll']
|
|
95223
95482
|
}] }); })();
|
|
95224
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileShopAnalysisDashboardComponent, { className: "SymphiqProfileShopAnalysisDashboardComponent", filePath: "lib/components/profile-analysis-shop-dashboard/symphiq-profile-shop-analysis-dashboard.component.ts", lineNumber:
|
|
95483
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileShopAnalysisDashboardComponent, { className: "SymphiqProfileShopAnalysisDashboardComponent", filePath: "lib/components/profile-analysis-shop-dashboard/symphiq-profile-shop-analysis-dashboard.component.ts", lineNumber: 891 }); })();
|
|
95225
95484
|
|
|
95226
95485
|
function ProfileAnalysisStatusSummaryComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
95227
95486
|
i0.ɵɵelementStart(0, "div", 1)(1, "div", 3);
|
|
@@ -95646,6 +95905,131 @@ class ProfileAnalysisStatusSummaryComponent {
|
|
|
95646
95905
|
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], profileStatusCounts: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileStatusCounts", required: false }] }], analysisStatusCounts: [{ type: i0.Input, args: [{ isSignal: true, alias: "analysisStatusCounts", required: false }] }], allReviewed: [{ type: i0.Input, args: [{ isSignal: true, alias: "allReviewed", required: false }] }], hasItems: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasItems", required: false }] }], config: [{ type: i0.Input, args: [{ isSignal: true, alias: "config", required: false }] }] }); })();
|
|
95647
95906
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileAnalysisStatusSummaryComponent, { className: "ProfileAnalysisStatusSummaryComponent", filePath: "lib/components/shared/profile-analysis-status-summary.component.ts", lineNumber: 264 }); })();
|
|
95648
95907
|
|
|
95908
|
+
function ProfileProgressIndicatorComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
95909
|
+
i0.ɵɵdomElementStart(0, "div", 3);
|
|
95910
|
+
i0.ɵɵnamespaceSVG();
|
|
95911
|
+
i0.ɵɵdomElementStart(1, "svg", 6);
|
|
95912
|
+
i0.ɵɵdomElement(2, "path", 7);
|
|
95913
|
+
i0.ɵɵdomElementEnd();
|
|
95914
|
+
i0.ɵɵtext(3, " Complete ");
|
|
95915
|
+
i0.ɵɵdomElementEnd();
|
|
95916
|
+
} }
|
|
95917
|
+
function ProfileProgressIndicatorComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
95918
|
+
i0.ɵɵdomElementStart(0, "div", 4);
|
|
95919
|
+
i0.ɵɵnamespaceSVG();
|
|
95920
|
+
i0.ɵɵdomElementStart(1, "svg", 6);
|
|
95921
|
+
i0.ɵɵdomElement(2, "path", 8);
|
|
95922
|
+
i0.ɵɵdomElementEnd();
|
|
95923
|
+
i0.ɵɵtext(3, " In Progress ");
|
|
95924
|
+
i0.ɵɵdomElementEnd();
|
|
95925
|
+
} }
|
|
95926
|
+
function ProfileProgressIndicatorComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
95927
|
+
i0.ɵɵdomElementStart(0, "div", 5);
|
|
95928
|
+
i0.ɵɵnamespaceSVG();
|
|
95929
|
+
i0.ɵɵdomElementStart(1, "svg", 6);
|
|
95930
|
+
i0.ɵɵdomElement(2, "path", 9);
|
|
95931
|
+
i0.ɵɵdomElementEnd();
|
|
95932
|
+
i0.ɵɵtext(3, " Not Started ");
|
|
95933
|
+
i0.ɵɵdomElementEnd();
|
|
95934
|
+
} }
|
|
95935
|
+
class ProfileProgressIndicatorComponent {
|
|
95936
|
+
constructor() {
|
|
95937
|
+
this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
|
|
95938
|
+
this.questionsAnswered = input(0, ...(ngDevMode ? [{ debugName: "questionsAnswered" }] : []));
|
|
95939
|
+
this.totalQuestions = input(0, ...(ngDevMode ? [{ debugName: "totalQuestions" }] : []));
|
|
95940
|
+
this.progressPercent = input(0, ...(ngDevMode ? [{ debugName: "progressPercent" }] : []));
|
|
95941
|
+
this.status = input('not-started', ...(ngDevMode ? [{ debugName: "status" }] : []));
|
|
95942
|
+
this.label = input('Profile progress', ...(ngDevMode ? [{ debugName: "label" }] : []));
|
|
95943
|
+
this.isLightMode = computed(() => this.viewMode() === ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "isLightMode" }] : []));
|
|
95944
|
+
this.labelClasses = computed(() => 'text-slate-600 dark:text-slate-400', ...(ngDevMode ? [{ debugName: "labelClasses" }] : []));
|
|
95945
|
+
this.valueClasses = computed(() => 'font-semibold text-slate-900 dark:text-white', ...(ngDevMode ? [{ debugName: "valueClasses" }] : []));
|
|
95946
|
+
this.progressBarContainerClasses = computed(() => 'w-full bg-slate-200 dark:bg-slate-700 rounded-full h-2 overflow-hidden', ...(ngDevMode ? [{ debugName: "progressBarContainerClasses" }] : []));
|
|
95947
|
+
}
|
|
95948
|
+
static { this.ɵfac = function ProfileProgressIndicatorComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ProfileProgressIndicatorComponent)(); }; }
|
|
95949
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ProfileProgressIndicatorComponent, selectors: [["symphiq-profile-progress-indicator"]], inputs: { viewMode: [1, "viewMode"], questionsAnswered: [1, "questionsAnswered"], totalQuestions: [1, "totalQuestions"], progressPercent: [1, "progressPercent"], status: [1, "status"], label: [1, "label"] }, decls: 11, vars: 12, consts: [[1, "space-y-2"], [1, "flex", "items-center", "justify-between", "text-sm"], [1, "h-full", "bg-gradient-to-r", "from-blue-500", "to-cyan-500", "rounded-full", "transition-all", "duration-500"], [1, "flex", "items-center", "gap-1", "text-xs", "text-green-600", "dark:text-green-400", "font-medium"], [1, "flex", "items-center", "gap-1", "text-xs", "text-blue-600", "dark:text-blue-400", "font-medium"], [1, "flex", "items-center", "gap-1", "text-xs", "text-slate-500", "dark:text-slate-400", "font-medium"], ["fill", "currentColor", "viewBox", "0 0 20 20", 1, "w-4", "h-4"], ["fill-rule", "evenodd", "d", "M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z", "clip-rule", "evenodd"], ["fill-rule", "evenodd", "d", "M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z", "clip-rule", "evenodd"], ["fill-rule", "evenodd", "d", "M10 18a8 8 0 100-16 8 8 0 000 16zM9.555 7.168A1 1 0 008 8v4a1 1 0 001.555.832l3-2a1 1 0 000-1.664l-3-2z", "clip-rule", "evenodd"]], template: function ProfileProgressIndicatorComponent_Template(rf, ctx) { if (rf & 1) {
|
|
95950
|
+
i0.ɵɵdomElementStart(0, "div", 0)(1, "div", 1)(2, "span");
|
|
95951
|
+
i0.ɵɵtext(3);
|
|
95952
|
+
i0.ɵɵdomElementEnd();
|
|
95953
|
+
i0.ɵɵdomElementStart(4, "span");
|
|
95954
|
+
i0.ɵɵtext(5);
|
|
95955
|
+
i0.ɵɵdomElementEnd()();
|
|
95956
|
+
i0.ɵɵdomElementStart(6, "div");
|
|
95957
|
+
i0.ɵɵdomElement(7, "div", 2);
|
|
95958
|
+
i0.ɵɵdomElementEnd();
|
|
95959
|
+
i0.ɵɵconditionalCreate(8, ProfileProgressIndicatorComponent_Conditional_8_Template, 4, 0, "div", 3)(9, ProfileProgressIndicatorComponent_Conditional_9_Template, 4, 0, "div", 4)(10, ProfileProgressIndicatorComponent_Conditional_10_Template, 4, 0, "div", 5);
|
|
95960
|
+
i0.ɵɵdomElementEnd();
|
|
95961
|
+
} if (rf & 2) {
|
|
95962
|
+
i0.ɵɵadvance(2);
|
|
95963
|
+
i0.ɵɵclassMap(ctx.labelClasses());
|
|
95964
|
+
i0.ɵɵadvance();
|
|
95965
|
+
i0.ɵɵtextInterpolate(ctx.label());
|
|
95966
|
+
i0.ɵɵadvance();
|
|
95967
|
+
i0.ɵɵclassMap(ctx.valueClasses());
|
|
95968
|
+
i0.ɵɵadvance();
|
|
95969
|
+
i0.ɵɵtextInterpolate2("", ctx.questionsAnswered(), " / ", ctx.totalQuestions());
|
|
95970
|
+
i0.ɵɵadvance();
|
|
95971
|
+
i0.ɵɵclassMap(ctx.progressBarContainerClasses());
|
|
95972
|
+
i0.ɵɵadvance();
|
|
95973
|
+
i0.ɵɵstyleProp("width", ctx.progressPercent(), "%");
|
|
95974
|
+
i0.ɵɵadvance();
|
|
95975
|
+
i0.ɵɵconditional(ctx.status() === "complete" ? 8 : ctx.status() === "in-progress" ? 9 : 10);
|
|
95976
|
+
} }, dependencies: [CommonModule], encapsulation: 2, changeDetection: 0 }); }
|
|
95977
|
+
}
|
|
95978
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ProfileProgressIndicatorComponent, [{
|
|
95979
|
+
type: Component,
|
|
95980
|
+
args: [{
|
|
95981
|
+
selector: 'symphiq-profile-progress-indicator',
|
|
95982
|
+
standalone: true,
|
|
95983
|
+
imports: [CommonModule],
|
|
95984
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
95985
|
+
template: `
|
|
95986
|
+
<div class="space-y-2">
|
|
95987
|
+
<div class="flex items-center justify-between text-sm">
|
|
95988
|
+
<span [class]="labelClasses()">{{ label() }}</span>
|
|
95989
|
+
<span [class]="valueClasses()">{{ questionsAnswered() }} / {{ totalQuestions() }}</span>
|
|
95990
|
+
</div>
|
|
95991
|
+
|
|
95992
|
+
<div [class]="progressBarContainerClasses()">
|
|
95993
|
+
<div
|
|
95994
|
+
class="h-full bg-gradient-to-r from-blue-500 to-cyan-500 rounded-full transition-all duration-500"
|
|
95995
|
+
[style.width.%]="progressPercent()"
|
|
95996
|
+
></div>
|
|
95997
|
+
</div>
|
|
95998
|
+
|
|
95999
|
+
@if (status() === 'complete') {
|
|
96000
|
+
<div class="flex items-center gap-1 text-xs text-green-600 dark:text-green-400 font-medium">
|
|
96001
|
+
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20">
|
|
96002
|
+
<path fill-rule="evenodd"
|
|
96003
|
+
d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z"
|
|
96004
|
+
clip-rule="evenodd"/>
|
|
96005
|
+
</svg>
|
|
96006
|
+
Complete
|
|
96007
|
+
</div>
|
|
96008
|
+
} @else if (status() === 'in-progress') {
|
|
96009
|
+
<div class="flex items-center gap-1 text-xs text-blue-600 dark:text-blue-400 font-medium">
|
|
96010
|
+
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20">
|
|
96011
|
+
<path fill-rule="evenodd"
|
|
96012
|
+
d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z"
|
|
96013
|
+
clip-rule="evenodd"/>
|
|
96014
|
+
</svg>
|
|
96015
|
+
In Progress
|
|
96016
|
+
</div>
|
|
96017
|
+
} @else {
|
|
96018
|
+
<div class="flex items-center gap-1 text-xs text-slate-500 dark:text-slate-400 font-medium">
|
|
96019
|
+
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20">
|
|
96020
|
+
<path fill-rule="evenodd"
|
|
96021
|
+
d="M10 18a8 8 0 100-16 8 8 0 000 16zM9.555 7.168A1 1 0 008 8v4a1 1 0 001.555.832l3-2a1 1 0 000-1.664l-3-2z"
|
|
96022
|
+
clip-rule="evenodd"/>
|
|
96023
|
+
</svg>
|
|
96024
|
+
Not Started
|
|
96025
|
+
</div>
|
|
96026
|
+
}
|
|
96027
|
+
</div>
|
|
96028
|
+
`
|
|
96029
|
+
}]
|
|
96030
|
+
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], questionsAnswered: [{ type: i0.Input, args: [{ isSignal: true, alias: "questionsAnswered", required: false }] }], totalQuestions: [{ type: i0.Input, args: [{ isSignal: true, alias: "totalQuestions", required: false }] }], progressPercent: [{ type: i0.Input, args: [{ isSignal: true, alias: "progressPercent", required: false }] }], status: [{ type: i0.Input, args: [{ isSignal: true, alias: "status", required: false }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }] }); })();
|
|
96031
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileProgressIndicatorComponent, { className: "ProfileProgressIndicatorComponent", filePath: "lib/components/shared/profile-progress-indicator.component.ts", lineNumber: 62 }); })();
|
|
96032
|
+
|
|
95649
96033
|
const _forTrack0$7 = ($index, $item) => $item.card.id;
|
|
95650
96034
|
function ProfileAnalysisCardGridComponent_For_2_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
95651
96035
|
i0.ɵɵelementStart(0, "div", 7);
|
|
@@ -95707,69 +96091,21 @@ function ProfileAnalysisCardGridComponent_For_2_Conditional_14_Template(rf, ctx)
|
|
|
95707
96091
|
i0.ɵɵtext(3, "Profile Generation Pending");
|
|
95708
96092
|
i0.ɵɵelementEnd()();
|
|
95709
96093
|
} }
|
|
95710
|
-
function ProfileAnalysisCardGridComponent_For_2_Conditional_15_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
95711
|
-
i0.ɵɵelementStart(0, "div", 27);
|
|
95712
|
-
i0.ɵɵnamespaceSVG();
|
|
95713
|
-
i0.ɵɵelementStart(1, "svg", 30);
|
|
95714
|
-
i0.ɵɵelement(2, "path", 31);
|
|
95715
|
-
i0.ɵɵelementEnd();
|
|
95716
|
-
i0.ɵɵtext(3, " Complete ");
|
|
95717
|
-
i0.ɵɵelementEnd();
|
|
95718
|
-
} }
|
|
95719
|
-
function ProfileAnalysisCardGridComponent_For_2_Conditional_15_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
95720
|
-
i0.ɵɵelementStart(0, "div", 28);
|
|
95721
|
-
i0.ɵɵnamespaceSVG();
|
|
95722
|
-
i0.ɵɵelementStart(1, "svg", 30);
|
|
95723
|
-
i0.ɵɵelement(2, "path", 32);
|
|
95724
|
-
i0.ɵɵelementEnd();
|
|
95725
|
-
i0.ɵɵtext(3, " In Progress ");
|
|
95726
|
-
i0.ɵɵelementEnd();
|
|
95727
|
-
} }
|
|
95728
|
-
function ProfileAnalysisCardGridComponent_For_2_Conditional_15_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
95729
|
-
i0.ɵɵelementStart(0, "div", 29);
|
|
95730
|
-
i0.ɵɵnamespaceSVG();
|
|
95731
|
-
i0.ɵɵelementStart(1, "svg", 30);
|
|
95732
|
-
i0.ɵɵelement(2, "path", 33);
|
|
95733
|
-
i0.ɵɵelementEnd();
|
|
95734
|
-
i0.ɵɵtext(3, " Not Started ");
|
|
95735
|
-
i0.ɵɵelementEnd();
|
|
95736
|
-
} }
|
|
95737
96094
|
function ProfileAnalysisCardGridComponent_For_2_Conditional_15_Template(rf, ctx) { if (rf & 1) {
|
|
95738
96095
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
95739
96096
|
i0.ɵɵelementStart(0, "div", 24);
|
|
95740
96097
|
i0.ɵɵlistener("click", function ProfileAnalysisCardGridComponent_For_2_Conditional_15_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r4); const item_r1 = i0.ɵɵnextContext().$implicit; const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.handleProfileClick(item_r1.card)); });
|
|
95741
|
-
i0.ɵɵ
|
|
95742
|
-
i0.ɵɵtext(3);
|
|
95743
|
-
i0.ɵɵelementEnd();
|
|
95744
|
-
i0.ɵɵelementStart(4, "span");
|
|
95745
|
-
i0.ɵɵtext(5);
|
|
95746
|
-
i0.ɵɵelementEnd()();
|
|
95747
|
-
i0.ɵɵelementStart(6, "div");
|
|
95748
|
-
i0.ɵɵelement(7, "div", 26);
|
|
95749
|
-
i0.ɵɵelementEnd();
|
|
95750
|
-
i0.ɵɵconditionalCreate(8, ProfileAnalysisCardGridComponent_For_2_Conditional_15_Conditional_8_Template, 4, 0, "div", 27)(9, ProfileAnalysisCardGridComponent_For_2_Conditional_15_Conditional_9_Template, 4, 0, "div", 28)(10, ProfileAnalysisCardGridComponent_For_2_Conditional_15_Conditional_10_Template, 4, 0, "div", 29);
|
|
96098
|
+
i0.ɵɵelement(1, "symphiq-profile-progress-indicator", 25);
|
|
95751
96099
|
i0.ɵɵelementEnd();
|
|
95752
96100
|
} if (rf & 2) {
|
|
95753
96101
|
const item_r1 = i0.ɵɵnextContext().$implicit;
|
|
95754
96102
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
95755
|
-
i0.ɵɵadvance(2);
|
|
95756
|
-
i0.ɵɵclassMap(ctx_r2.labelClasses());
|
|
95757
|
-
i0.ɵɵadvance();
|
|
95758
|
-
i0.ɵɵtextInterpolate(ctx_r2.resolvedConfig().profileProgressLabel);
|
|
95759
96103
|
i0.ɵɵadvance();
|
|
95760
|
-
i0.ɵɵ
|
|
95761
|
-
i0.ɵɵadvance();
|
|
95762
|
-
i0.ɵɵtextInterpolate2("", item_r1.card.questionsAnswered, " / ", item_r1.card.totalQuestions);
|
|
95763
|
-
i0.ɵɵadvance();
|
|
95764
|
-
i0.ɵɵclassMap(ctx_r2.progressBarContainerClasses());
|
|
95765
|
-
i0.ɵɵadvance();
|
|
95766
|
-
i0.ɵɵstyleProp("width", item_r1.card.progressPercent, "%");
|
|
95767
|
-
i0.ɵɵadvance();
|
|
95768
|
-
i0.ɵɵconditional(item_r1.card.status === "complete" ? 8 : item_r1.card.status === "in-progress" ? 9 : 10);
|
|
96104
|
+
i0.ɵɵproperty("viewMode", ctx_r2.viewMode())("questionsAnswered", item_r1.card.questionsAnswered)("totalQuestions", item_r1.card.totalQuestions)("progressPercent", item_r1.card.progressPercent)("status", ctx_r2.toProgressStatus(item_r1.card.status))("label", ctx_r2.resolvedConfig().profileProgressLabel);
|
|
95769
96105
|
} }
|
|
95770
96106
|
function ProfileAnalysisCardGridComponent_For_2_Conditional_16_Template(rf, ctx) { if (rf & 1) {
|
|
95771
96107
|
i0.ɵɵelementStart(0, "div", 14);
|
|
95772
|
-
i0.ɵɵelement(1, "symphiq-content-generation-progress",
|
|
96108
|
+
i0.ɵɵelement(1, "symphiq-content-generation-progress", 26);
|
|
95773
96109
|
i0.ɵɵelementEnd();
|
|
95774
96110
|
} if (rf & 2) {
|
|
95775
96111
|
const item_r1 = i0.ɵɵnextContext().$implicit;
|
|
@@ -95779,7 +96115,7 @@ function ProfileAnalysisCardGridComponent_For_2_Conditional_16_Template(rf, ctx)
|
|
|
95779
96115
|
} }
|
|
95780
96116
|
function ProfileAnalysisCardGridComponent_For_2_Conditional_17_Template(rf, ctx) { if (rf & 1) {
|
|
95781
96117
|
i0.ɵɵelementStart(0, "div", 14);
|
|
95782
|
-
i0.ɵɵelement(1, "symphiq-content-generation-progress",
|
|
96118
|
+
i0.ɵɵelement(1, "symphiq-content-generation-progress", 26);
|
|
95783
96119
|
i0.ɵɵelementEnd();
|
|
95784
96120
|
} if (rf & 2) {
|
|
95785
96121
|
const item_r1 = i0.ɵɵnextContext().$implicit;
|
|
@@ -95789,17 +96125,17 @@ function ProfileAnalysisCardGridComponent_For_2_Conditional_17_Template(rf, ctx)
|
|
|
95789
96125
|
} }
|
|
95790
96126
|
function ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
95791
96127
|
const _r5 = i0.ɵɵgetCurrentView();
|
|
95792
|
-
i0.ɵɵelementStart(0, "div",
|
|
96128
|
+
i0.ɵɵelementStart(0, "div", 29);
|
|
95793
96129
|
i0.ɵɵlistener("click", function ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_0_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r5); const item_r1 = i0.ɵɵnextContext(2).$implicit; const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.handleReviewClick(item_r1.card)); });
|
|
95794
|
-
i0.ɵɵelementStart(1, "div",
|
|
96130
|
+
i0.ɵɵelementStart(1, "div", 30)(2, "span", 31);
|
|
95795
96131
|
i0.ɵɵnamespaceSVG();
|
|
95796
|
-
i0.ɵɵelementStart(3, "svg",
|
|
95797
|
-
i0.ɵɵelement(4, "path",
|
|
96132
|
+
i0.ɵɵelementStart(3, "svg", 32);
|
|
96133
|
+
i0.ɵɵelement(4, "path", 33)(5, "path", 34);
|
|
95798
96134
|
i0.ɵɵelementEnd();
|
|
95799
96135
|
i0.ɵɵtext(6, " Review Analysis ");
|
|
95800
96136
|
i0.ɵɵelementEnd();
|
|
95801
|
-
i0.ɵɵelementStart(7, "svg",
|
|
95802
|
-
i0.ɵɵelement(8, "path",
|
|
96137
|
+
i0.ɵɵelementStart(7, "svg", 35);
|
|
96138
|
+
i0.ɵɵelement(8, "path", 36);
|
|
95803
96139
|
i0.ɵɵelementEnd()()();
|
|
95804
96140
|
} }
|
|
95805
96141
|
function ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_1_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
@@ -95819,14 +96155,14 @@ function ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_1_Con
|
|
|
95819
96155
|
} }
|
|
95820
96156
|
function ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
95821
96157
|
const _r6 = i0.ɵɵgetCurrentView();
|
|
95822
|
-
i0.ɵɵelementStart(0, "div",
|
|
96158
|
+
i0.ɵɵelementStart(0, "div", 37);
|
|
95823
96159
|
i0.ɵɵlistener("click", function ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_1_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r6); const item_r1 = i0.ɵɵnextContext(2).$implicit; const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(item_r1.card.selfContentStatusAnalysis === ctx_r2.AiDynamicContentStatusEnum.GENERATED && item_r1.card.profileAnalysis && item_r1.card.profile ? ctx_r2.handleAnalysisClick(item_r1.card) : ctx_r2.handleProfileClick(item_r1.card)); });
|
|
95824
|
-
i0.ɵɵelementStart(1, "div",
|
|
96160
|
+
i0.ɵɵelementStart(1, "div", 30)(2, "span", 38);
|
|
95825
96161
|
i0.ɵɵconditionalCreate(3, ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_1_Conditional_3_Template, 1, 0)(4, ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_1_Conditional_4_Template, 1, 0)(5, ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_1_Conditional_5_Template, 1, 0)(6, ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_1_Conditional_6_Template, 1, 0)(7, ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_1_Conditional_7_Template, 1, 0);
|
|
95826
96162
|
i0.ɵɵelementEnd();
|
|
95827
96163
|
i0.ɵɵnamespaceSVG();
|
|
95828
|
-
i0.ɵɵelementStart(8, "svg",
|
|
95829
|
-
i0.ɵɵelement(9, "path",
|
|
96164
|
+
i0.ɵɵelementStart(8, "svg", 39);
|
|
96165
|
+
i0.ɵɵelement(9, "path", 36);
|
|
95830
96166
|
i0.ɵɵelementEnd()()();
|
|
95831
96167
|
} if (rf & 2) {
|
|
95832
96168
|
const item_r1 = i0.ɵɵnextContext(2).$implicit;
|
|
@@ -95836,7 +96172,7 @@ function ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_1_Tem
|
|
|
95836
96172
|
i0.ɵɵconditional(item_r1.card.selfContentStatusAnalysis === ctx_r2.AiDynamicContentStatusEnum.GENERATED ? 3 : item_r1.card.hasAnalysis ? 4 : item_r1.card.status === "complete" ? 5 : item_r1.card.status === "in-progress" ? 6 : 7);
|
|
95837
96173
|
} }
|
|
95838
96174
|
function ProfileAnalysisCardGridComponent_For_2_Conditional_18_Template(rf, ctx) { if (rf & 1) {
|
|
95839
|
-
i0.ɵɵconditionalCreate(0, ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_0_Template, 9, 0, "div",
|
|
96175
|
+
i0.ɵɵconditionalCreate(0, ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_0_Template, 9, 0, "div", 27)(1, ProfileAnalysisCardGridComponent_For_2_Conditional_18_Conditional_1_Template, 10, 3, "div", 28);
|
|
95840
96176
|
} if (rf & 2) {
|
|
95841
96177
|
const item_r1 = i0.ɵɵnextContext().$implicit;
|
|
95842
96178
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -95858,7 +96194,7 @@ function ProfileAnalysisCardGridComponent_For_2_Template(rf, ctx) { if (rf & 1)
|
|
|
95858
96194
|
i0.ɵɵtext(12);
|
|
95859
96195
|
i0.ɵɵelementEnd();
|
|
95860
96196
|
i0.ɵɵconditionalCreate(13, ProfileAnalysisCardGridComponent_For_2_Conditional_13_Template, 7, 2, "div", 11);
|
|
95861
|
-
i0.ɵɵconditionalCreate(14, ProfileAnalysisCardGridComponent_For_2_Conditional_14_Template, 4, 0, "div", 12)(15, ProfileAnalysisCardGridComponent_For_2_Conditional_15_Template,
|
|
96197
|
+
i0.ɵɵconditionalCreate(14, ProfileAnalysisCardGridComponent_For_2_Conditional_14_Template, 4, 0, "div", 12)(15, ProfileAnalysisCardGridComponent_For_2_Conditional_15_Template, 2, 6, "div", 13);
|
|
95862
96198
|
i0.ɵɵelementEnd();
|
|
95863
96199
|
i0.ɵɵconditionalCreate(16, ProfileAnalysisCardGridComponent_For_2_Conditional_16_Template, 2, 4, "div", 14)(17, ProfileAnalysisCardGridComponent_For_2_Conditional_17_Template, 2, 4, "div", 14);
|
|
95864
96200
|
i0.ɵɵconditionalCreate(18, ProfileAnalysisCardGridComponent_For_2_Conditional_18_Template, 2, 1);
|
|
@@ -95905,14 +96241,14 @@ function ProfileAnalysisCardGridComponent_Conditional_3_For_8_Conditional_6_Temp
|
|
|
95905
96241
|
} }
|
|
95906
96242
|
function ProfileAnalysisCardGridComponent_Conditional_3_For_8_Conditional_11_Template(rf, ctx) { if (rf & 1) {
|
|
95907
96243
|
const _r8 = i0.ɵɵgetCurrentView();
|
|
95908
|
-
i0.ɵɵelementStart(0, "div",
|
|
96244
|
+
i0.ɵɵelementStart(0, "div", 37);
|
|
95909
96245
|
i0.ɵɵlistener("click", function ProfileAnalysisCardGridComponent_Conditional_3_For_8_Conditional_11_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r8); const item_r7 = i0.ɵɵnextContext().$implicit; const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.handleProfileClick(item_r7.card)); });
|
|
95910
|
-
i0.ɵɵelementStart(1, "div",
|
|
96246
|
+
i0.ɵɵelementStart(1, "div", 30)(2, "span", 38);
|
|
95911
96247
|
i0.ɵɵtext(3, "View Details");
|
|
95912
96248
|
i0.ɵɵelementEnd();
|
|
95913
96249
|
i0.ɵɵnamespaceSVG();
|
|
95914
|
-
i0.ɵɵelementStart(4, "svg",
|
|
95915
|
-
i0.ɵɵelement(5, "path",
|
|
96250
|
+
i0.ɵɵelementStart(4, "svg", 39);
|
|
96251
|
+
i0.ɵɵelement(5, "path", 36);
|
|
95916
96252
|
i0.ɵɵelementEnd()()();
|
|
95917
96253
|
} if (rf & 2) {
|
|
95918
96254
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -95931,7 +96267,7 @@ function ProfileAnalysisCardGridComponent_Conditional_3_For_8_Template(rf, ctx)
|
|
|
95931
96267
|
i0.ɵɵelementStart(9, "p", 10);
|
|
95932
96268
|
i0.ɵɵtext(10);
|
|
95933
96269
|
i0.ɵɵelementEnd()();
|
|
95934
|
-
i0.ɵɵconditionalCreate(11, ProfileAnalysisCardGridComponent_Conditional_3_For_8_Conditional_11_Template, 6, 2, "div",
|
|
96270
|
+
i0.ɵɵconditionalCreate(11, ProfileAnalysisCardGridComponent_Conditional_3_For_8_Conditional_11_Template, 6, 2, "div", 28);
|
|
95935
96271
|
i0.ɵɵelementEnd();
|
|
95936
96272
|
} if (rf & 2) {
|
|
95937
96273
|
const item_r7 = ctx.$implicit;
|
|
@@ -95954,14 +96290,14 @@ function ProfileAnalysisCardGridComponent_Conditional_3_For_8_Template(rf, ctx)
|
|
|
95954
96290
|
i0.ɵɵconditional(item_r7.card.canViewDetails && item_r7.card.profile ? 11 : -1);
|
|
95955
96291
|
} }
|
|
95956
96292
|
function ProfileAnalysisCardGridComponent_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
95957
|
-
i0.ɵɵelementStart(0, "div", 2)(1, "div",
|
|
95958
|
-
i0.ɵɵelement(2, "div",
|
|
95959
|
-
i0.ɵɵelementStart(3, "span",
|
|
96293
|
+
i0.ɵɵelementStart(0, "div", 2)(1, "div", 40);
|
|
96294
|
+
i0.ɵɵelement(2, "div", 41);
|
|
96295
|
+
i0.ɵɵelementStart(3, "span", 42);
|
|
95960
96296
|
i0.ɵɵtext(4);
|
|
95961
96297
|
i0.ɵɵelementEnd();
|
|
95962
|
-
i0.ɵɵelement(5, "div",
|
|
96298
|
+
i0.ɵɵelement(5, "div", 41);
|
|
95963
96299
|
i0.ɵɵelementEnd();
|
|
95964
|
-
i0.ɵɵelementStart(6, "div",
|
|
96300
|
+
i0.ɵɵelementStart(6, "div", 43);
|
|
95965
96301
|
i0.ɵɵrepeaterCreate(7, ProfileAnalysisCardGridComponent_Conditional_3_For_8_Template, 12, 12, "div", 1, _forTrack0$7);
|
|
95966
96302
|
i0.ɵɵelementEnd()();
|
|
95967
96303
|
} if (rf & 2) {
|
|
@@ -96017,9 +96353,6 @@ class ProfileAnalysisCardGridComponent {
|
|
|
96017
96353
|
this.cardClasses = computed(() => 'group flex flex-col h-full bg-white dark:bg-slate-800 rounded-xl shadow-md hover:shadow-lg transition-all duration-300 overflow-hidden border border-slate-200 dark:border-slate-700', ...(ngDevMode ? [{ debugName: "cardClasses" }] : []));
|
|
96018
96354
|
this.titleClasses = computed(() => 'text-xl font-bold text-slate-900 dark:text-white mb-2 group-hover:text-blue-600 dark:group-hover:text-blue-400 transition-colors', ...(ngDevMode ? [{ debugName: "titleClasses" }] : []));
|
|
96019
96355
|
this.descriptionClasses = computed(() => 'text-sm text-slate-600 dark:text-slate-300 mb-4 line-clamp-2', ...(ngDevMode ? [{ debugName: "descriptionClasses" }] : []));
|
|
96020
|
-
this.labelClasses = computed(() => 'text-slate-600 dark:text-slate-400', ...(ngDevMode ? [{ debugName: "labelClasses" }] : []));
|
|
96021
|
-
this.valueClasses = computed(() => 'font-semibold text-slate-900 dark:text-white', ...(ngDevMode ? [{ debugName: "valueClasses" }] : []));
|
|
96022
|
-
this.progressBarContainerClasses = computed(() => 'w-full bg-slate-200 dark:bg-slate-700 rounded-full h-2 overflow-hidden', ...(ngDevMode ? [{ debugName: "progressBarContainerClasses" }] : []));
|
|
96023
96356
|
this.cardFooterClasses = computed(() => 'px-6 py-4 bg-slate-50 dark:bg-slate-900/50 border-t border-slate-200 dark:border-slate-700', ...(ngDevMode ? [{ debugName: "cardFooterClasses" }] : []));
|
|
96024
96357
|
this.toolsLabelClasses = computed(() => this.isLightMode() ? 'text-slate-600' : 'text-slate-400', ...(ngDevMode ? [{ debugName: "toolsLabelClasses" }] : []));
|
|
96025
96358
|
this.toolChipClasses = computed(() => this.isLightMode()
|
|
@@ -96053,8 +96386,13 @@ class ProfileAnalysisCardGridComponent {
|
|
|
96053
96386
|
handleReviewClick(card) {
|
|
96054
96387
|
this.cardClick.emit({ cardData: card, clickType: 'review' });
|
|
96055
96388
|
}
|
|
96389
|
+
toProgressStatus(status) {
|
|
96390
|
+
if (status === 'pending')
|
|
96391
|
+
return 'not-started';
|
|
96392
|
+
return status;
|
|
96393
|
+
}
|
|
96056
96394
|
static { this.ɵfac = function ProfileAnalysisCardGridComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ProfileAnalysisCardGridComponent)(); }; }
|
|
96057
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ProfileAnalysisCardGridComponent, selectors: [["symphiq-profile-analysis-card-grid"]], inputs: { viewMode: [1, "viewMode"], cards: [1, "cards"], config: [1, "config"] }, outputs: { cardClick: "cardClick" }, decls: 4, vars: 1, consts: [[1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-6"], [3, "class"], [1, "mt-12"], [1, "p-6", "flex-1"], [1, "flex", "items-start", "justify-between", "mb-4"], [1, "text-4xl"], [1, "flex", "flex-col", "items-end", "gap-2"], [3, "ngClass"], [1, "px-2.5", "py-1", "rounded-full", "text-xs", "font-medium", "bg-red-100", "dark:bg-red-900/30", "text-red-700", "dark:text-red-400", "flex", "items-center", "gap-1.5", "animate-alert-pulse"], [1, "px-3", "py-1", "bg-emerald-100", "dark:bg-emerald-900/40", "text-emerald-700", "dark:text-emerald-400", "text-xs", "font-semibold", "rounded-full", "flex", "items-center", "gap-1.5", "border", "border-emerald-300/50", "dark:border-emerald-500/30", "shadow-sm"], ["tooltipPosition", "bottom", 3, "libSymphiqTooltip"], [1, "mt-3", "mb-4"], [1, "flex", "items-center", "gap-2", "py-2"], [1, "
|
|
96395
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ProfileAnalysisCardGridComponent, selectors: [["symphiq-profile-analysis-card-grid"]], inputs: { viewMode: [1, "viewMode"], cards: [1, "cards"], config: [1, "config"] }, outputs: { cardClick: "cardClick" }, decls: 4, vars: 1, consts: [[1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-6"], [3, "class"], [1, "mt-12"], [1, "p-6", "flex-1"], [1, "flex", "items-start", "justify-between", "mb-4"], [1, "text-4xl"], [1, "flex", "flex-col", "items-end", "gap-2"], [3, "ngClass"], [1, "px-2.5", "py-1", "rounded-full", "text-xs", "font-medium", "bg-red-100", "dark:bg-red-900/30", "text-red-700", "dark:text-red-400", "flex", "items-center", "gap-1.5", "animate-alert-pulse"], [1, "px-3", "py-1", "bg-emerald-100", "dark:bg-emerald-900/40", "text-emerald-700", "dark:text-emerald-400", "text-xs", "font-semibold", "rounded-full", "flex", "items-center", "gap-1.5", "border", "border-emerald-300/50", "dark:border-emerald-500/30", "shadow-sm"], ["tooltipPosition", "bottom", 3, "libSymphiqTooltip"], [1, "mt-3", "mb-4"], [1, "flex", "items-center", "gap-2", "py-2"], [1, "cursor-pointer", "mt-4"], [1, "px-6", "pb-4"], [1, "w-2", "h-2", "rounded-full", "bg-red-500", "animate-slow-pulse"], ["fill", "currentColor", "viewBox", "0 0 20 20", 1, "w-3.5", "h-3.5"], ["fill-rule", "evenodd", "d", "M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z", "clip-rule", "evenodd"], [1, "flex", "items-center", "gap-2"], [1, "text-xs", "font-medium", 3, "ngClass"], [1, "flex", "flex-wrap", "gap-1.5"], [1, "px-2", "py-0.5", "rounded", "text-xs", 3, "ngClass"], [1, "animate-spin", "w-4", "h-4", "border-2", "border-amber-500/30", "border-t-amber-500", "rounded-full"], [1, "text-xs", "text-amber-600", "dark:text-amber-400", "font-medium"], [1, "cursor-pointer", "mt-4", 3, "click"], [3, "viewMode", "questionsAnswered", "totalQuestions", "progressPercent", "status", "label"], [3, "itemStatus", "viewMode", "compact", "compactTitle"], [1, "mt-auto", "cursor-pointer", "bg-gradient-to-r", "from-blue-600", "via-cyan-600", "to-teal-600", "hover:from-blue-500", "hover:via-cyan-500", "hover:to-teal-500", "transition-all", "duration-300", "px-4", "py-3", "border-t", "border-blue-500/30", "animate-review-pulse"], [1, "mt-auto", "cursor-pointer", "hover:bg-slate-100", "dark:hover:bg-slate-700/50", "transition-colors", 3, "class"], [1, "mt-auto", "cursor-pointer", "bg-gradient-to-r", "from-blue-600", "via-cyan-600", "to-teal-600", "hover:from-blue-500", "hover:via-cyan-500", "hover:to-teal-500", "transition-all", "duration-300", "px-4", "py-3", "border-t", "border-blue-500/30", "animate-review-pulse", 3, "click"], [1, "flex", "items-center", "justify-between"], [1, "text-sm", "font-semibold", "text-white", "flex", "items-center", "gap-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "animate-pulse"], ["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"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "text-white/90", "group-hover:translate-x-1", "transition-transform"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"], [1, "mt-auto", "cursor-pointer", "hover:bg-slate-100", "dark:hover:bg-slate-700/50", "transition-colors", 3, "click"], [1, "text-sm", "font-medium", "text-slate-600", "dark:text-slate-400"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "text-slate-400", "dark:text-slate-500", "hover:text-blue-500", "dark:hover:text-blue-400", "hover:translate-x-1", "transition-all"], [1, "flex", "items-center", "gap-4", "mb-6"], [1, "flex-1", "h-px", 3, "ngClass"], [1, "text-sm", "font-medium", "px-3", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-6", "opacity-60"]], template: function ProfileAnalysisCardGridComponent_Template(rf, ctx) { if (rf & 1) {
|
|
96058
96396
|
i0.ɵɵelementStart(0, "div", 0);
|
|
96059
96397
|
i0.ɵɵrepeaterCreate(1, ProfileAnalysisCardGridComponent_For_2_Template, 19, 17, "div", 1, _forTrack0$7);
|
|
96060
96398
|
i0.ɵɵelementEnd();
|
|
@@ -96064,11 +96402,11 @@ class ProfileAnalysisCardGridComponent {
|
|
|
96064
96402
|
i0.ɵɵrepeater(ctx.interestedCardsDisplay());
|
|
96065
96403
|
i0.ɵɵadvance(2);
|
|
96066
96404
|
i0.ɵɵconditional(ctx.resolvedConfig().showNotInterestedSection && ctx.notInterestedCards().length > 0 ? 3 : -1);
|
|
96067
|
-
} }, dependencies: [CommonModule, i1$1.NgClass, TooltipDirective, ContentGenerationProgressComponent], styles: ["@keyframes _ngcontent-%COMP%_review-pulse{0%,to{box-shadow:0 0 #3b82f680}50%{box-shadow:0 0 0 8px #3b82f600}}.animate-review-pulse[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_review-pulse 2s ease-in-out infinite}@keyframes _ngcontent-%COMP%_alert-pulse{0%,to{box-shadow:0 0 #ef444466}50%{box-shadow:0 0 0 6px #ef444400}}.animate-alert-pulse[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_alert-pulse 4s ease-in-out infinite}@keyframes _ngcontent-%COMP%_slow-pulse{0%,to{opacity:1}50%{opacity:.4}}.animate-slow-pulse[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_slow-pulse 3s ease-in-out infinite}"], changeDetection: 0 }); }
|
|
96405
|
+
} }, dependencies: [CommonModule, i1$1.NgClass, TooltipDirective, ContentGenerationProgressComponent, ProfileProgressIndicatorComponent], styles: ["@keyframes _ngcontent-%COMP%_review-pulse{0%,to{box-shadow:0 0 #3b82f680}50%{box-shadow:0 0 0 8px #3b82f600}}.animate-review-pulse[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_review-pulse 2s ease-in-out infinite}@keyframes _ngcontent-%COMP%_alert-pulse{0%,to{box-shadow:0 0 #ef444466}50%{box-shadow:0 0 0 6px #ef444400}}.animate-alert-pulse[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_alert-pulse 4s ease-in-out infinite}@keyframes _ngcontent-%COMP%_slow-pulse{0%,to{opacity:1}50%{opacity:.4}}.animate-slow-pulse[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_slow-pulse 3s ease-in-out infinite}"], changeDetection: 0 }); }
|
|
96068
96406
|
}
|
|
96069
96407
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ProfileAnalysisCardGridComponent, [{
|
|
96070
96408
|
type: Component,
|
|
96071
|
-
args: [{ selector: 'symphiq-profile-analysis-card-grid', standalone: true, imports: [CommonModule, TooltipDirective, ContentGenerationProgressComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
96409
|
+
args: [{ selector: 'symphiq-profile-analysis-card-grid', standalone: true, imports: [CommonModule, TooltipDirective, ContentGenerationProgressComponent, ProfileProgressIndicatorComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
96072
96410
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
96073
96411
|
@for (item of interestedCardsDisplay(); track item.card.id) {
|
|
96074
96412
|
<div [class]="cardClasses()">
|
|
@@ -96127,47 +96465,15 @@ class ProfileAnalysisCardGridComponent {
|
|
|
96127
96465
|
<span class="text-xs text-amber-600 dark:text-amber-400 font-medium">Profile Generation Pending</span>
|
|
96128
96466
|
</div>
|
|
96129
96467
|
} @else if ((item.card.selfContentStatusProfile === AiDynamicContentStatusEnum.GENERATED && (item.card.selfContentStatusAnalysis === null || item.card.selfContentStatusAnalysis === AiDynamicContentStatusEnum.GENERATED)) || item.card.status !== 'pending') {
|
|
96130
|
-
<div class="
|
|
96131
|
-
<
|
|
96132
|
-
|
|
96133
|
-
|
|
96134
|
-
|
|
96135
|
-
|
|
96136
|
-
|
|
96137
|
-
|
|
96138
|
-
|
|
96139
|
-
[style.width.%]="item.card.progressPercent"
|
|
96140
|
-
></div>
|
|
96141
|
-
</div>
|
|
96142
|
-
|
|
96143
|
-
@if (item.card.status === 'complete') {
|
|
96144
|
-
<div class="flex items-center gap-1 text-xs text-green-600 dark:text-green-400 font-medium">
|
|
96145
|
-
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20">
|
|
96146
|
-
<path fill-rule="evenodd"
|
|
96147
|
-
d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z"
|
|
96148
|
-
clip-rule="evenodd"/>
|
|
96149
|
-
</svg>
|
|
96150
|
-
Complete
|
|
96151
|
-
</div>
|
|
96152
|
-
} @else if (item.card.status === 'in-progress') {
|
|
96153
|
-
<div class="flex items-center gap-1 text-xs text-blue-600 dark:text-blue-400 font-medium">
|
|
96154
|
-
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20">
|
|
96155
|
-
<path fill-rule="evenodd"
|
|
96156
|
-
d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z"
|
|
96157
|
-
clip-rule="evenodd"/>
|
|
96158
|
-
</svg>
|
|
96159
|
-
In Progress
|
|
96160
|
-
</div>
|
|
96161
|
-
} @else {
|
|
96162
|
-
<div class="flex items-center gap-1 text-xs text-slate-500 dark:text-slate-400 font-medium">
|
|
96163
|
-
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20">
|
|
96164
|
-
<path fill-rule="evenodd"
|
|
96165
|
-
d="M10 18a8 8 0 100-16 8 8 0 000 16zM9.555 7.168A1 1 0 008 8v4a1 1 0 001.555.832l3-2a1 1 0 000-1.664l-3-2z"
|
|
96166
|
-
clip-rule="evenodd"/>
|
|
96167
|
-
</svg>
|
|
96168
|
-
Not Started
|
|
96169
|
-
</div>
|
|
96170
|
-
}
|
|
96468
|
+
<div class="cursor-pointer mt-4" (click)="handleProfileClick(item.card)">
|
|
96469
|
+
<symphiq-profile-progress-indicator
|
|
96470
|
+
[viewMode]="viewMode()"
|
|
96471
|
+
[questionsAnswered]="item.card.questionsAnswered"
|
|
96472
|
+
[totalQuestions]="item.card.totalQuestions"
|
|
96473
|
+
[progressPercent]="item.card.progressPercent"
|
|
96474
|
+
[status]="toProgressStatus(item.card.status)"
|
|
96475
|
+
[label]="resolvedConfig().profileProgressLabel"
|
|
96476
|
+
/>
|
|
96171
96477
|
</div>
|
|
96172
96478
|
}
|
|
96173
96479
|
</div>
|
|
@@ -96298,11 +96604,11 @@ class ProfileAnalysisCardGridComponent {
|
|
|
96298
96604
|
}
|
|
96299
96605
|
`, styles: ["@keyframes review-pulse{0%,to{box-shadow:0 0 #3b82f680}50%{box-shadow:0 0 0 8px #3b82f600}}.animate-review-pulse{animation:review-pulse 2s ease-in-out infinite}@keyframes alert-pulse{0%,to{box-shadow:0 0 #ef444466}50%{box-shadow:0 0 0 6px #ef444400}}.animate-alert-pulse{animation:alert-pulse 4s ease-in-out infinite}@keyframes slow-pulse{0%,to{opacity:1}50%{opacity:.4}}.animate-slow-pulse{animation:slow-pulse 3s ease-in-out infinite}\n"] }]
|
|
96300
96606
|
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], cards: [{ type: i0.Input, args: [{ isSignal: true, alias: "cards", required: false }] }], config: [{ type: i0.Input, args: [{ isSignal: true, alias: "config", required: false }] }], cardClick: [{ type: i0.Output, args: ["cardClick"] }] }); })();
|
|
96301
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileAnalysisCardGridComponent, { className: "ProfileAnalysisCardGridComponent", filePath: "lib/components/shared/profile-analysis-card-grid.component.ts", lineNumber:
|
|
96607
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileAnalysisCardGridComponent, { className: "ProfileAnalysisCardGridComponent", filePath: "lib/components/shared/profile-analysis-card-grid.component.ts", lineNumber: 316 }); })();
|
|
96302
96608
|
|
|
96303
96609
|
function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
96304
96610
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
96305
|
-
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator",
|
|
96611
|
+
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 26);
|
|
96306
96612
|
i0.ɵɵlistener("nextStepClick", function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_5_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); })("stepClick", function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_5_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); });
|
|
96307
96613
|
i0.ɵɵelementEnd();
|
|
96308
96614
|
} if (rf & 2) {
|
|
@@ -96315,10 +96621,25 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_16_Templ
|
|
|
96315
96621
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
96316
96622
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("profileStatusCounts", ctx_r1.focusAreaStatusCounts())("analysisStatusCounts", ctx_r1.analysisStatusCounts())("allReviewed", ctx_r1.allInterestedFocusAreasAnalysisReviewed())("hasItems", ctx_r1.interestedFocusAreaCards().length > 0)("config", ctx_r1.focusAreaStatusConfig);
|
|
96317
96623
|
} }
|
|
96624
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_29_Template(rf, ctx) { if (rf & 1) {
|
|
96625
|
+
i0.ɵɵelement(0, "symphiq-loading-card", 24);
|
|
96626
|
+
} if (rf & 2) {
|
|
96627
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
96628
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode());
|
|
96629
|
+
} }
|
|
96318
96630
|
function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_30_Template(rf, ctx) { if (rf & 1) {
|
|
96319
96631
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
96320
|
-
i0.ɵɵelementStart(0, "symphiq-
|
|
96321
|
-
i0.ɵɵlistener("
|
|
96632
|
+
i0.ɵɵelementStart(0, "symphiq-profile-analysis-card-grid", 27);
|
|
96633
|
+
i0.ɵɵlistener("cardClick", function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_30_Template_symphiq_profile_analysis_card_grid_cardClick_0_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleCardClick($event)); });
|
|
96634
|
+
i0.ɵɵelementEnd();
|
|
96635
|
+
} if (rf & 2) {
|
|
96636
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
96637
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("cards", ctx_r1.genericCardData())("config", ctx_r1.focusAreaCardConfig);
|
|
96638
|
+
} }
|
|
96639
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_31_Template(rf, ctx) { if (rf & 1) {
|
|
96640
|
+
const _r4 = i0.ɵɵgetCurrentView();
|
|
96641
|
+
i0.ɵɵelementStart(0, "symphiq-search-modal", 28);
|
|
96642
|
+
i0.ɵɵlistener("closeModal", function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_31_Template_symphiq_search_modal_closeModal_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleCloseSearchModal()); });
|
|
96322
96643
|
i0.ɵɵelementEnd();
|
|
96323
96644
|
} }
|
|
96324
96645
|
class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
@@ -96810,7 +97131,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
96810
97131
|
static { this.ɵfac = function SymphiqProfileFocusAreasAnalysesDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqProfileFocusAreasAnalysesDashboardComponent)(); }; }
|
|
96811
97132
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqProfileFocusAreasAnalysesDashboardComponent, selectors: [["symphiq-profile-focus-areas-analyses-dashboard"]], hostBindings: function SymphiqProfileFocusAreasAnalysesDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
96812
97133
|
i0.ɵɵlistener("scroll", function SymphiqProfileFocusAreasAnalysesDashboardComponent_scroll_HostBindingHandler() { return ctx.onScroll(); }, i0.ɵɵresolveWindow);
|
|
96813
|
-
} }, inputs: { requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], embedded: [1, "embedded"], profileAnalyses: [1, "profileAnalyses"], profileFocusAreas: [1, "profileFocusAreas"], itemStatusesProfileFocusArea: [1, "itemStatusesProfileFocusArea"], itemStatusesProfileAnalysis: [1, "itemStatusesProfileAnalysis"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], focusAreaDetails: [1, "focusAreaDetails"], account: [1, "account"], profileFocusAreaQuestions: [1, "profileFocusAreaQuestions"], isOnboarded: [1, "isOnboarded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], users: [1, "users"], isLoading: [1, "isLoading"], forDemo: [1, "forDemo"], currentUser: [1, "currentUser"], maxAccessibleStepId: [1, "maxAccessibleStepId"], viewMode: [1, "viewMode"], displayMode: [1, "displayMode"], currentStepId: [1, "currentStepId"] }, outputs: { navigateToProfileFocusArea: "navigateToProfileFocusArea", navigateToProfileAnalysis: "navigateToProfileAnalysis", stepClick: "stepClick", nextStepClick: "nextStepClick", answerFocusAreaProfileQuestions: "answerFocusAreaProfileQuestions", continueFocusAreaProfileQuestions: "continueFocusAreaProfileQuestions", profileQuestionAnswerSave: "profileQuestionAnswerSave", focusAreaProfileAdminAnswerAction: "focusAreaProfileAdminAnswerAction" }, decls:
|
|
97134
|
+
} }, inputs: { requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], embedded: [1, "embedded"], profileAnalyses: [1, "profileAnalyses"], profileFocusAreas: [1, "profileFocusAreas"], itemStatusesProfileFocusArea: [1, "itemStatusesProfileFocusArea"], itemStatusesProfileAnalysis: [1, "itemStatusesProfileAnalysis"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], focusAreaDetails: [1, "focusAreaDetails"], account: [1, "account"], profileFocusAreaQuestions: [1, "profileFocusAreaQuestions"], isOnboarded: [1, "isOnboarded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], users: [1, "users"], isLoading: [1, "isLoading"], forDemo: [1, "forDemo"], currentUser: [1, "currentUser"], maxAccessibleStepId: [1, "maxAccessibleStepId"], viewMode: [1, "viewMode"], displayMode: [1, "displayMode"], currentStepId: [1, "currentStepId"] }, outputs: { navigateToProfileFocusArea: "navigateToProfileFocusArea", navigateToProfileAnalysis: "navigateToProfileAnalysis", stepClick: "stepClick", nextStepClick: "nextStepClick", answerFocusAreaProfileQuestions: "answerFocusAreaProfileQuestions", continueFocusAreaProfileQuestions: "continueFocusAreaProfileQuestions", profileQuestionAnswerSave: "profileQuestionAnswerSave", focusAreaProfileAdminAnswerAction: "focusAreaProfileAdminAnswerAction" }, decls: 33, vars: 29, 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, "title", "subtitle", "viewMode", "showControls", "embedded", "scrollEvent"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "container", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8", "md:py-12", "relative", "z-10"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", "mb-8", 3, "ngClass"], [1, "px-8", "py-8"], [1, "flex", "items-start", "gap-6"], [1, "flex-shrink-0", "w-16", "h-16", "rounded-2xl", "flex", "items-center", "justify-center", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-8", "h-8"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"], [1, "flex-1"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-3", 3, "ngClass"], [3, "viewMode", "profileStatusCounts", "analysisStatusCounts", "allReviewed", "hasItems", "config"], [1, "grid", "grid-cols-1", "lg:grid-cols-3", "gap-6", "mb-6"], [1, "lg:col-span-2", "space-y-3"], [1, "text-base", "leading-relaxed", 3, "ngClass"], [1, "font-semibold"], [1, "lg:col-span-1"], ["currentStepId", "focus-areas", 3, "viewMode", "focusAreaDetails"], [1, "mt-6", "block", 3, "viewMode", "items", "analysisDate", "analysisDatePreposition"], ["title", "Continue Your Journey", "description", "The final step\u2014Metric Analysis\u2014lets you provide funnel-specific context for each conversion point. This granular knowledge ensures recommendations address the precise bottlenecks in your customer journey, creating a complete picture from top-of-funnel awareness to revenue.", 1, "mt-6", "block", 3, "viewMode"], ["title", "Loading Focus Area Data", "subtitle", "Please wait while we retrieve your focus areas...", "size", "large", 3, "viewMode"], [3, "viewMode", "cards", "config"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "cardClick", "viewMode", "cards", "config"], [3, "closeModal"]], template: function SymphiqProfileFocusAreasAnalysesDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
96814
97135
|
i0.ɵɵelementStart(0, "div", 0);
|
|
96815
97136
|
i0.ɵɵelement(1, "div", 1)(2, "symphiq-scroll-progress-bar", 2);
|
|
96816
97137
|
i0.ɵɵelementStart(3, "div", 3);
|
|
@@ -96839,11 +97160,10 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
96839
97160
|
i0.ɵɵelementEnd()();
|
|
96840
97161
|
i0.ɵɵelement(27, "symphiq-what-youll-see-below", 22)(28, "symphiq-continue-your-journey", 23);
|
|
96841
97162
|
i0.ɵɵelementEnd()()()();
|
|
96842
|
-
i0.ɵɵ
|
|
96843
|
-
i0.ɵɵ
|
|
96844
|
-
i0.ɵɵ
|
|
96845
|
-
i0.ɵɵ
|
|
96846
|
-
i0.ɵɵelement(31, "symphiq-tooltip-container");
|
|
97163
|
+
i0.ɵɵconditionalCreate(29, SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_29_Template, 1, 1, "symphiq-loading-card", 24)(30, SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_30_Template, 1, 3, "symphiq-profile-analysis-card-grid", 25);
|
|
97164
|
+
i0.ɵɵelementEnd()();
|
|
97165
|
+
i0.ɵɵconditionalCreate(31, SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_31_Template, 1, 0, "symphiq-search-modal");
|
|
97166
|
+
i0.ɵɵelement(32, "symphiq-tooltip-container");
|
|
96847
97167
|
i0.ɵɵelementEnd();
|
|
96848
97168
|
} if (rf & 2) {
|
|
96849
97169
|
i0.ɵɵclassProp("min-h-screen", !ctx.embedded());
|
|
@@ -96874,10 +97194,10 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
96874
97194
|
i0.ɵɵadvance();
|
|
96875
97195
|
i0.ɵɵproperty("viewMode", ctx.viewMode());
|
|
96876
97196
|
i0.ɵɵadvance();
|
|
96877
|
-
i0.ɵɵ
|
|
96878
|
-
i0.ɵɵadvance();
|
|
96879
|
-
i0.ɵɵconditional(ctx.showSearchModal() ?
|
|
96880
|
-
} }, dependencies: [CommonModule, i1$1.NgClass, ContinueYourJourneyComponent, DashboardHeaderComponent, ScrollProgressBarComponent, SearchModalComponent, JourneyProgressIndicatorComponent, ConfidenceLevelCardComponent, TooltipContainerComponent, ProfileAnalysisStatusSummaryComponent, ProfileAnalysisCardGridComponent, WhatYoullSeeBelowComponent], styles: ["@keyframes _ngcontent-%COMP%_review-pulse{0%,to{box-shadow:0 0 #3b82f680}50%{box-shadow:0 0 0 8px #3b82f600}}.animate-review-pulse[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_review-pulse 2s ease-in-out infinite}@keyframes _ngcontent-%COMP%_status-pop{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}.status-badge[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_status-pop .3s ease-out;transition:all .3s ease-out}@keyframes _ngcontent-%COMP%_alert-pulse{0%,to{box-shadow:0 0 #ef444466}50%{box-shadow:0 0 0 6px #ef444400}}.animate-alert-pulse[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_alert-pulse 4s ease-in-out infinite}"], data: { animation: [
|
|
97197
|
+
i0.ɵɵconditional(ctx.isLoading() ? 29 : 30);
|
|
97198
|
+
i0.ɵɵadvance(2);
|
|
97199
|
+
i0.ɵɵconditional(ctx.showSearchModal() ? 31 : -1);
|
|
97200
|
+
} }, dependencies: [CommonModule, i1$1.NgClass, ContinueYourJourneyComponent, DashboardHeaderComponent, ScrollProgressBarComponent, SearchModalComponent, JourneyProgressIndicatorComponent, ConfidenceLevelCardComponent, TooltipContainerComponent, ProfileAnalysisStatusSummaryComponent, ProfileAnalysisCardGridComponent, WhatYoullSeeBelowComponent, LoadingCardComponent], styles: ["@keyframes _ngcontent-%COMP%_review-pulse{0%,to{box-shadow:0 0 #3b82f680}50%{box-shadow:0 0 0 8px #3b82f600}}.animate-review-pulse[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_review-pulse 2s ease-in-out infinite}@keyframes _ngcontent-%COMP%_status-pop{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}.status-badge[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_status-pop .3s ease-out;transition:all .3s ease-out}@keyframes _ngcontent-%COMP%_alert-pulse{0%,to{box-shadow:0 0 #ef444466}50%{box-shadow:0 0 0 6px #ef444400}}.animate-alert-pulse[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_alert-pulse 4s ease-in-out infinite}"], data: { animation: [
|
|
96881
97201
|
trigger('statusBadge', [
|
|
96882
97202
|
transition(':enter', [
|
|
96883
97203
|
style({ opacity: 0, transform: 'scale(0.8)' }),
|
|
@@ -96898,7 +97218,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
96898
97218
|
}
|
|
96899
97219
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SymphiqProfileFocusAreasAnalysesDashboardComponent, [{
|
|
96900
97220
|
type: Component,
|
|
96901
|
-
args: [{ selector: 'symphiq-profile-focus-areas-analyses-dashboard', standalone: true, imports: [CommonModule, ContinueYourJourneyComponent, DashboardHeaderComponent, ScrollProgressBarComponent, SearchModalComponent, JourneyProgressIndicatorComponent, ConfidenceLevelCardComponent, TooltipContainerComponent, ProfileAnalysisStatusSummaryComponent, ProfileAnalysisCardGridComponent, WhatYoullSeeBelowComponent], changeDetection: ChangeDetectionStrategy.OnPush, animations: [
|
|
97221
|
+
args: [{ selector: 'symphiq-profile-focus-areas-analyses-dashboard', standalone: true, imports: [CommonModule, ContinueYourJourneyComponent, DashboardHeaderComponent, ScrollProgressBarComponent, SearchModalComponent, JourneyProgressIndicatorComponent, ConfidenceLevelCardComponent, TooltipContainerComponent, ProfileAnalysisStatusSummaryComponent, ProfileAnalysisCardGridComponent, WhatYoullSeeBelowComponent, LoadingCardComponent], changeDetection: ChangeDetectionStrategy.OnPush, animations: [
|
|
96902
97222
|
trigger('statusBadge', [
|
|
96903
97223
|
transition(':enter', [
|
|
96904
97224
|
style({ opacity: 0, transform: 'scale(0.8)' }),
|
|
@@ -97030,12 +97350,21 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
97030
97350
|
</div>
|
|
97031
97351
|
|
|
97032
97352
|
<!-- Focus Areas Grid -->
|
|
97033
|
-
|
|
97034
|
-
|
|
97035
|
-
|
|
97036
|
-
|
|
97037
|
-
|
|
97038
|
-
|
|
97353
|
+
@if (isLoading()) {
|
|
97354
|
+
<symphiq-loading-card
|
|
97355
|
+
[viewMode]="viewMode()"
|
|
97356
|
+
title="Loading Focus Area Data"
|
|
97357
|
+
subtitle="Please wait while we retrieve your focus areas..."
|
|
97358
|
+
size="large"
|
|
97359
|
+
/>
|
|
97360
|
+
} @else {
|
|
97361
|
+
<symphiq-profile-analysis-card-grid
|
|
97362
|
+
[viewMode]="viewMode()"
|
|
97363
|
+
[cards]="genericCardData()"
|
|
97364
|
+
[config]="focusAreaCardConfig"
|
|
97365
|
+
(cardClick)="handleCardClick($event)"
|
|
97366
|
+
/>
|
|
97367
|
+
}
|
|
97039
97368
|
</div>
|
|
97040
97369
|
</div>
|
|
97041
97370
|
|
|
@@ -97053,7 +97382,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
97053
97382
|
type: HostListener,
|
|
97054
97383
|
args: ['window:scroll']
|
|
97055
97384
|
}] }); })();
|
|
97056
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileFocusAreasAnalysesDashboardComponent, { className: "SymphiqProfileFocusAreasAnalysesDashboardComponent", filePath: "lib/components/profile-analyses-focus-areas-dashboard/symphiq-profile-focus-areas-analyses-dashboard.component.ts", lineNumber:
|
|
97385
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileFocusAreasAnalysesDashboardComponent, { className: "SymphiqProfileFocusAreasAnalysesDashboardComponent", filePath: "lib/components/profile-analyses-focus-areas-dashboard/symphiq-profile-focus-areas-analyses-dashboard.component.ts", lineNumber: 298 }); })();
|
|
97057
97386
|
|
|
97058
97387
|
const _c0$8 = () => [];
|
|
97059
97388
|
function SymphiqProfileFocusAreaDashboardComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|