@eric-emg/symphiq-components 1.3.2 → 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);
|
|
@@ -92767,7 +92811,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Template(rf,
|
|
|
92767
92811
|
} }
|
|
92768
92812
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
92769
92813
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
92770
|
-
i0.ɵɵelementStart(0, "div", 32)(1, "symphiq-profile-status-card",
|
|
92814
|
+
i0.ɵɵelementStart(0, "div", 32)(1, "symphiq-profile-status-card", 34, 0);
|
|
92771
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)); });
|
|
92772
92816
|
i0.ɵɵelementEnd()();
|
|
92773
92817
|
} if (rf & 2) {
|
|
@@ -92776,7 +92820,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92776
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());
|
|
92777
92821
|
} }
|
|
92778
92822
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
92779
|
-
i0.ɵɵelementStart(0, "div", 32)(1, "div",
|
|
92823
|
+
i0.ɵɵelementStart(0, "div", 32)(1, "div", 33);
|
|
92780
92824
|
i0.ɵɵelement(2, "symphiq-content-generation-progress", 35);
|
|
92781
92825
|
i0.ɵɵelementEnd()();
|
|
92782
92826
|
} if (rf & 2) {
|
|
@@ -92787,7 +92831,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92787
92831
|
i0.ɵɵproperty("itemStatus", ctx_r1.itemStatusProfileShop())("viewMode", ctx_r1.viewMode());
|
|
92788
92832
|
} }
|
|
92789
92833
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
92790
|
-
i0.ɵɵelementStart(0, "div",
|
|
92834
|
+
i0.ɵɵelementStart(0, "div", 33);
|
|
92791
92835
|
i0.ɵɵelement(1, "symphiq-content-generation-progress", 35);
|
|
92792
92836
|
i0.ɵɵelementEnd();
|
|
92793
92837
|
} if (rf & 2) {
|
|
@@ -92797,7 +92841,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92797
92841
|
i0.ɵɵproperty("itemStatus", ctx_r1.itemStatusProfileShop())("viewMode", ctx_r1.viewMode());
|
|
92798
92842
|
} }
|
|
92799
92843
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
92800
|
-
i0.ɵɵelementStart(0, "div",
|
|
92844
|
+
i0.ɵɵelementStart(0, "div", 33);
|
|
92801
92845
|
i0.ɵɵelement(1, "symphiq-content-generation-progress", 37);
|
|
92802
92846
|
i0.ɵɵelementEnd();
|
|
92803
92847
|
} if (rf & 2) {
|
|
@@ -92817,7 +92861,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92817
92861
|
} }
|
|
92818
92862
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
92819
92863
|
i0.ɵɵelementStart(0, "div", 32);
|
|
92820
|
-
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);
|
|
92821
92865
|
i0.ɵɵelementEnd();
|
|
92822
92866
|
} if (rf & 2) {
|
|
92823
92867
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -92882,31 +92926,68 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92882
92926
|
i0.ɵɵconditional(!ctx_r1.hasBillingCurrency() || ctx_r1.isEditingCurrency() ? 1 : ctx_r1.showPlanSelection() ? 2 : 3);
|
|
92883
92927
|
} }
|
|
92884
92928
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
92885
|
-
|
|
92886
|
-
i0.ɵɵ
|
|
92887
|
-
i0.ɵɵ
|
|
92888
|
-
i0.ɵɵelementEnd()();
|
|
92929
|
+
i0.ɵɵelementStart(0, "div");
|
|
92930
|
+
i0.ɵɵelement(1, "symphiq-collapsible-analysis-section-group", 45);
|
|
92931
|
+
i0.ɵɵelementEnd();
|
|
92889
92932
|
} if (rf & 2) {
|
|
92890
92933
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
92891
92934
|
i0.ɵɵadvance();
|
|
92892
|
-
i0.ɵɵproperty("
|
|
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());
|
|
92893
92936
|
} }
|
|
92894
92937
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
92895
|
-
i0.ɵɵ
|
|
92896
|
-
i0.ɵɵ
|
|
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 ");
|
|
92897
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()()()()();
|
|
92898
92961
|
} if (rf & 2) {
|
|
92899
92962
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
92963
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardContainerClasses());
|
|
92900
92964
|
i0.ɵɵadvance();
|
|
92901
|
-
i0.ɵɵproperty("
|
|
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());
|
|
92902
92983
|
} }
|
|
92903
92984
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
92904
92985
|
i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_0_Template, 3, 14, "div", 32);
|
|
92905
92986
|
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_1_Template, 3, 3, "div", 32);
|
|
92906
92987
|
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Template, 4, 1, "div", 32);
|
|
92907
92988
|
i0.ɵɵconditionalCreate(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Template, 4, 1, "div", 32);
|
|
92908
|
-
i0.ɵɵconditionalCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_4_Template, 2,
|
|
92909
|
-
i0.ɵɵconditionalCreate(5, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template,
|
|
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);
|
|
92910
92991
|
} if (rf & 2) {
|
|
92911
92992
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
92912
92993
|
i0.ɵɵconditional(ctx_r1.shouldShowShopProfileStatus() && !ctx_r1.isMetricAnalysis() && !ctx_r1.profileAnalysis() ? 0 : -1);
|
|
@@ -92917,20 +92998,20 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Template(rf,
|
|
|
92917
92998
|
i0.ɵɵadvance();
|
|
92918
92999
|
i0.ɵɵconditional(!ctx_r1.isSubscriptionActive() && !ctx_r1.isMetricAnalysis() ? 3 : -1);
|
|
92919
93000
|
i0.ɵɵadvance();
|
|
92920
|
-
i0.ɵɵconditional(ctx_r1.
|
|
93001
|
+
i0.ɵɵconditional(ctx_r1.nonStrategicSections().length > 0 && !ctx_r1.isLoading() ? 4 : -1);
|
|
92921
93002
|
i0.ɵɵadvance();
|
|
92922
|
-
i0.ɵɵconditional(ctx_r1.
|
|
93003
|
+
i0.ɵɵconditional(ctx_r1.shouldShowPostAnalysisShopProfile() ? 5 : -1);
|
|
92923
93004
|
} }
|
|
92924
93005
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
92925
|
-
i0.ɵɵelement(0, "symphiq-grade-badge",
|
|
93006
|
+
i0.ɵɵelement(0, "symphiq-grade-badge", 67);
|
|
92926
93007
|
} if (rf & 2) {
|
|
92927
93008
|
const summary_r10 = i0.ɵɵnextContext();
|
|
92928
93009
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
92929
93010
|
i0.ɵɵproperty("grade", summary_r10.overallGrade)("gradeRationale", summary_r10.gradeRationale || "")("viewMode", ctx_r1.viewMode());
|
|
92930
93011
|
} }
|
|
92931
93012
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
92932
|
-
i0.ɵɵelementStart(0, "div",
|
|
92933
|
-
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder",
|
|
93013
|
+
i0.ɵɵelementStart(0, "div", 80);
|
|
93014
|
+
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 83);
|
|
92934
93015
|
i0.ɵɵelementEnd();
|
|
92935
93016
|
} if (rf & 2) {
|
|
92936
93017
|
const summary_r10 = i0.ɵɵnextContext(2);
|
|
@@ -92939,15 +93020,15 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
92939
93020
|
i0.ɵɵproperty("visual", summary_r10.napkinVisual)("viewMode", ctx_r1.viewMode());
|
|
92940
93021
|
} }
|
|
92941
93022
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
92942
|
-
i0.ɵɵelementStart(0, "div",
|
|
93023
|
+
i0.ɵɵelementStart(0, "div", 68)(1, "h3", 78);
|
|
92943
93024
|
i0.ɵɵtext(2, " Analysis Narrative ");
|
|
92944
93025
|
i0.ɵɵelementEnd();
|
|
92945
|
-
i0.ɵɵelementStart(3, "div",
|
|
92946
|
-
i0.ɵɵconditionalCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Conditional_4_Template, 2, 2, "div",
|
|
92947
|
-
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);
|
|
92948
93029
|
i0.ɵɵtext(6);
|
|
92949
93030
|
i0.ɵɵelementEnd();
|
|
92950
|
-
i0.ɵɵelement(7, "div",
|
|
93031
|
+
i0.ɵɵelement(7, "div", 82);
|
|
92951
93032
|
i0.ɵɵelementEnd()();
|
|
92952
93033
|
} if (rf & 2) {
|
|
92953
93034
|
const summary_r10 = i0.ɵɵnextContext();
|
|
@@ -92963,10 +93044,10 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
92963
93044
|
i0.ɵɵtextInterpolate1(" ", summary_r10.narrative, " ");
|
|
92964
93045
|
} }
|
|
92965
93046
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
92966
|
-
i0.ɵɵelementStart(0, "div",
|
|
93047
|
+
i0.ɵɵelementStart(0, "div", 92);
|
|
92967
93048
|
i0.ɵɵnamespaceSVG();
|
|
92968
|
-
i0.ɵɵelementStart(1, "svg",
|
|
92969
|
-
i0.ɵɵelement(2, "path",
|
|
93049
|
+
i0.ɵɵelementStart(1, "svg", 94);
|
|
93050
|
+
i0.ɵɵelement(2, "path", 95);
|
|
92970
93051
|
i0.ɵɵelementEnd();
|
|
92971
93052
|
i0.ɵɵnamespaceHTML();
|
|
92972
93053
|
i0.ɵɵelementStart(3, "span");
|
|
@@ -92980,10 +93061,10 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
92980
93061
|
i0.ɵɵtextInterpolate(entry_r11.win.estimatedTimeframe);
|
|
92981
93062
|
} }
|
|
92982
93063
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_13_Template(rf, ctx) { if (rf & 1) {
|
|
92983
|
-
i0.ɵɵelementStart(0, "div",
|
|
93064
|
+
i0.ɵɵelementStart(0, "div", 93)(1, "h4", 96);
|
|
92984
93065
|
i0.ɵɵtext(2, " Related Goal ");
|
|
92985
93066
|
i0.ɵɵelementEnd();
|
|
92986
|
-
i0.ɵɵelement(3, "symphiq-related-goal-chips",
|
|
93067
|
+
i0.ɵɵelement(3, "symphiq-related-goal-chips", 97);
|
|
92987
93068
|
i0.ɵɵelementEnd();
|
|
92988
93069
|
} if (rf & 2) {
|
|
92989
93070
|
const entry_r11 = i0.ɵɵnextContext().$implicit;
|
|
@@ -92994,20 +93075,20 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
92994
93075
|
i0.ɵɵproperty("relatedGoalIds", i0.ɵɵpureFunction1(4, _c5, entry_r11.win.relatedGoalId))("allGoals", ctx_r1.allGoals())("viewMode", ctx_r1.viewMode());
|
|
92995
93076
|
} }
|
|
92996
93077
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Template(rf, ctx) { if (rf & 1) {
|
|
92997
|
-
i0.ɵɵelementStart(0, "div",
|
|
93078
|
+
i0.ɵɵelementStart(0, "div", 85)(1, "div", 86)(2, "div", 87)(3, "span", 88);
|
|
92998
93079
|
i0.ɵɵtext(4);
|
|
92999
93080
|
i0.ɵɵelementEnd();
|
|
93000
|
-
i0.ɵɵelementStart(5, "p",
|
|
93081
|
+
i0.ɵɵelementStart(5, "p", 89);
|
|
93001
93082
|
i0.ɵɵtext(6);
|
|
93002
93083
|
i0.ɵɵelementEnd()();
|
|
93003
|
-
i0.ɵɵelementStart(7, "div",
|
|
93084
|
+
i0.ɵɵelementStart(7, "div", 90)(8, "span", 91);
|
|
93004
93085
|
i0.ɵɵtext(9);
|
|
93005
93086
|
i0.ɵɵelementEnd();
|
|
93006
|
-
i0.ɵɵelementStart(10, "span",
|
|
93087
|
+
i0.ɵɵelementStart(10, "span", 91);
|
|
93007
93088
|
i0.ɵɵtext(11);
|
|
93008
93089
|
i0.ɵɵelementEnd()();
|
|
93009
|
-
i0.ɵɵconditionalCreate(12, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_12_Template, 5, 2, "div",
|
|
93010
|
-
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);
|
|
93011
93092
|
i0.ɵɵelementEnd()();
|
|
93012
93093
|
} if (rf & 2) {
|
|
93013
93094
|
const entry_r11 = ctx.$implicit;
|
|
@@ -93035,11 +93116,11 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93035
93116
|
i0.ɵɵconditional(entry_r11.win.relatedGoalId ? 13 : -1);
|
|
93036
93117
|
} }
|
|
93037
93118
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_Template(rf, ctx) { if (rf & 1) {
|
|
93038
|
-
i0.ɵɵelementStart(0, "div",
|
|
93119
|
+
i0.ɵɵelementStart(0, "div", 77)(1, "h3", 51);
|
|
93039
93120
|
i0.ɵɵtext(2, " Quick Wins ");
|
|
93040
93121
|
i0.ɵɵelementEnd();
|
|
93041
|
-
i0.ɵɵelementStart(3, "div",
|
|
93042
|
-
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);
|
|
93043
93124
|
i0.ɵɵelementEnd()();
|
|
93044
93125
|
} if (rf & 2) {
|
|
93045
93126
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
@@ -93050,55 +93131,55 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93050
93131
|
} }
|
|
93051
93132
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
93052
93133
|
const _r9 = i0.ɵɵgetCurrentView();
|
|
93053
|
-
i0.ɵɵelementStart(0, "section",
|
|
93134
|
+
i0.ɵɵelementStart(0, "section", 58)(1, "div", 61)(2, "div", 62)(3, "div", 63)(4, "div", 64)(5, "h2", 65);
|
|
93054
93135
|
i0.ɵɵtext(6, " Executive Summary ");
|
|
93055
93136
|
i0.ɵɵelementEnd();
|
|
93056
|
-
i0.ɵɵelementStart(7, "p",
|
|
93137
|
+
i0.ɵɵelementStart(7, "p", 66);
|
|
93057
93138
|
i0.ɵɵtext(8);
|
|
93058
93139
|
i0.ɵɵelementEnd()();
|
|
93059
|
-
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);
|
|
93060
93141
|
i0.ɵɵelementEnd();
|
|
93061
|
-
i0.ɵɵconditionalCreate(10, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Template, 8, 5, "div",
|
|
93062
|
-
i0.ɵɵelementStart(11, "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);
|
|
93063
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)); });
|
|
93064
|
-
i0.ɵɵelementStart(13, "div",
|
|
93145
|
+
i0.ɵɵelementStart(13, "div", 71);
|
|
93065
93146
|
i0.ɵɵtext(14, " Key Strengths ");
|
|
93066
93147
|
i0.ɵɵelementEnd();
|
|
93067
|
-
i0.ɵɵelementStart(15, "div",
|
|
93148
|
+
i0.ɵɵelementStart(15, "div", 72);
|
|
93068
93149
|
i0.ɵɵtext(16);
|
|
93069
93150
|
i0.ɵɵelementEnd();
|
|
93070
|
-
i0.ɵɵelementStart(17, "div",
|
|
93151
|
+
i0.ɵɵelementStart(17, "div", 73)(18, "span", 74);
|
|
93071
93152
|
i0.ɵɵtext(19, "View Details");
|
|
93072
93153
|
i0.ɵɵelementEnd();
|
|
93073
|
-
i0.ɵɵelement(20, "symphiq-icon",
|
|
93154
|
+
i0.ɵɵelement(20, "symphiq-icon", 75);
|
|
93074
93155
|
i0.ɵɵelementEnd()();
|
|
93075
|
-
i0.ɵɵelementStart(21, "button",
|
|
93156
|
+
i0.ɵɵelementStart(21, "button", 70);
|
|
93076
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)); });
|
|
93077
|
-
i0.ɵɵelementStart(22, "div",
|
|
93158
|
+
i0.ɵɵelementStart(22, "div", 71);
|
|
93078
93159
|
i0.ɵɵtext(23, " Critical Gaps ");
|
|
93079
93160
|
i0.ɵɵelementEnd();
|
|
93080
|
-
i0.ɵɵelementStart(24, "div",
|
|
93161
|
+
i0.ɵɵelementStart(24, "div", 72);
|
|
93081
93162
|
i0.ɵɵtext(25);
|
|
93082
93163
|
i0.ɵɵelementEnd();
|
|
93083
|
-
i0.ɵɵelementStart(26, "div",
|
|
93164
|
+
i0.ɵɵelementStart(26, "div", 73)(27, "span", 74);
|
|
93084
93165
|
i0.ɵɵtext(28, "View Details");
|
|
93085
93166
|
i0.ɵɵelementEnd();
|
|
93086
|
-
i0.ɵɵelement(29, "symphiq-icon",
|
|
93167
|
+
i0.ɵɵelement(29, "symphiq-icon", 75);
|
|
93087
93168
|
i0.ɵɵelementEnd()();
|
|
93088
|
-
i0.ɵɵelementStart(30, "button",
|
|
93169
|
+
i0.ɵɵelementStart(30, "button", 70);
|
|
93089
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()); });
|
|
93090
|
-
i0.ɵɵelementStart(31, "div",
|
|
93171
|
+
i0.ɵɵelementStart(31, "div", 71);
|
|
93091
93172
|
i0.ɵɵtext(32, " Quick Wins ");
|
|
93092
93173
|
i0.ɵɵelementEnd();
|
|
93093
|
-
i0.ɵɵelementStart(33, "div",
|
|
93174
|
+
i0.ɵɵelementStart(33, "div", 72);
|
|
93094
93175
|
i0.ɵɵtext(34);
|
|
93095
93176
|
i0.ɵɵelementEnd();
|
|
93096
|
-
i0.ɵɵelementStart(35, "div",
|
|
93177
|
+
i0.ɵɵelementStart(35, "div", 73)(36, "span", 74);
|
|
93097
93178
|
i0.ɵɵtext(37, "Details Below");
|
|
93098
93179
|
i0.ɵɵelementEnd();
|
|
93099
|
-
i0.ɵɵelement(38, "symphiq-icon",
|
|
93180
|
+
i0.ɵɵelement(38, "symphiq-icon", 76);
|
|
93100
93181
|
i0.ɵɵelementEnd()()()()();
|
|
93101
|
-
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);
|
|
93102
93183
|
i0.ɵɵelementEnd();
|
|
93103
93184
|
} if (rf & 2) {
|
|
93104
93185
|
const summary_r10 = ctx;
|
|
@@ -93156,7 +93237,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93156
93237
|
} }
|
|
93157
93238
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
93158
93239
|
const _r12 = i0.ɵɵgetCurrentView();
|
|
93159
|
-
i0.ɵɵelementStart(0, "symphiq-metric-executive-summary",
|
|
93240
|
+
i0.ɵɵelementStart(0, "symphiq-metric-executive-summary", 98);
|
|
93160
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()); });
|
|
93161
93242
|
i0.ɵɵelementEnd();
|
|
93162
93243
|
} if (rf & 2) {
|
|
@@ -93164,21 +93245,21 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93164
93245
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("summary", ctx)("metricName", ctx_r1.metricName())("allGoals", ctx_r1.allGoals());
|
|
93165
93246
|
} }
|
|
93166
93247
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
93167
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
93248
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 99);
|
|
93168
93249
|
} if (rf & 2) {
|
|
93169
93250
|
const sectionList_r13 = i0.ɵɵnextContext();
|
|
93170
93251
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
93171
93252
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r13[0].icon);
|
|
93172
93253
|
} }
|
|
93173
93254
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
93174
|
-
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);
|
|
93175
93256
|
} if (rf & 2) {
|
|
93176
93257
|
const sectionList_r13 = ctx;
|
|
93177
93258
|
i0.ɵɵconditional(sectionList_r13.length > 0 && sectionList_r13[0].icon ? 0 : -1);
|
|
93178
93259
|
} }
|
|
93179
93260
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
93180
|
-
i0.ɵɵelementStart(0, "div",
|
|
93181
|
-
i0.ɵɵelement(1, "symphiq-icon",
|
|
93261
|
+
i0.ɵɵelementStart(0, "div", 102);
|
|
93262
|
+
i0.ɵɵelement(1, "symphiq-icon", 106);
|
|
93182
93263
|
i0.ɵɵelementEnd();
|
|
93183
93264
|
} if (rf & 2) {
|
|
93184
93265
|
const section_r14 = i0.ɵɵnextContext().$implicit;
|
|
@@ -93188,8 +93269,8 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93188
93269
|
i0.ɵɵproperty("icon", section_r14.icon);
|
|
93189
93270
|
} }
|
|
93190
93271
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
93191
|
-
i0.ɵɵelementStart(0, "div",
|
|
93192
|
-
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder",
|
|
93272
|
+
i0.ɵɵelementStart(0, "div", 108);
|
|
93273
|
+
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 83);
|
|
93193
93274
|
i0.ɵɵelementEnd();
|
|
93194
93275
|
} if (rf & 2) {
|
|
93195
93276
|
const section_r14 = i0.ɵɵnextContext(2).$implicit;
|
|
@@ -93198,7 +93279,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93198
93279
|
i0.ɵɵproperty("visual", section_r14.visual)("viewMode", ctx_r1.viewMode());
|
|
93199
93280
|
} }
|
|
93200
93281
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
93201
|
-
i0.ɵɵelementStart(0, "div",
|
|
93282
|
+
i0.ɵɵelementStart(0, "div", 110)(1, "p", 81);
|
|
93202
93283
|
i0.ɵɵtext(2);
|
|
93203
93284
|
i0.ɵɵelementEnd()();
|
|
93204
93285
|
} if (rf & 2) {
|
|
@@ -93211,42 +93292,42 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93211
93292
|
i0.ɵɵtextInterpolate1(" ", section_r14.description, " ");
|
|
93212
93293
|
} }
|
|
93213
93294
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
93214
|
-
i0.ɵɵelementStart(0, "div",
|
|
93215
|
-
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div",
|
|
93216
|
-
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);
|
|
93217
93298
|
i0.ɵɵelementEnd();
|
|
93218
93299
|
} if (rf & 2) {
|
|
93219
93300
|
const ctx_r14 = i0.ɵɵnextContext();
|
|
93220
93301
|
const section_r14 = ctx_r14.$implicit;
|
|
93221
|
-
const ɵ$
|
|
93222
|
-
i0.ɵɵclassProp("lg:flex-row-reverse", ɵ$
|
|
93302
|
+
const ɵ$index_261_r16 = ctx_r14.$index;
|
|
93303
|
+
i0.ɵɵclassProp("lg:flex-row-reverse", ɵ$index_261_r16 % 2 === 0);
|
|
93223
93304
|
i0.ɵɵadvance();
|
|
93224
93305
|
i0.ɵɵconditional(section_r14.visual && section_r14.visual.enabled ? 1 : -1);
|
|
93225
93306
|
i0.ɵɵadvance();
|
|
93226
93307
|
i0.ɵɵconditional(section_r14.description ? 2 : -1);
|
|
93227
93308
|
} }
|
|
93228
93309
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
93229
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
93310
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 99);
|
|
93230
93311
|
} if (rf & 2) {
|
|
93231
|
-
const ɵ$
|
|
93312
|
+
const ɵ$index_261_r16 = i0.ɵɵnextContext().$index;
|
|
93232
93313
|
const sectionList_r17 = i0.ɵɵnextContext();
|
|
93233
93314
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
93234
|
-
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r17[ɵ$
|
|
93315
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r17[ɵ$index_261_r16 + 1].icon);
|
|
93235
93316
|
} }
|
|
93236
93317
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
93237
|
-
i0.ɵɵelementStart(0, "div",
|
|
93238
|
-
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_2_Template, 2, 2, "div",
|
|
93239
|
-
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);
|
|
93240
93321
|
i0.ɵɵtext(5);
|
|
93241
93322
|
i0.ɵɵelementEnd()()();
|
|
93242
|
-
i0.ɵɵconditionalCreate(6, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Template, 3, 4, "div",
|
|
93243
|
-
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);
|
|
93244
93325
|
i0.ɵɵelementEnd();
|
|
93245
|
-
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);
|
|
93246
93327
|
} if (rf & 2) {
|
|
93247
93328
|
const section_r14 = ctx.$implicit;
|
|
93248
|
-
const ɵ$
|
|
93249
|
-
const ɵ$
|
|
93329
|
+
const ɵ$index_261_r16 = ctx.$index;
|
|
93330
|
+
const ɵ$count_261_r18 = ctx.$count;
|
|
93250
93331
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
93251
93332
|
i0.ɵɵproperty("id", "section-" + section_r14.id)("ngClass", ctx_r1.getSectionCardClasses());
|
|
93252
93333
|
i0.ɵɵadvance(2);
|
|
@@ -93258,12 +93339,12 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93258
93339
|
i0.ɵɵadvance();
|
|
93259
93340
|
i0.ɵɵconditional(section_r14.description || section_r14.visual && section_r14.visual.enabled ? 6 : -1);
|
|
93260
93341
|
i0.ɵɵadvance();
|
|
93261
|
-
i0.ɵɵproperty("section", section_r14)("executiveSummary", section_r14.id === "executive-summary" ? ctx_r1.executiveSummary() : undefined)("viewMode", ctx_r1.viewMode())("sectionIndex", ɵ$
|
|
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());
|
|
93262
93343
|
i0.ɵɵadvance();
|
|
93263
|
-
i0.ɵɵconditional(!(ɵ$
|
|
93344
|
+
i0.ɵɵconditional(!(ɵ$index_261_r16 === ɵ$count_261_r18 - 1) ? 8 : -1);
|
|
93264
93345
|
} }
|
|
93265
93346
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
93266
|
-
i0.ɵɵelementStart(0, "section",
|
|
93347
|
+
i0.ɵɵelementStart(0, "section", 60);
|
|
93267
93348
|
i0.ɵɵrepeaterCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Template, 9, 16, null, null, _forTrack1$1);
|
|
93268
93349
|
i0.ɵɵelementEnd();
|
|
93269
93350
|
} if (rf & 2) {
|
|
@@ -93271,10 +93352,10 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93271
93352
|
i0.ɵɵrepeater(ctx);
|
|
93272
93353
|
} }
|
|
93273
93354
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
93274
|
-
i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template, 40, 34, "section",
|
|
93275
|
-
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);
|
|
93276
93357
|
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Template, 1, 1);
|
|
93277
|
-
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);
|
|
93278
93359
|
} if (rf & 2) {
|
|
93279
93360
|
let tmp_1_0;
|
|
93280
93361
|
let tmp_2_0;
|
|
@@ -93356,7 +93437,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_22_Template(rf
|
|
|
93356
93437
|
} }
|
|
93357
93438
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_26_Template(rf, ctx) { if (rf & 1) {
|
|
93358
93439
|
const _r27 = i0.ɵɵgetCurrentView();
|
|
93359
|
-
i0.ɵɵelementStart(0, "symphiq-sticky-subscription-continue-button",
|
|
93440
|
+
i0.ɵɵelementStart(0, "symphiq-sticky-subscription-continue-button", 111);
|
|
93360
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()); });
|
|
93361
93442
|
i0.ɵɵelementEnd();
|
|
93362
93443
|
} if (rf & 2) {
|
|
@@ -93365,7 +93446,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_26_Template(rf
|
|
|
93365
93446
|
} }
|
|
93366
93447
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template(rf, ctx) { if (rf & 1) {
|
|
93367
93448
|
const _r28 = i0.ɵɵgetCurrentView();
|
|
93368
|
-
i0.ɵɵelementStart(0, "symphiq-profile-sticky-footer",
|
|
93449
|
+
i0.ɵɵelementStart(0, "symphiq-profile-sticky-footer", 112);
|
|
93369
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()); });
|
|
93370
93451
|
i0.ɵɵelementEnd();
|
|
93371
93452
|
} if (rf & 2) {
|
|
@@ -93374,18 +93455,18 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template(rf
|
|
|
93374
93455
|
} }
|
|
93375
93456
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template(rf, ctx) { if (rf & 1) {
|
|
93376
93457
|
const _r29 = i0.ɵɵgetCurrentView();
|
|
93377
|
-
i0.ɵɵelementStart(0, "div", 25)(1, "div",
|
|
93458
|
+
i0.ɵɵelementStart(0, "div", 25)(1, "div", 113)(2, "div", 114)(3, "button", 115);
|
|
93378
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()); });
|
|
93379
93460
|
i0.ɵɵtext(4, " Cancel ");
|
|
93380
93461
|
i0.ɵɵelementEnd();
|
|
93381
|
-
i0.ɵɵelementStart(5, "button",
|
|
93462
|
+
i0.ɵɵelementStart(5, "button", 116);
|
|
93382
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()); });
|
|
93383
93464
|
i0.ɵɵelementStart(6, "span");
|
|
93384
93465
|
i0.ɵɵtext(7, "Continue to Plans");
|
|
93385
93466
|
i0.ɵɵelementEnd();
|
|
93386
93467
|
i0.ɵɵnamespaceSVG();
|
|
93387
|
-
i0.ɵɵelementStart(8, "svg",
|
|
93388
|
-
i0.ɵɵelement(9, "path",
|
|
93468
|
+
i0.ɵɵelementStart(8, "svg", 117);
|
|
93469
|
+
i0.ɵɵelement(9, "path", 118);
|
|
93389
93470
|
i0.ɵɵelementEnd()()()()();
|
|
93390
93471
|
} if (rf & 2) {
|
|
93391
93472
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -93412,6 +93493,16 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
93412
93493
|
showFocusAreaToggle: true,
|
|
93413
93494
|
showFocusAreaChips: false
|
|
93414
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;
|
|
93415
93506
|
this.shopProfileStickyFooterButtonConfig = {
|
|
93416
93507
|
startText: 'Start Answering Questions',
|
|
93417
93508
|
continueText: 'Continue Answering Questions',
|
|
@@ -93546,6 +93637,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
93546
93637
|
const profileAnalysis = this.profileAnalysis();
|
|
93547
93638
|
return this.isSimplifiedView() &&
|
|
93548
93639
|
!this.isMetricAnalysis() &&
|
|
93640
|
+
!this.isLoading() &&
|
|
93549
93641
|
!!profileAnalysis &&
|
|
93550
93642
|
profileAnalysis.selfContentStatus === AiDynamicContentStatusEnum.GENERATED;
|
|
93551
93643
|
}, ...(ngDevMode ? [{ debugName: "shouldShowPostAnalysisShopProfile" }] : []));
|
|
@@ -93639,6 +93731,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
93639
93731
|
this.viewModeService = inject(ViewModeService);
|
|
93640
93732
|
this.profileContextService = inject(ProfileContextService);
|
|
93641
93733
|
this.profileItemLookupService = inject(ProfileItemLookupService);
|
|
93734
|
+
this.router = inject(Router);
|
|
93642
93735
|
this.IconSourceEnum = IconSourceEnum;
|
|
93643
93736
|
this.scrollProgress = signal(0, ...(ngDevMode ? [{ debugName: "scrollProgress" }] : []));
|
|
93644
93737
|
this.currentDisplayMode = signal(DisplayModeEnum.SIMPLIFIED, ...(ngDevMode ? [{ debugName: "currentDisplayMode" }] : []));
|
|
@@ -94005,6 +94098,12 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94005
94098
|
if (storedCurrency) {
|
|
94006
94099
|
this.selectedCurrency.set(storedCurrency);
|
|
94007
94100
|
}
|
|
94101
|
+
this.loadShopProfileCardExpandedState();
|
|
94102
|
+
this.shopProfileCardRouterSubscription = this.router.events
|
|
94103
|
+
.pipe(filter(event => event instanceof NavigationStart))
|
|
94104
|
+
.subscribe(() => {
|
|
94105
|
+
this.clearShopProfileCardExpandedState();
|
|
94106
|
+
});
|
|
94008
94107
|
// Initialize ProfileItemLookupService with business profile
|
|
94009
94108
|
// This enables competitor and focus area chip lookups in business insights
|
|
94010
94109
|
const profileToUse = this.profile();
|
|
@@ -94042,6 +94141,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94042
94141
|
ngOnDestroy() {
|
|
94043
94142
|
this.headerScrollService.resetState();
|
|
94044
94143
|
this.viewModeService.setViewMode('compact');
|
|
94144
|
+
this.shopProfileCardRouterSubscription?.unsubscribe();
|
|
94045
94145
|
}
|
|
94046
94146
|
openSearch() {
|
|
94047
94147
|
this.isSearchOpen.set(true);
|
|
@@ -94420,6 +94520,73 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94420
94520
|
this.shopProfileStatusCard.openAllQuestionsAnswerMode();
|
|
94421
94521
|
}
|
|
94422
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
|
+
}
|
|
94423
94590
|
static { this.ɵfac = function SymphiqProfileShopAnalysisDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqProfileShopAnalysisDashboardComponent)(); }; }
|
|
94424
94591
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqProfileShopAnalysisDashboardComponent, selectors: [["symphiq-profile-shop-analysis-dashboard"]], viewQuery: function SymphiqProfileShopAnalysisDashboardComponent_Query(rf, ctx) { if (rf & 1) {
|
|
94425
94592
|
i0.ɵɵviewQuery(ModalComponent, 5)(_c0$9, 5)(_c1$2, 5);
|
|
@@ -94430,7 +94597,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94430
94597
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.planSelectionContainer = _t.first);
|
|
94431
94598
|
} }, hostBindings: function SymphiqProfileShopAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
94432
94599
|
i0.ɵɵlistener("scroll", function SymphiqProfileShopAnalysisDashboardComponent_scroll_HostBindingHandler() { return ctx.onWindowScroll(); }, i0.ɵɵresolveWindow);
|
|
94433
|
-
} }, 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) {
|
|
94434
94601
|
i0.ɵɵelementStart(0, "div", 2);
|
|
94435
94602
|
i0.ɵɵelement(1, "div", 3)(2, "symphiq-scroll-progress-bar", 4);
|
|
94436
94603
|
i0.ɵɵelementStart(3, "div", 5)(4, "symphiq-dashboard-header", 6);
|
|
@@ -94745,27 +94912,6 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94745
94912
|
</div>
|
|
94746
94913
|
}
|
|
94747
94914
|
|
|
94748
|
-
<!-- Shop Profile (Post-Analysis) -->
|
|
94749
|
-
@if (shouldShowPostAnalysisShopProfile()) {
|
|
94750
|
-
<div class="mb-8">
|
|
94751
|
-
<symphiq-profile-status-card
|
|
94752
|
-
[viewMode]="viewMode()"
|
|
94753
|
-
[totalQuestions]="totalShopQuestions()"
|
|
94754
|
-
[answeredQuestions]="answeredShopQuestions()"
|
|
94755
|
-
[questions]="profileShopQuestions() || []"
|
|
94756
|
-
[profileAnswers]="profileAnswers() || []"
|
|
94757
|
-
[profileAnswerHistories]="profileAnswerHistories() || []"
|
|
94758
|
-
[users]="users() || []"
|
|
94759
|
-
[config]="shopProfileStatusCardConfig"
|
|
94760
|
-
[groupConfig]="shopProfileStatusCardGroupConfig"
|
|
94761
|
-
[currentUser]="currentUser()"
|
|
94762
|
-
(startCategoryQuestions)="handleStartCategoryQuestions($event)"
|
|
94763
|
-
(answerSave)="handleProfileQuestionAnswerSave($event)"
|
|
94764
|
-
(adminAnswerAction)="shopProfileAdminAnswerAction.emit($event)"
|
|
94765
|
-
/>
|
|
94766
|
-
</div>
|
|
94767
|
-
}
|
|
94768
|
-
|
|
94769
94915
|
<!-- Supporting Business Context -->
|
|
94770
94916
|
@if (nonStrategicSections().length > 0 && !isLoading()) {
|
|
94771
94917
|
<div>
|
|
@@ -94783,6 +94929,66 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94783
94929
|
/>
|
|
94784
94930
|
</div>
|
|
94785
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
|
+
}
|
|
94786
94992
|
}
|
|
94787
94993
|
|
|
94788
94994
|
<!-- Compact & Expanded View Content -->
|
|
@@ -95274,7 +95480,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
95274
95480
|
type: HostListener,
|
|
95275
95481
|
args: ['window:scroll']
|
|
95276
95482
|
}] }); })();
|
|
95277
|
-
(() => { (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 }); })();
|
|
95278
95484
|
|
|
95279
95485
|
function ProfileAnalysisStatusSummaryComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
95280
95486
|
i0.ɵɵelementStart(0, "div", 1)(1, "div", 3);
|