@eric-emg/symphiq-components 1.3.2 → 1.3.4
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);
|
|
@@ -91228,11 +91272,38 @@ class ProfileQuestionsModalComponent {
|
|
|
91228
91272
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileQuestionsModalComponent, { className: "ProfileQuestionsModalComponent", filePath: "lib/components/shared/profile/profile-questions-modal.component.ts", lineNumber: 209 }); })();
|
|
91229
91273
|
|
|
91230
91274
|
const _c0$a = ["chartdiv"];
|
|
91231
|
-
function
|
|
91275
|
+
function ProfileStatusCardComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
91276
|
+
i0.ɵɵelementStart(0, "div", 2)(1, "div", 16)(2, "div", 17)(3, "div", 18);
|
|
91277
|
+
i0.ɵɵnamespaceSVG();
|
|
91278
|
+
i0.ɵɵelementStart(4, "svg", 8);
|
|
91279
|
+
i0.ɵɵelement(5, "path", 19);
|
|
91280
|
+
i0.ɵɵelementEnd()();
|
|
91281
|
+
i0.ɵɵnamespaceHTML();
|
|
91282
|
+
i0.ɵɵelementStart(6, "div")(7, "h2", 20);
|
|
91283
|
+
i0.ɵɵtext(8);
|
|
91284
|
+
i0.ɵɵelementEnd();
|
|
91285
|
+
i0.ɵɵelementStart(9, "p", 21);
|
|
91286
|
+
i0.ɵɵtext(10);
|
|
91287
|
+
i0.ɵɵelementEnd()()()()();
|
|
91288
|
+
} if (rf & 2) {
|
|
91289
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
91290
|
+
i0.ɵɵproperty("ngClass", ctx_r1.headerClasses());
|
|
91291
|
+
i0.ɵɵadvance(3);
|
|
91292
|
+
i0.ɵɵproperty("ngClass", ctx_r1.iconContainerClasses());
|
|
91293
|
+
i0.ɵɵadvance(4);
|
|
91294
|
+
i0.ɵɵproperty("ngClass", ctx_r1.titleClasses());
|
|
91295
|
+
i0.ɵɵadvance();
|
|
91296
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r1.config().title, " ");
|
|
91297
|
+
i0.ɵɵadvance();
|
|
91298
|
+
i0.ɵɵproperty("ngClass", ctx_r1.subtitleClasses());
|
|
91299
|
+
i0.ɵɵadvance();
|
|
91300
|
+
i0.ɵɵtextInterpolate2(" ", ctx_r1.answeredQuestions(), " of ", ctx_r1.totalQuestions(), " questions answered ");
|
|
91301
|
+
} }
|
|
91302
|
+
function ProfileStatusCardComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
91232
91303
|
i0.ɵɵelementStart(0, "h3", 22);
|
|
91233
91304
|
i0.ɵɵtext(1);
|
|
91234
91305
|
i0.ɵɵelementEnd();
|
|
91235
|
-
i0.ɵɵelement(2, "p",
|
|
91306
|
+
i0.ɵɵelement(2, "p", 11);
|
|
91236
91307
|
} if (rf & 2) {
|
|
91237
91308
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
91238
91309
|
i0.ɵɵproperty("ngClass", ctx_r1.getIntroTitleClasses());
|
|
@@ -91241,27 +91312,27 @@ function ProfileStatusCardComponent_Conditional_20_Template(rf, ctx) { if (rf &
|
|
|
91241
91312
|
i0.ɵɵadvance();
|
|
91242
91313
|
i0.ɵɵproperty("ngClass", ctx_r1.getIntroTextClasses())("innerHTML", ctx_r1.config().introText, i0.ɵɵsanitizeHtml);
|
|
91243
91314
|
} }
|
|
91244
|
-
function
|
|
91245
|
-
i0.ɵɵelement(0, "p",
|
|
91315
|
+
function ProfileStatusCardComponent_Conditional_11_Template(rf, ctx) { if (rf & 1) {
|
|
91316
|
+
i0.ɵɵelement(0, "p", 11);
|
|
91246
91317
|
} if (rf & 2) {
|
|
91247
91318
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
91248
91319
|
i0.ɵɵproperty("ngClass", ctx_r1.getIntroTextClasses())("innerHTML", ctx_r1.config().introTextMinimal, i0.ɵɵsanitizeHtml);
|
|
91249
91320
|
} }
|
|
91250
|
-
function
|
|
91321
|
+
function ProfileStatusCardComponent_Conditional_15_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
91251
91322
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
91252
91323
|
i0.ɵɵelementStart(0, "div", 23)(1, "symphiq-profile-view-toggle", 25);
|
|
91253
|
-
i0.ɵɵlistener("viewChanged", function
|
|
91324
|
+
i0.ɵɵlistener("viewChanged", function ProfileStatusCardComponent_Conditional_15_Conditional_0_Template_symphiq_profile_view_toggle_viewChanged_1_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleViewChange($event)); });
|
|
91254
91325
|
i0.ɵɵelementEnd()();
|
|
91255
91326
|
} if (rf & 2) {
|
|
91256
91327
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
91257
91328
|
i0.ɵɵadvance();
|
|
91258
91329
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentView", ctx_r1.currentView())("options", ctx_r1.viewToggleOptions());
|
|
91259
91330
|
} }
|
|
91260
|
-
function
|
|
91331
|
+
function ProfileStatusCardComponent_Conditional_15_Template(rf, ctx) { if (rf & 1) {
|
|
91261
91332
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
91262
|
-
i0.ɵɵconditionalCreate(0,
|
|
91333
|
+
i0.ɵɵconditionalCreate(0, ProfileStatusCardComponent_Conditional_15_Conditional_0_Template, 2, 3, "div", 23);
|
|
91263
91334
|
i0.ɵɵelementStart(1, "symphiq-profile-category-list", 24);
|
|
91264
|
-
i0.ɵɵlistener("itemClick", function
|
|
91335
|
+
i0.ɵɵlistener("itemClick", function ProfileStatusCardComponent_Conditional_15_Template_symphiq_profile_category_list_itemClick_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleItemClick($event)); });
|
|
91265
91336
|
i0.ɵɵelementEnd();
|
|
91266
91337
|
} if (rf & 2) {
|
|
91267
91338
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -91269,10 +91340,10 @@ function ProfileStatusCardComponent_Conditional_25_Template(rf, ctx) { if (rf &
|
|
|
91269
91340
|
i0.ɵɵadvance();
|
|
91270
91341
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("items", ctx_r1.currentGroupedQuestions())("delayAnimation", ctx_r1.questionsModalOpen());
|
|
91271
91342
|
} }
|
|
91272
|
-
function
|
|
91343
|
+
function ProfileStatusCardComponent_Conditional_16_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
91273
91344
|
const _r5 = i0.ɵɵgetCurrentView();
|
|
91274
91345
|
i0.ɵɵelementStart(0, "button", 27);
|
|
91275
|
-
i0.ɵɵlistener("click", function
|
|
91346
|
+
i0.ɵɵlistener("click", function ProfileStatusCardComponent_Conditional_16_Conditional_1_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.adminAnswerAction.emit(false)); });
|
|
91276
91347
|
i0.ɵɵnamespaceSVG();
|
|
91277
91348
|
i0.ɵɵelementStart(1, "svg", 28);
|
|
91278
91349
|
i0.ɵɵelement(2, "path", 29);
|
|
@@ -91286,10 +91357,10 @@ function ProfileStatusCardComponent_Conditional_26_Conditional_1_Template(rf, ct
|
|
|
91286
91357
|
i0.ɵɵadvance(4);
|
|
91287
91358
|
i0.ɵɵtextInterpolate1("Un-answer ", ctx_r1.computedAnsweredCount(), " ?s");
|
|
91288
91359
|
} }
|
|
91289
|
-
function
|
|
91360
|
+
function ProfileStatusCardComponent_Conditional_16_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
91290
91361
|
const _r6 = i0.ɵɵgetCurrentView();
|
|
91291
91362
|
i0.ɵɵelementStart(0, "button", 27);
|
|
91292
|
-
i0.ɵɵlistener("click", function
|
|
91363
|
+
i0.ɵɵlistener("click", function ProfileStatusCardComponent_Conditional_16_Conditional_2_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleAdminAnswerAll()); });
|
|
91293
91364
|
i0.ɵɵnamespaceSVG();
|
|
91294
91365
|
i0.ɵɵelementStart(1, "svg", 28);
|
|
91295
91366
|
i0.ɵɵelement(2, "path", 30);
|
|
@@ -91303,10 +91374,10 @@ function ProfileStatusCardComponent_Conditional_26_Conditional_2_Template(rf, ct
|
|
|
91303
91374
|
i0.ɵɵadvance(4);
|
|
91304
91375
|
i0.ɵɵtextInterpolate1("Answer ", ctx_r1.unansweredQuestions(), " ?s");
|
|
91305
91376
|
} }
|
|
91306
|
-
function
|
|
91307
|
-
i0.ɵɵelementStart(0, "div",
|
|
91308
|
-
i0.ɵɵconditionalCreate(1,
|
|
91309
|
-
i0.ɵɵconditionalCreate(2,
|
|
91377
|
+
function ProfileStatusCardComponent_Conditional_16_Template(rf, ctx) { if (rf & 1) {
|
|
91378
|
+
i0.ɵɵelementStart(0, "div", 14);
|
|
91379
|
+
i0.ɵɵconditionalCreate(1, ProfileStatusCardComponent_Conditional_16_Conditional_1_Template, 5, 1, "button", 26);
|
|
91380
|
+
i0.ɵɵconditionalCreate(2, ProfileStatusCardComponent_Conditional_16_Conditional_2_Template, 5, 1, "button", 26);
|
|
91310
91381
|
i0.ɵɵelementEnd();
|
|
91311
91382
|
} if (rf & 2) {
|
|
91312
91383
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -91329,6 +91400,7 @@ class ProfileStatusCardComponent {
|
|
|
91329
91400
|
this.users = input([], ...(ngDevMode ? [{ debugName: "users" }] : []));
|
|
91330
91401
|
this.startAnsweringAll = input(false, ...(ngDevMode ? [{ debugName: "startAnsweringAll" }] : []));
|
|
91331
91402
|
this.currentUser = input(undefined, ...(ngDevMode ? [{ debugName: "currentUser" }] : []));
|
|
91403
|
+
this.hideHeader = input(false, ...(ngDevMode ? [{ debugName: "hideHeader" }] : []));
|
|
91332
91404
|
this.config = input({
|
|
91333
91405
|
title: 'Profile',
|
|
91334
91406
|
breadcrumbPrefix: ''
|
|
@@ -91715,52 +91787,33 @@ class ProfileStatusCardComponent {
|
|
|
91715
91787
|
} if (rf & 2) {
|
|
91716
91788
|
let _t;
|
|
91717
91789
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.chartDiv = _t.first);
|
|
91718
|
-
} }, inputs: { viewMode: [1, "viewMode"], totalQuestions: [1, "totalQuestions"], answeredQuestions: [1, "answeredQuestions"], questions: [1, "questions"], profileAnswers: [1, "profileAnswers"], profileAnswerHistories: [1, "profileAnswerHistories"], users: [1, "users"], startAnsweringAll: [1, "startAnsweringAll"], currentUser: [1, "currentUser"], config: [1, "config"], groupConfig: [1, "groupConfig"], categoryNameFormatter: [1, "categoryNameFormatter"], focusAreaNameFormatter: [1, "focusAreaNameFormatter"], questionFilterFn: [1, "questionFilterFn"], questionGroupByCategory: [1, "questionGroupByCategory"], questionGroupByFocusArea: [1, "questionGroupByFocusArea"] }, outputs: { startCategoryQuestions: "startCategoryQuestions", questionAnswerRequested: "questionAnswerRequested", answerSave: "answerSave", adminAnswerAction: "adminAnswerAction" }, decls:
|
|
91790
|
+
} }, inputs: { viewMode: [1, "viewMode"], totalQuestions: [1, "totalQuestions"], answeredQuestions: [1, "answeredQuestions"], questions: [1, "questions"], profileAnswers: [1, "profileAnswers"], profileAnswerHistories: [1, "profileAnswerHistories"], users: [1, "users"], startAnsweringAll: [1, "startAnsweringAll"], currentUser: [1, "currentUser"], hideHeader: [1, "hideHeader"], config: [1, "config"], groupConfig: [1, "groupConfig"], categoryNameFormatter: [1, "categoryNameFormatter"], focusAreaNameFormatter: [1, "focusAreaNameFormatter"], questionFilterFn: [1, "questionFilterFn"], questionGroupByCategory: [1, "questionGroupByCategory"], questionGroupByFocusArea: [1, "questionGroupByFocusArea"] }, outputs: { startCategoryQuestions: "startCategoryQuestions", questionAnswerRequested: "questionAnswerRequested", answerSave: "answerSave", adminAnswerAction: "adminAnswerAction" }, decls: 18, vars: 29, consts: [["chartdiv", ""], [1, "overflow-hidden", 3, "ngClass"], [1, "px-6", "py-5", "border-b", 3, "ngClass"], [1, "p-6", 3, "ngClass"], [1, "flex", "flex-wrap", "items-center", "gap-6", "mb-8"], [1, "rounded-xl", "p-6", "flex-1", "min-w-[300px]", 3, "ngClass"], [1, "flex", "items-start", "gap-4"], [1, "flex-shrink-0", "p-2", "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", "M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "flex-1"], [1, "leading-relaxed", 3, "ngClass", "innerHTML"], [1, "flex-shrink-0"], [1, "w-[250px]", "h-[250px]"], [1, "flex", "items-center", "justify-center", "gap-4", "mt-6", "pt-6", "border-t", "border-slate-700/50"], [3, "close", "questionAnswerClick", "answerSave", "isOpen", "questions", "profileAnswers", "profileAnswerHistories", "users", "selectedCategoryId", "selectedFocusAreaId", "showAllQuestions", "startDirectAnswer", "viewMode", "breadcrumbPrefix", "showFocusAreaChips", "categoryNameFormatter", "focusAreaNameFormatter", "questionFilterFn"], [1, "flex", "items-center", "justify-between"], [1, "flex", "items-center", "gap-3"], [1, "p-2.5", "rounded-lg", 3, "ngClass"], ["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"], [1, "font-semibold", "text-lg", "mb-3", 3, "ngClass"], [1, "flex", "justify-center", "mb-6"], [3, "itemClick", "viewMode", "items", "delayAnimation"], [3, "viewChanged", "viewMode", "currentView", "options"], ["type", "button", 1, "flex", "items-center", "gap-2", "px-4", "py-2", "rounded-lg", "border-2", "border-violet-500/70", "bg-transparent", "text-violet-400", "hover:bg-violet-500/10", "transition-colors"], ["type", "button", 1, "flex", "items-center", "gap-2", "px-4", "py-2", "rounded-lg", "border-2", "border-violet-500/70", "bg-transparent", "text-violet-400", "hover:bg-violet-500/10", "transition-colors", 3, "click"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M6 18L18 6M6 6l12 12"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M5 13l4 4L19 7"]], template: function ProfileStatusCardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
91719
91791
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
91720
|
-
i0.ɵɵelementStart(0, "div", 1)
|
|
91721
|
-
i0.ɵɵ
|
|
91722
|
-
i0.ɵɵelementStart(5, "
|
|
91723
|
-
i0.ɵɵelement(6, "path", 7);
|
|
91724
|
-
i0.ɵɵelementEnd()();
|
|
91725
|
-
i0.ɵɵnamespaceHTML();
|
|
91726
|
-
i0.ɵɵelementStart(7, "div")(8, "h2", 8);
|
|
91727
|
-
i0.ɵɵtext(9);
|
|
91728
|
-
i0.ɵɵelementEnd();
|
|
91729
|
-
i0.ɵɵelementStart(10, "p", 9);
|
|
91730
|
-
i0.ɵɵtext(11);
|
|
91731
|
-
i0.ɵɵelementEnd()()()()();
|
|
91732
|
-
i0.ɵɵelementStart(12, "div", 10)(13, "div", 11)(14, "div", 12)(15, "div", 13)(16, "div", 14);
|
|
91792
|
+
i0.ɵɵelementStart(0, "div", 1);
|
|
91793
|
+
i0.ɵɵconditionalCreate(1, ProfileStatusCardComponent_Conditional_1_Template, 11, 7, "div", 2);
|
|
91794
|
+
i0.ɵɵelementStart(2, "div", 3)(3, "div", 4)(4, "div", 5)(5, "div", 6)(6, "div", 7);
|
|
91733
91795
|
i0.ɵɵnamespaceSVG();
|
|
91734
|
-
i0.ɵɵelementStart(
|
|
91735
|
-
i0.ɵɵelement(
|
|
91796
|
+
i0.ɵɵelementStart(7, "svg", 8);
|
|
91797
|
+
i0.ɵɵelement(8, "path", 9);
|
|
91736
91798
|
i0.ɵɵelementEnd()();
|
|
91737
91799
|
i0.ɵɵnamespaceHTML();
|
|
91738
|
-
i0.ɵɵelementStart(
|
|
91739
|
-
i0.ɵɵconditionalCreate(
|
|
91800
|
+
i0.ɵɵelementStart(9, "div", 10);
|
|
91801
|
+
i0.ɵɵconditionalCreate(10, ProfileStatusCardComponent_Conditional_10_Template, 3, 4)(11, ProfileStatusCardComponent_Conditional_11_Template, 1, 2, "p", 11);
|
|
91740
91802
|
i0.ɵɵelementEnd()()();
|
|
91741
|
-
i0.ɵɵelementStart(
|
|
91742
|
-
i0.ɵɵelement(
|
|
91803
|
+
i0.ɵɵelementStart(12, "div", 12);
|
|
91804
|
+
i0.ɵɵelement(13, "div", 13, 0);
|
|
91743
91805
|
i0.ɵɵelementEnd()();
|
|
91744
|
-
i0.ɵɵconditionalCreate(
|
|
91745
|
-
i0.ɵɵconditionalCreate(
|
|
91806
|
+
i0.ɵɵconditionalCreate(15, ProfileStatusCardComponent_Conditional_15_Template, 2, 4);
|
|
91807
|
+
i0.ɵɵconditionalCreate(16, ProfileStatusCardComponent_Conditional_16_Template, 3, 2, "div", 14);
|
|
91746
91808
|
i0.ɵɵelementEnd()();
|
|
91747
|
-
i0.ɵɵelementStart(
|
|
91748
|
-
i0.ɵɵlistener("close", function
|
|
91809
|
+
i0.ɵɵelementStart(17, "symphiq-profile-questions-modal", 15);
|
|
91810
|
+
i0.ɵɵlistener("close", function ProfileStatusCardComponent_Template_symphiq_profile_questions_modal_close_17_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onQuestionsModalClose()); })("questionAnswerClick", function ProfileStatusCardComponent_Template_symphiq_profile_questions_modal_questionAnswerClick_17_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onQuestionAnswerClick($event)); })("answerSave", function ProfileStatusCardComponent_Template_symphiq_profile_questions_modal_answerSave_17_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onAnswerSave($event)); });
|
|
91749
91811
|
i0.ɵɵelementEnd();
|
|
91750
91812
|
} if (rf & 2) {
|
|
91751
|
-
i0.ɵɵ
|
|
91813
|
+
i0.ɵɵclassProp("rounded-2xl", !ctx.hideHeader())("border", !ctx.hideHeader())("shadow-lg", !ctx.hideHeader());
|
|
91814
|
+
i0.ɵɵproperty("ngClass", ctx.hideHeader() ? "" : ctx.containerClasses());
|
|
91752
91815
|
i0.ɵɵadvance();
|
|
91753
|
-
i0.ɵɵ
|
|
91754
|
-
i0.ɵɵadvance(3);
|
|
91755
|
-
i0.ɵɵproperty("ngClass", ctx.iconContainerClasses());
|
|
91756
|
-
i0.ɵɵadvance(4);
|
|
91757
|
-
i0.ɵɵproperty("ngClass", ctx.titleClasses());
|
|
91758
|
-
i0.ɵɵadvance();
|
|
91759
|
-
i0.ɵɵtextInterpolate1(" ", ctx.config().title, " ");
|
|
91760
|
-
i0.ɵɵadvance();
|
|
91761
|
-
i0.ɵɵproperty("ngClass", ctx.subtitleClasses());
|
|
91762
|
-
i0.ɵɵadvance();
|
|
91763
|
-
i0.ɵɵtextInterpolate2(" ", ctx.answeredQuestions(), " of ", ctx.totalQuestions(), " questions answered ");
|
|
91816
|
+
i0.ɵɵconditional(!ctx.hideHeader() ? 1 : -1);
|
|
91764
91817
|
i0.ɵɵadvance();
|
|
91765
91818
|
i0.ɵɵproperty("ngClass", ctx.contentClasses());
|
|
91766
91819
|
i0.ɵɵadvance(2);
|
|
@@ -91768,11 +91821,11 @@ class ProfileStatusCardComponent {
|
|
|
91768
91821
|
i0.ɵɵadvance(2);
|
|
91769
91822
|
i0.ɵɵproperty("ngClass", ctx.getIntroIconClasses());
|
|
91770
91823
|
i0.ɵɵadvance(4);
|
|
91771
|
-
i0.ɵɵconditional(ctx.shouldShowFullIntro() && ctx.config().introTitle && ctx.config().introText ?
|
|
91824
|
+
i0.ɵɵconditional(ctx.shouldShowFullIntro() && ctx.config().introTitle && ctx.config().introText ? 10 : ctx.config().introTextMinimal ? 11 : -1);
|
|
91772
91825
|
i0.ɵɵadvance(5);
|
|
91773
|
-
i0.ɵɵconditional(ctx.hasQuestions() ?
|
|
91826
|
+
i0.ɵɵconditional(ctx.hasQuestions() ? 15 : -1);
|
|
91774
91827
|
i0.ɵɵadvance();
|
|
91775
|
-
i0.ɵɵconditional(ctx.showAdminButtons() ?
|
|
91828
|
+
i0.ɵɵconditional(ctx.showAdminButtons() ? 16 : -1);
|
|
91776
91829
|
i0.ɵɵadvance();
|
|
91777
91830
|
i0.ɵɵproperty("isOpen", ctx.questionsModalOpen())("questions", ctx.questions())("profileAnswers", ctx.profileAnswers())("profileAnswerHistories", ctx.profileAnswerHistories())("users", ctx.users())("selectedCategoryId", ctx.selectedCategoryId())("selectedFocusAreaId", ctx.selectedFocusAreaId())("showAllQuestions", ctx.showAllQuestions())("startDirectAnswer", ctx.startDirectAnswer())("viewMode", ctx.viewMode())("breadcrumbPrefix", ctx.config().breadcrumbPrefix)("showFocusAreaChips", ctx.groupConfig().showFocusAreaChips)("categoryNameFormatter", ctx.categoryNameFormatter())("focusAreaNameFormatter", ctx.focusAreaNameFormatter())("questionFilterFn", ctx.questionFilterFn());
|
|
91778
91831
|
} }, dependencies: [CommonModule, i1$1.NgClass, ProfileCategoryListComponent, ProfileViewToggleComponent, ProfileQuestionsModalComponent], encapsulation: 2, changeDetection: 0 }); }
|
|
@@ -91785,26 +91838,28 @@ class ProfileStatusCardComponent {
|
|
|
91785
91838
|
imports: [CommonModule, ProfileCategoryListComponent, ProfileViewToggleComponent, ProfileQuestionsModalComponent],
|
|
91786
91839
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
91787
91840
|
template: `
|
|
91788
|
-
<div [ngClass]="containerClasses()" class
|
|
91789
|
-
|
|
91790
|
-
<div class="
|
|
91791
|
-
<div class="flex items-center
|
|
91792
|
-
<div
|
|
91793
|
-
<
|
|
91794
|
-
<
|
|
91795
|
-
|
|
91796
|
-
|
|
91797
|
-
|
|
91798
|
-
<
|
|
91799
|
-
|
|
91800
|
-
|
|
91801
|
-
|
|
91802
|
-
|
|
91803
|
-
|
|
91841
|
+
<div [ngClass]="hideHeader() ? '' : containerClasses()" [class.rounded-2xl]="!hideHeader()" [class.border]="!hideHeader()" [class.shadow-lg]="!hideHeader()" class="overflow-hidden">
|
|
91842
|
+
@if (!hideHeader()) {
|
|
91843
|
+
<div [ngClass]="headerClasses()" class="px-6 py-5 border-b">
|
|
91844
|
+
<div class="flex items-center justify-between">
|
|
91845
|
+
<div class="flex items-center gap-3">
|
|
91846
|
+
<div [ngClass]="iconContainerClasses()" class="p-2.5 rounded-lg">
|
|
91847
|
+
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
91848
|
+
<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>
|
|
91849
|
+
</svg>
|
|
91850
|
+
</div>
|
|
91851
|
+
<div>
|
|
91852
|
+
<h2 [ngClass]="titleClasses()" class="text-xl font-bold">
|
|
91853
|
+
{{ config().title }}
|
|
91854
|
+
</h2>
|
|
91855
|
+
<p [ngClass]="subtitleClasses()" class="text-sm mt-0.5">
|
|
91856
|
+
{{ answeredQuestions() }} of {{ totalQuestions() }} questions answered
|
|
91857
|
+
</p>
|
|
91858
|
+
</div>
|
|
91804
91859
|
</div>
|
|
91805
91860
|
</div>
|
|
91806
91861
|
</div>
|
|
91807
|
-
|
|
91862
|
+
}
|
|
91808
91863
|
|
|
91809
91864
|
<div [ngClass]="contentClasses()" class="p-6">
|
|
91810
91865
|
<div class="flex flex-wrap items-center gap-6 mb-8">
|
|
@@ -91907,11 +91962,11 @@ class ProfileStatusCardComponent {
|
|
|
91907
91962
|
(answerSave)="onAnswerSave($event)" />
|
|
91908
91963
|
`
|
|
91909
91964
|
}]
|
|
91910
|
-
}], () => [], { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], totalQuestions: [{ type: i0.Input, args: [{ isSignal: true, alias: "totalQuestions", required: false }] }], answeredQuestions: [{ type: i0.Input, args: [{ isSignal: true, alias: "answeredQuestions", required: false }] }], questions: [{ type: i0.Input, args: [{ isSignal: true, alias: "questions", required: false }] }], profileAnswers: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileAnswers", required: false }] }], profileAnswerHistories: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileAnswerHistories", required: false }] }], users: [{ type: i0.Input, args: [{ isSignal: true, alias: "users", required: false }] }], startAnsweringAll: [{ type: i0.Input, args: [{ isSignal: true, alias: "startAnsweringAll", required: false }] }], currentUser: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentUser", required: false }] }], config: [{ type: i0.Input, args: [{ isSignal: true, alias: "config", required: false }] }], groupConfig: [{ type: i0.Input, args: [{ isSignal: true, alias: "groupConfig", required: false }] }], categoryNameFormatter: [{ type: i0.Input, args: [{ isSignal: true, alias: "categoryNameFormatter", required: false }] }], focusAreaNameFormatter: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaNameFormatter", required: false }] }], questionFilterFn: [{ type: i0.Input, args: [{ isSignal: true, alias: "questionFilterFn", required: false }] }], questionGroupByCategory: [{ type: i0.Input, args: [{ isSignal: true, alias: "questionGroupByCategory", required: false }] }], questionGroupByFocusArea: [{ type: i0.Input, args: [{ isSignal: true, alias: "questionGroupByFocusArea", required: false }] }], startCategoryQuestions: [{ type: i0.Output, args: ["startCategoryQuestions"] }], questionAnswerRequested: [{ type: i0.Output, args: ["questionAnswerRequested"] }], answerSave: [{ type: i0.Output, args: ["answerSave"] }], adminAnswerAction: [{ type: i0.Output, args: ["adminAnswerAction"] }], chartDiv: [{
|
|
91965
|
+
}], () => [], { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], totalQuestions: [{ type: i0.Input, args: [{ isSignal: true, alias: "totalQuestions", required: false }] }], answeredQuestions: [{ type: i0.Input, args: [{ isSignal: true, alias: "answeredQuestions", required: false }] }], questions: [{ type: i0.Input, args: [{ isSignal: true, alias: "questions", required: false }] }], profileAnswers: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileAnswers", required: false }] }], profileAnswerHistories: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileAnswerHistories", required: false }] }], users: [{ type: i0.Input, args: [{ isSignal: true, alias: "users", required: false }] }], startAnsweringAll: [{ type: i0.Input, args: [{ isSignal: true, alias: "startAnsweringAll", required: false }] }], currentUser: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentUser", required: false }] }], hideHeader: [{ type: i0.Input, args: [{ isSignal: true, alias: "hideHeader", required: false }] }], config: [{ type: i0.Input, args: [{ isSignal: true, alias: "config", required: false }] }], groupConfig: [{ type: i0.Input, args: [{ isSignal: true, alias: "groupConfig", required: false }] }], categoryNameFormatter: [{ type: i0.Input, args: [{ isSignal: true, alias: "categoryNameFormatter", required: false }] }], focusAreaNameFormatter: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaNameFormatter", required: false }] }], questionFilterFn: [{ type: i0.Input, args: [{ isSignal: true, alias: "questionFilterFn", required: false }] }], questionGroupByCategory: [{ type: i0.Input, args: [{ isSignal: true, alias: "questionGroupByCategory", required: false }] }], questionGroupByFocusArea: [{ type: i0.Input, args: [{ isSignal: true, alias: "questionGroupByFocusArea", required: false }] }], startCategoryQuestions: [{ type: i0.Output, args: ["startCategoryQuestions"] }], questionAnswerRequested: [{ type: i0.Output, args: ["questionAnswerRequested"] }], answerSave: [{ type: i0.Output, args: ["answerSave"] }], adminAnswerAction: [{ type: i0.Output, args: ["adminAnswerAction"] }], chartDiv: [{
|
|
91911
91966
|
type: ViewChild,
|
|
91912
91967
|
args: ['chartdiv', { static: false }]
|
|
91913
91968
|
}] }); })();
|
|
91914
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileStatusCardComponent, { className: "ProfileStatusCardComponent", filePath: "lib/components/shared/profile/profile-status-card.component.ts", lineNumber:
|
|
91969
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileStatusCardComponent, { className: "ProfileStatusCardComponent", filePath: "lib/components/shared/profile/profile-status-card.component.ts", lineNumber: 178 }); })();
|
|
91915
91970
|
|
|
91916
91971
|
function ProfileStickyFooterComponent_Conditional_7_Template(rf, ctx) { if (rf & 1) {
|
|
91917
91972
|
i0.ɵɵelementStart(0, "div", 5);
|
|
@@ -92767,7 +92822,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Template(rf,
|
|
|
92767
92822
|
} }
|
|
92768
92823
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
92769
92824
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
92770
|
-
i0.ɵɵelementStart(0, "div", 32)(1, "symphiq-profile-status-card",
|
|
92825
|
+
i0.ɵɵelementStart(0, "div", 32)(1, "symphiq-profile-status-card", 34, 0);
|
|
92771
92826
|
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
92827
|
i0.ɵɵelementEnd()();
|
|
92773
92828
|
} if (rf & 2) {
|
|
@@ -92776,7 +92831,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92776
92831
|
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
92832
|
} }
|
|
92778
92833
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
92779
|
-
i0.ɵɵelementStart(0, "div", 32)(1, "div",
|
|
92834
|
+
i0.ɵɵelementStart(0, "div", 32)(1, "div", 33);
|
|
92780
92835
|
i0.ɵɵelement(2, "symphiq-content-generation-progress", 35);
|
|
92781
92836
|
i0.ɵɵelementEnd()();
|
|
92782
92837
|
} if (rf & 2) {
|
|
@@ -92787,7 +92842,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92787
92842
|
i0.ɵɵproperty("itemStatus", ctx_r1.itemStatusProfileShop())("viewMode", ctx_r1.viewMode());
|
|
92788
92843
|
} }
|
|
92789
92844
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
92790
|
-
i0.ɵɵelementStart(0, "div",
|
|
92845
|
+
i0.ɵɵelementStart(0, "div", 33);
|
|
92791
92846
|
i0.ɵɵelement(1, "symphiq-content-generation-progress", 35);
|
|
92792
92847
|
i0.ɵɵelementEnd();
|
|
92793
92848
|
} if (rf & 2) {
|
|
@@ -92797,7 +92852,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92797
92852
|
i0.ɵɵproperty("itemStatus", ctx_r1.itemStatusProfileShop())("viewMode", ctx_r1.viewMode());
|
|
92798
92853
|
} }
|
|
92799
92854
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
92800
|
-
i0.ɵɵelementStart(0, "div",
|
|
92855
|
+
i0.ɵɵelementStart(0, "div", 33);
|
|
92801
92856
|
i0.ɵɵelement(1, "symphiq-content-generation-progress", 37);
|
|
92802
92857
|
i0.ɵɵelementEnd();
|
|
92803
92858
|
} if (rf & 2) {
|
|
@@ -92817,7 +92872,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92817
92872
|
} }
|
|
92818
92873
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
92819
92874
|
i0.ɵɵelementStart(0, "div", 32);
|
|
92820
|
-
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_1_Template, 2, 3, "div",
|
|
92875
|
+
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
92876
|
i0.ɵɵelementEnd();
|
|
92822
92877
|
} if (rf & 2) {
|
|
92823
92878
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -92882,31 +92937,68 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
|
|
|
92882
92937
|
i0.ɵɵconditional(!ctx_r1.hasBillingCurrency() || ctx_r1.isEditingCurrency() ? 1 : ctx_r1.showPlanSelection() ? 2 : 3);
|
|
92883
92938
|
} }
|
|
92884
92939
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
92885
|
-
|
|
92886
|
-
i0.ɵɵ
|
|
92887
|
-
i0.ɵɵ
|
|
92888
|
-
i0.ɵɵelementEnd()();
|
|
92940
|
+
i0.ɵɵelementStart(0, "div");
|
|
92941
|
+
i0.ɵɵelement(1, "symphiq-collapsible-analysis-section-group", 45);
|
|
92942
|
+
i0.ɵɵelementEnd();
|
|
92889
92943
|
} if (rf & 2) {
|
|
92890
92944
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
92891
92945
|
i0.ɵɵadvance();
|
|
92892
|
-
i0.ɵɵproperty("
|
|
92946
|
+
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
92947
|
} }
|
|
92894
92948
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
92895
|
-
i0.ɵɵ
|
|
92896
|
-
i0.ɵɵ
|
|
92949
|
+
const _r8 = i0.ɵɵgetCurrentView();
|
|
92950
|
+
i0.ɵɵelementStart(0, "div", 33)(1, "button", 46);
|
|
92951
|
+
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()); });
|
|
92952
|
+
i0.ɵɵelementStart(2, "div", 47)(3, "div", 48);
|
|
92953
|
+
i0.ɵɵnamespaceSVG();
|
|
92954
|
+
i0.ɵɵelementStart(4, "svg", 49);
|
|
92955
|
+
i0.ɵɵelement(5, "path", 50);
|
|
92956
|
+
i0.ɵɵelementEnd()();
|
|
92957
|
+
i0.ɵɵnamespaceHTML();
|
|
92958
|
+
i0.ɵɵelementStart(6, "div")(7, "h2", 51);
|
|
92959
|
+
i0.ɵɵtext(8, " Shop Profile ");
|
|
92897
92960
|
i0.ɵɵelementEnd();
|
|
92961
|
+
i0.ɵɵelementStart(9, "p", 52);
|
|
92962
|
+
i0.ɵɵtext(10);
|
|
92963
|
+
i0.ɵɵelementEnd()()();
|
|
92964
|
+
i0.ɵɵnamespaceSVG();
|
|
92965
|
+
i0.ɵɵelementStart(11, "svg", 53);
|
|
92966
|
+
i0.ɵɵelement(12, "path", 54);
|
|
92967
|
+
i0.ɵɵelementEnd()();
|
|
92968
|
+
i0.ɵɵnamespaceHTML();
|
|
92969
|
+
i0.ɵɵelementStart(13, "div", 55)(14, "div", 56)(15, "div", 57)(16, "symphiq-profile-status-card", 58);
|
|
92970
|
+
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)); });
|
|
92971
|
+
i0.ɵɵelementEnd()()()()();
|
|
92898
92972
|
} if (rf & 2) {
|
|
92899
92973
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
92974
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardContainerClasses());
|
|
92900
92975
|
i0.ɵɵadvance();
|
|
92901
|
-
i0.ɵɵproperty("
|
|
92976
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardHeaderClasses());
|
|
92977
|
+
i0.ɵɵadvance(2);
|
|
92978
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardIconClasses());
|
|
92979
|
+
i0.ɵɵadvance(4);
|
|
92980
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardTitleClasses());
|
|
92981
|
+
i0.ɵɵadvance(2);
|
|
92982
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardSubtitleClasses());
|
|
92983
|
+
i0.ɵɵadvance();
|
|
92984
|
+
i0.ɵɵtextInterpolate2(" ", ctx_r1.answeredShopQuestions(), " of ", ctx_r1.totalShopQuestions(), " questions answered ");
|
|
92985
|
+
i0.ɵɵadvance();
|
|
92986
|
+
i0.ɵɵclassProp("rotate-180", ctx_r1.shopProfileCardExpanded());
|
|
92987
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardChevronClasses());
|
|
92988
|
+
i0.ɵɵadvance(2);
|
|
92989
|
+
i0.ɵɵstyleProp("grid-template-rows", ctx_r1.shopProfileCardExpanded() ? "1fr" : "0fr");
|
|
92990
|
+
i0.ɵɵadvance(2);
|
|
92991
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getShopProfileCardContentClasses());
|
|
92992
|
+
i0.ɵɵadvance();
|
|
92993
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("totalQuestions", ctx_r1.totalShopQuestions())("answeredQuestions", ctx_r1.answeredShopQuestions())("questions", ctx_r1.profileShopQuestions() || i0.ɵɵpureFunction0(24, _c2$2))("profileAnswers", ctx_r1.profileAnswers() || i0.ɵɵpureFunction0(25, _c2$2))("profileAnswerHistories", ctx_r1.profileAnswerHistories() || i0.ɵɵpureFunction0(26, _c2$2))("users", ctx_r1.users() || i0.ɵɵpureFunction0(27, _c2$2))("config", ctx_r1.shopProfilePostAnalysisCardConfig)("groupConfig", ctx_r1.shopProfileStatusCardGroupConfig)("currentUser", ctx_r1.currentUser())("hideHeader", true);
|
|
92902
92994
|
} }
|
|
92903
92995
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
92904
92996
|
i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_0_Template, 3, 14, "div", 32);
|
|
92905
92997
|
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_1_Template, 3, 3, "div", 32);
|
|
92906
92998
|
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Template, 4, 1, "div", 32);
|
|
92907
92999
|
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,
|
|
93000
|
+
i0.ɵɵconditionalCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_4_Template, 2, 10, "div");
|
|
93001
|
+
i0.ɵɵconditionalCreate(5, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template, 17, 28, "div", 33);
|
|
92910
93002
|
} if (rf & 2) {
|
|
92911
93003
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
92912
93004
|
i0.ɵɵconditional(ctx_r1.shouldShowShopProfileStatus() && !ctx_r1.isMetricAnalysis() && !ctx_r1.profileAnalysis() ? 0 : -1);
|
|
@@ -92917,20 +93009,20 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Template(rf,
|
|
|
92917
93009
|
i0.ɵɵadvance();
|
|
92918
93010
|
i0.ɵɵconditional(!ctx_r1.isSubscriptionActive() && !ctx_r1.isMetricAnalysis() ? 3 : -1);
|
|
92919
93011
|
i0.ɵɵadvance();
|
|
92920
|
-
i0.ɵɵconditional(ctx_r1.
|
|
93012
|
+
i0.ɵɵconditional(ctx_r1.nonStrategicSections().length > 0 && !ctx_r1.isLoading() ? 4 : -1);
|
|
92921
93013
|
i0.ɵɵadvance();
|
|
92922
|
-
i0.ɵɵconditional(ctx_r1.
|
|
93014
|
+
i0.ɵɵconditional(ctx_r1.shouldShowPostAnalysisShopProfile() ? 5 : -1);
|
|
92923
93015
|
} }
|
|
92924
93016
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
92925
|
-
i0.ɵɵelement(0, "symphiq-grade-badge",
|
|
93017
|
+
i0.ɵɵelement(0, "symphiq-grade-badge", 68);
|
|
92926
93018
|
} if (rf & 2) {
|
|
92927
93019
|
const summary_r10 = i0.ɵɵnextContext();
|
|
92928
93020
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
92929
93021
|
i0.ɵɵproperty("grade", summary_r10.overallGrade)("gradeRationale", summary_r10.gradeRationale || "")("viewMode", ctx_r1.viewMode());
|
|
92930
93022
|
} }
|
|
92931
93023
|
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",
|
|
93024
|
+
i0.ɵɵelementStart(0, "div", 81);
|
|
93025
|
+
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 84);
|
|
92934
93026
|
i0.ɵɵelementEnd();
|
|
92935
93027
|
} if (rf & 2) {
|
|
92936
93028
|
const summary_r10 = i0.ɵɵnextContext(2);
|
|
@@ -92939,15 +93031,15 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
92939
93031
|
i0.ɵɵproperty("visual", summary_r10.napkinVisual)("viewMode", ctx_r1.viewMode());
|
|
92940
93032
|
} }
|
|
92941
93033
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
92942
|
-
i0.ɵɵelementStart(0, "div",
|
|
93034
|
+
i0.ɵɵelementStart(0, "div", 69)(1, "h3", 79);
|
|
92943
93035
|
i0.ɵɵtext(2, " Analysis Narrative ");
|
|
92944
93036
|
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",
|
|
93037
|
+
i0.ɵɵelementStart(3, "div", 80);
|
|
93038
|
+
i0.ɵɵconditionalCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Conditional_4_Template, 2, 2, "div", 81);
|
|
93039
|
+
i0.ɵɵelementStart(5, "p", 82);
|
|
92948
93040
|
i0.ɵɵtext(6);
|
|
92949
93041
|
i0.ɵɵelementEnd();
|
|
92950
|
-
i0.ɵɵelement(7, "div",
|
|
93042
|
+
i0.ɵɵelement(7, "div", 83);
|
|
92951
93043
|
i0.ɵɵelementEnd()();
|
|
92952
93044
|
} if (rf & 2) {
|
|
92953
93045
|
const summary_r10 = i0.ɵɵnextContext();
|
|
@@ -92963,10 +93055,10 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
92963
93055
|
i0.ɵɵtextInterpolate1(" ", summary_r10.narrative, " ");
|
|
92964
93056
|
} }
|
|
92965
93057
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
92966
|
-
i0.ɵɵelementStart(0, "div",
|
|
93058
|
+
i0.ɵɵelementStart(0, "div", 93);
|
|
92967
93059
|
i0.ɵɵnamespaceSVG();
|
|
92968
|
-
i0.ɵɵelementStart(1, "svg",
|
|
92969
|
-
i0.ɵɵelement(2, "path",
|
|
93060
|
+
i0.ɵɵelementStart(1, "svg", 95);
|
|
93061
|
+
i0.ɵɵelement(2, "path", 96);
|
|
92970
93062
|
i0.ɵɵelementEnd();
|
|
92971
93063
|
i0.ɵɵnamespaceHTML();
|
|
92972
93064
|
i0.ɵɵelementStart(3, "span");
|
|
@@ -92980,10 +93072,10 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
92980
93072
|
i0.ɵɵtextInterpolate(entry_r11.win.estimatedTimeframe);
|
|
92981
93073
|
} }
|
|
92982
93074
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_13_Template(rf, ctx) { if (rf & 1) {
|
|
92983
|
-
i0.ɵɵelementStart(0, "div",
|
|
93075
|
+
i0.ɵɵelementStart(0, "div", 94)(1, "h4", 97);
|
|
92984
93076
|
i0.ɵɵtext(2, " Related Goal ");
|
|
92985
93077
|
i0.ɵɵelementEnd();
|
|
92986
|
-
i0.ɵɵelement(3, "symphiq-related-goal-chips",
|
|
93078
|
+
i0.ɵɵelement(3, "symphiq-related-goal-chips", 98);
|
|
92987
93079
|
i0.ɵɵelementEnd();
|
|
92988
93080
|
} if (rf & 2) {
|
|
92989
93081
|
const entry_r11 = i0.ɵɵnextContext().$implicit;
|
|
@@ -92994,20 +93086,20 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
92994
93086
|
i0.ɵɵproperty("relatedGoalIds", i0.ɵɵpureFunction1(4, _c5, entry_r11.win.relatedGoalId))("allGoals", ctx_r1.allGoals())("viewMode", ctx_r1.viewMode());
|
|
92995
93087
|
} }
|
|
92996
93088
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Template(rf, ctx) { if (rf & 1) {
|
|
92997
|
-
i0.ɵɵelementStart(0, "div",
|
|
93089
|
+
i0.ɵɵelementStart(0, "div", 86)(1, "div", 87)(2, "div", 88)(3, "span", 89);
|
|
92998
93090
|
i0.ɵɵtext(4);
|
|
92999
93091
|
i0.ɵɵelementEnd();
|
|
93000
|
-
i0.ɵɵelementStart(5, "p",
|
|
93092
|
+
i0.ɵɵelementStart(5, "p", 90);
|
|
93001
93093
|
i0.ɵɵtext(6);
|
|
93002
93094
|
i0.ɵɵelementEnd()();
|
|
93003
|
-
i0.ɵɵelementStart(7, "div",
|
|
93095
|
+
i0.ɵɵelementStart(7, "div", 91)(8, "span", 92);
|
|
93004
93096
|
i0.ɵɵtext(9);
|
|
93005
93097
|
i0.ɵɵelementEnd();
|
|
93006
|
-
i0.ɵɵelementStart(10, "span",
|
|
93098
|
+
i0.ɵɵelementStart(10, "span", 92);
|
|
93007
93099
|
i0.ɵɵtext(11);
|
|
93008
93100
|
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",
|
|
93101
|
+
i0.ɵɵconditionalCreate(12, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_12_Template, 5, 2, "div", 93);
|
|
93102
|
+
i0.ɵɵconditionalCreate(13, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_13_Template, 4, 6, "div", 94);
|
|
93011
93103
|
i0.ɵɵelementEnd()();
|
|
93012
93104
|
} if (rf & 2) {
|
|
93013
93105
|
const entry_r11 = ctx.$implicit;
|
|
@@ -93035,11 +93127,11 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93035
93127
|
i0.ɵɵconditional(entry_r11.win.relatedGoalId ? 13 : -1);
|
|
93036
93128
|
} }
|
|
93037
93129
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_Template(rf, ctx) { if (rf & 1) {
|
|
93038
|
-
i0.ɵɵelementStart(0, "div",
|
|
93130
|
+
i0.ɵɵelementStart(0, "div", 78)(1, "h3", 51);
|
|
93039
93131
|
i0.ɵɵtext(2, " Quick Wins ");
|
|
93040
93132
|
i0.ɵɵelementEnd();
|
|
93041
|
-
i0.ɵɵelementStart(3, "div",
|
|
93042
|
-
i0.ɵɵrepeaterCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Template, 14, 11, "div",
|
|
93133
|
+
i0.ɵɵelementStart(3, "div", 85);
|
|
93134
|
+
i0.ɵɵrepeaterCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Template, 14, 11, "div", 86, _forTrack0$8);
|
|
93043
93135
|
i0.ɵɵelementEnd()();
|
|
93044
93136
|
} if (rf & 2) {
|
|
93045
93137
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
@@ -93050,55 +93142,55 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93050
93142
|
} }
|
|
93051
93143
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
93052
93144
|
const _r9 = i0.ɵɵgetCurrentView();
|
|
93053
|
-
i0.ɵɵelementStart(0, "section",
|
|
93145
|
+
i0.ɵɵelementStart(0, "section", 59)(1, "div", 62)(2, "div", 63)(3, "div", 64)(4, "div", 65)(5, "h2", 66);
|
|
93054
93146
|
i0.ɵɵtext(6, " Executive Summary ");
|
|
93055
93147
|
i0.ɵɵelementEnd();
|
|
93056
|
-
i0.ɵɵelementStart(7, "p",
|
|
93148
|
+
i0.ɵɵelementStart(7, "p", 67);
|
|
93057
93149
|
i0.ɵɵtext(8);
|
|
93058
93150
|
i0.ɵɵelementEnd()();
|
|
93059
|
-
i0.ɵɵconditionalCreate(9, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_9_Template, 1, 3, "symphiq-grade-badge",
|
|
93151
|
+
i0.ɵɵconditionalCreate(9, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_9_Template, 1, 3, "symphiq-grade-badge", 68);
|
|
93060
93152
|
i0.ɵɵelementEnd();
|
|
93061
|
-
i0.ɵɵconditionalCreate(10, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Template, 8, 5, "div",
|
|
93062
|
-
i0.ɵɵelementStart(11, "div",
|
|
93153
|
+
i0.ɵɵconditionalCreate(10, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Template, 8, 5, "div", 69);
|
|
93154
|
+
i0.ɵɵelementStart(11, "div", 70)(12, "button", 71);
|
|
93063
93155
|
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",
|
|
93156
|
+
i0.ɵɵelementStart(13, "div", 72);
|
|
93065
93157
|
i0.ɵɵtext(14, " Key Strengths ");
|
|
93066
93158
|
i0.ɵɵelementEnd();
|
|
93067
|
-
i0.ɵɵelementStart(15, "div",
|
|
93159
|
+
i0.ɵɵelementStart(15, "div", 73);
|
|
93068
93160
|
i0.ɵɵtext(16);
|
|
93069
93161
|
i0.ɵɵelementEnd();
|
|
93070
|
-
i0.ɵɵelementStart(17, "div",
|
|
93162
|
+
i0.ɵɵelementStart(17, "div", 74)(18, "span", 75);
|
|
93071
93163
|
i0.ɵɵtext(19, "View Details");
|
|
93072
93164
|
i0.ɵɵelementEnd();
|
|
93073
|
-
i0.ɵɵelement(20, "symphiq-icon",
|
|
93165
|
+
i0.ɵɵelement(20, "symphiq-icon", 76);
|
|
93074
93166
|
i0.ɵɵelementEnd()();
|
|
93075
|
-
i0.ɵɵelementStart(21, "button",
|
|
93167
|
+
i0.ɵɵelementStart(21, "button", 71);
|
|
93076
93168
|
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",
|
|
93169
|
+
i0.ɵɵelementStart(22, "div", 72);
|
|
93078
93170
|
i0.ɵɵtext(23, " Critical Gaps ");
|
|
93079
93171
|
i0.ɵɵelementEnd();
|
|
93080
|
-
i0.ɵɵelementStart(24, "div",
|
|
93172
|
+
i0.ɵɵelementStart(24, "div", 73);
|
|
93081
93173
|
i0.ɵɵtext(25);
|
|
93082
93174
|
i0.ɵɵelementEnd();
|
|
93083
|
-
i0.ɵɵelementStart(26, "div",
|
|
93175
|
+
i0.ɵɵelementStart(26, "div", 74)(27, "span", 75);
|
|
93084
93176
|
i0.ɵɵtext(28, "View Details");
|
|
93085
93177
|
i0.ɵɵelementEnd();
|
|
93086
|
-
i0.ɵɵelement(29, "symphiq-icon",
|
|
93178
|
+
i0.ɵɵelement(29, "symphiq-icon", 76);
|
|
93087
93179
|
i0.ɵɵelementEnd()();
|
|
93088
|
-
i0.ɵɵelementStart(30, "button",
|
|
93180
|
+
i0.ɵɵelementStart(30, "button", 71);
|
|
93089
93181
|
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",
|
|
93182
|
+
i0.ɵɵelementStart(31, "div", 72);
|
|
93091
93183
|
i0.ɵɵtext(32, " Quick Wins ");
|
|
93092
93184
|
i0.ɵɵelementEnd();
|
|
93093
|
-
i0.ɵɵelementStart(33, "div",
|
|
93185
|
+
i0.ɵɵelementStart(33, "div", 73);
|
|
93094
93186
|
i0.ɵɵtext(34);
|
|
93095
93187
|
i0.ɵɵelementEnd();
|
|
93096
|
-
i0.ɵɵelementStart(35, "div",
|
|
93188
|
+
i0.ɵɵelementStart(35, "div", 74)(36, "span", 75);
|
|
93097
93189
|
i0.ɵɵtext(37, "Details Below");
|
|
93098
93190
|
i0.ɵɵelementEnd();
|
|
93099
|
-
i0.ɵɵelement(38, "symphiq-icon",
|
|
93191
|
+
i0.ɵɵelement(38, "symphiq-icon", 77);
|
|
93100
93192
|
i0.ɵɵelementEnd()()()()();
|
|
93101
|
-
i0.ɵɵconditionalCreate(39, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_Template, 6, 1, "div",
|
|
93193
|
+
i0.ɵɵconditionalCreate(39, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_Template, 6, 1, "div", 78);
|
|
93102
93194
|
i0.ɵɵelementEnd();
|
|
93103
93195
|
} if (rf & 2) {
|
|
93104
93196
|
const summary_r10 = ctx;
|
|
@@ -93156,7 +93248,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93156
93248
|
} }
|
|
93157
93249
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
93158
93250
|
const _r12 = i0.ɵɵgetCurrentView();
|
|
93159
|
-
i0.ɵɵelementStart(0, "symphiq-metric-executive-summary",
|
|
93251
|
+
i0.ɵɵelementStart(0, "symphiq-metric-executive-summary", 99);
|
|
93160
93252
|
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
93253
|
i0.ɵɵelementEnd();
|
|
93162
93254
|
} if (rf & 2) {
|
|
@@ -93164,21 +93256,21 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93164
93256
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("summary", ctx)("metricName", ctx_r1.metricName())("allGoals", ctx_r1.allGoals());
|
|
93165
93257
|
} }
|
|
93166
93258
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
93167
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
93259
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 100);
|
|
93168
93260
|
} if (rf & 2) {
|
|
93169
93261
|
const sectionList_r13 = i0.ɵɵnextContext();
|
|
93170
93262
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
93171
93263
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r13[0].icon);
|
|
93172
93264
|
} }
|
|
93173
93265
|
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",
|
|
93266
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Template, 1, 2, "symphiq-section-divider", 100);
|
|
93175
93267
|
} if (rf & 2) {
|
|
93176
93268
|
const sectionList_r13 = ctx;
|
|
93177
93269
|
i0.ɵɵconditional(sectionList_r13.length > 0 && sectionList_r13[0].icon ? 0 : -1);
|
|
93178
93270
|
} }
|
|
93179
93271
|
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",
|
|
93272
|
+
i0.ɵɵelementStart(0, "div", 103);
|
|
93273
|
+
i0.ɵɵelement(1, "symphiq-icon", 107);
|
|
93182
93274
|
i0.ɵɵelementEnd();
|
|
93183
93275
|
} if (rf & 2) {
|
|
93184
93276
|
const section_r14 = i0.ɵɵnextContext().$implicit;
|
|
@@ -93188,8 +93280,8 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93188
93280
|
i0.ɵɵproperty("icon", section_r14.icon);
|
|
93189
93281
|
} }
|
|
93190
93282
|
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",
|
|
93283
|
+
i0.ɵɵelementStart(0, "div", 109);
|
|
93284
|
+
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 84);
|
|
93193
93285
|
i0.ɵɵelementEnd();
|
|
93194
93286
|
} if (rf & 2) {
|
|
93195
93287
|
const section_r14 = i0.ɵɵnextContext(2).$implicit;
|
|
@@ -93198,7 +93290,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93198
93290
|
i0.ɵɵproperty("visual", section_r14.visual)("viewMode", ctx_r1.viewMode());
|
|
93199
93291
|
} }
|
|
93200
93292
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
93201
|
-
i0.ɵɵelementStart(0, "div",
|
|
93293
|
+
i0.ɵɵelementStart(0, "div", 111)(1, "p", 82);
|
|
93202
93294
|
i0.ɵɵtext(2);
|
|
93203
93295
|
i0.ɵɵelementEnd()();
|
|
93204
93296
|
} if (rf & 2) {
|
|
@@ -93211,42 +93303,42 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93211
93303
|
i0.ɵɵtextInterpolate1(" ", section_r14.description, " ");
|
|
93212
93304
|
} }
|
|
93213
93305
|
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",
|
|
93306
|
+
i0.ɵɵelementStart(0, "div", 108);
|
|
93307
|
+
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div", 109);
|
|
93308
|
+
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div", 110);
|
|
93217
93309
|
i0.ɵɵelementEnd();
|
|
93218
93310
|
} if (rf & 2) {
|
|
93219
93311
|
const ctx_r14 = i0.ɵɵnextContext();
|
|
93220
93312
|
const section_r14 = ctx_r14.$implicit;
|
|
93221
|
-
const ɵ$
|
|
93222
|
-
i0.ɵɵclassProp("lg:flex-row-reverse", ɵ$
|
|
93313
|
+
const ɵ$index_261_r16 = ctx_r14.$index;
|
|
93314
|
+
i0.ɵɵclassProp("lg:flex-row-reverse", ɵ$index_261_r16 % 2 === 0);
|
|
93223
93315
|
i0.ɵɵadvance();
|
|
93224
93316
|
i0.ɵɵconditional(section_r14.visual && section_r14.visual.enabled ? 1 : -1);
|
|
93225
93317
|
i0.ɵɵadvance();
|
|
93226
93318
|
i0.ɵɵconditional(section_r14.description ? 2 : -1);
|
|
93227
93319
|
} }
|
|
93228
93320
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
93229
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
93321
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 100);
|
|
93230
93322
|
} if (rf & 2) {
|
|
93231
|
-
const ɵ$
|
|
93323
|
+
const ɵ$index_261_r16 = i0.ɵɵnextContext().$index;
|
|
93232
93324
|
const sectionList_r17 = i0.ɵɵnextContext();
|
|
93233
93325
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
93234
|
-
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r17[ɵ$
|
|
93326
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r17[ɵ$index_261_r16 + 1].icon);
|
|
93235
93327
|
} }
|
|
93236
93328
|
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",
|
|
93329
|
+
i0.ɵɵelementStart(0, "div", 101)(1, "div", 102);
|
|
93330
|
+
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_2_Template, 2, 2, "div", 103);
|
|
93331
|
+
i0.ɵɵelementStart(3, "div", 65)(4, "h3", 104);
|
|
93240
93332
|
i0.ɵɵtext(5);
|
|
93241
93333
|
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",
|
|
93334
|
+
i0.ɵɵconditionalCreate(6, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Template, 3, 4, "div", 105);
|
|
93335
|
+
i0.ɵɵelement(7, "symphiq-profile-section-content", 106);
|
|
93244
93336
|
i0.ɵɵelementEnd();
|
|
93245
|
-
i0.ɵɵconditionalCreate(8, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider",
|
|
93337
|
+
i0.ɵɵconditionalCreate(8, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider", 100);
|
|
93246
93338
|
} if (rf & 2) {
|
|
93247
93339
|
const section_r14 = ctx.$implicit;
|
|
93248
|
-
const ɵ$
|
|
93249
|
-
const ɵ$
|
|
93340
|
+
const ɵ$index_261_r16 = ctx.$index;
|
|
93341
|
+
const ɵ$count_261_r18 = ctx.$count;
|
|
93250
93342
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
93251
93343
|
i0.ɵɵproperty("id", "section-" + section_r14.id)("ngClass", ctx_r1.getSectionCardClasses());
|
|
93252
93344
|
i0.ɵɵadvance(2);
|
|
@@ -93258,12 +93350,12 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93258
93350
|
i0.ɵɵadvance();
|
|
93259
93351
|
i0.ɵɵconditional(section_r14.description || section_r14.visual && section_r14.visual.enabled ? 6 : -1);
|
|
93260
93352
|
i0.ɵɵadvance();
|
|
93261
|
-
i0.ɵɵproperty("section", section_r14)("executiveSummary", section_r14.id === "executive-summary" ? ctx_r1.executiveSummary() : undefined)("viewMode", ctx_r1.viewMode())("sectionIndex", ɵ$
|
|
93353
|
+
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
93354
|
i0.ɵɵadvance();
|
|
93263
|
-
i0.ɵɵconditional(!(ɵ$
|
|
93355
|
+
i0.ɵɵconditional(!(ɵ$index_261_r16 === ɵ$count_261_r18 - 1) ? 8 : -1);
|
|
93264
93356
|
} }
|
|
93265
93357
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
93266
|
-
i0.ɵɵelementStart(0, "section",
|
|
93358
|
+
i0.ɵɵelementStart(0, "section", 61);
|
|
93267
93359
|
i0.ɵɵrepeaterCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Template, 9, 16, null, null, _forTrack1$1);
|
|
93268
93360
|
i0.ɵɵelementEnd();
|
|
93269
93361
|
} if (rf & 2) {
|
|
@@ -93271,10 +93363,10 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
|
|
|
93271
93363
|
i0.ɵɵrepeater(ctx);
|
|
93272
93364
|
} }
|
|
93273
93365
|
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",
|
|
93366
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template, 40, 34, "section", 59);
|
|
93367
|
+
i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template, 1, 4, "symphiq-metric-executive-summary", 60);
|
|
93276
93368
|
i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Template, 1, 1);
|
|
93277
|
-
i0.ɵɵconditionalCreate(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Template, 3, 0, "section",
|
|
93369
|
+
i0.ɵɵconditionalCreate(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Template, 3, 0, "section", 61);
|
|
93278
93370
|
} if (rf & 2) {
|
|
93279
93371
|
let tmp_1_0;
|
|
93280
93372
|
let tmp_2_0;
|
|
@@ -93356,7 +93448,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_22_Template(rf
|
|
|
93356
93448
|
} }
|
|
93357
93449
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_26_Template(rf, ctx) { if (rf & 1) {
|
|
93358
93450
|
const _r27 = i0.ɵɵgetCurrentView();
|
|
93359
|
-
i0.ɵɵelementStart(0, "symphiq-sticky-subscription-continue-button",
|
|
93451
|
+
i0.ɵɵelementStart(0, "symphiq-sticky-subscription-continue-button", 112);
|
|
93360
93452
|
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
93453
|
i0.ɵɵelementEnd();
|
|
93362
93454
|
} if (rf & 2) {
|
|
@@ -93365,7 +93457,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_26_Template(rf
|
|
|
93365
93457
|
} }
|
|
93366
93458
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template(rf, ctx) { if (rf & 1) {
|
|
93367
93459
|
const _r28 = i0.ɵɵgetCurrentView();
|
|
93368
|
-
i0.ɵɵelementStart(0, "symphiq-profile-sticky-footer",
|
|
93460
|
+
i0.ɵɵelementStart(0, "symphiq-profile-sticky-footer", 113);
|
|
93369
93461
|
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
93462
|
i0.ɵɵelementEnd();
|
|
93371
93463
|
} if (rf & 2) {
|
|
@@ -93374,18 +93466,18 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template(rf
|
|
|
93374
93466
|
} }
|
|
93375
93467
|
function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template(rf, ctx) { if (rf & 1) {
|
|
93376
93468
|
const _r29 = i0.ɵɵgetCurrentView();
|
|
93377
|
-
i0.ɵɵelementStart(0, "div", 25)(1, "div",
|
|
93469
|
+
i0.ɵɵelementStart(0, "div", 25)(1, "div", 114)(2, "div", 115)(3, "button", 116);
|
|
93378
93470
|
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
93471
|
i0.ɵɵtext(4, " Cancel ");
|
|
93380
93472
|
i0.ɵɵelementEnd();
|
|
93381
|
-
i0.ɵɵelementStart(5, "button",
|
|
93473
|
+
i0.ɵɵelementStart(5, "button", 117);
|
|
93382
93474
|
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
93475
|
i0.ɵɵelementStart(6, "span");
|
|
93384
93476
|
i0.ɵɵtext(7, "Continue to Plans");
|
|
93385
93477
|
i0.ɵɵelementEnd();
|
|
93386
93478
|
i0.ɵɵnamespaceSVG();
|
|
93387
|
-
i0.ɵɵelementStart(8, "svg",
|
|
93388
|
-
i0.ɵɵelement(9, "path",
|
|
93479
|
+
i0.ɵɵelementStart(8, "svg", 118);
|
|
93480
|
+
i0.ɵɵelement(9, "path", 119);
|
|
93389
93481
|
i0.ɵɵelementEnd()()()()();
|
|
93390
93482
|
} if (rf & 2) {
|
|
93391
93483
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -93412,6 +93504,16 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
93412
93504
|
showFocusAreaToggle: true,
|
|
93413
93505
|
showFocusAreaChips: false
|
|
93414
93506
|
};
|
|
93507
|
+
this.shopProfilePostAnalysisCardConfig = {
|
|
93508
|
+
title: 'Shop Profile',
|
|
93509
|
+
introTitle: '',
|
|
93510
|
+
introText: '',
|
|
93511
|
+
introTextMinimal: 'Review or update your shop profile answers below. Any changes will be reflected in your next analysis.',
|
|
93512
|
+
breadcrumbPrefix: 'Shop Profile'
|
|
93513
|
+
};
|
|
93514
|
+
this.SHOP_PROFILE_CARD_STORAGE_KEY = 'shop-profile-card-expanded';
|
|
93515
|
+
this.shopProfileCardExpanded = signal(false, ...(ngDevMode ? [{ debugName: "shopProfileCardExpanded" }] : []));
|
|
93516
|
+
this.shopProfileCardRouterSubscription = null;
|
|
93415
93517
|
this.shopProfileStickyFooterButtonConfig = {
|
|
93416
93518
|
startText: 'Start Answering Questions',
|
|
93417
93519
|
continueText: 'Continue Answering Questions',
|
|
@@ -93546,6 +93648,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
93546
93648
|
const profileAnalysis = this.profileAnalysis();
|
|
93547
93649
|
return this.isSimplifiedView() &&
|
|
93548
93650
|
!this.isMetricAnalysis() &&
|
|
93651
|
+
!this.isLoading() &&
|
|
93549
93652
|
!!profileAnalysis &&
|
|
93550
93653
|
profileAnalysis.selfContentStatus === AiDynamicContentStatusEnum.GENERATED;
|
|
93551
93654
|
}, ...(ngDevMode ? [{ debugName: "shouldShowPostAnalysisShopProfile" }] : []));
|
|
@@ -93639,6 +93742,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
93639
93742
|
this.viewModeService = inject(ViewModeService);
|
|
93640
93743
|
this.profileContextService = inject(ProfileContextService);
|
|
93641
93744
|
this.profileItemLookupService = inject(ProfileItemLookupService);
|
|
93745
|
+
this.router = inject(Router);
|
|
93642
93746
|
this.IconSourceEnum = IconSourceEnum;
|
|
93643
93747
|
this.scrollProgress = signal(0, ...(ngDevMode ? [{ debugName: "scrollProgress" }] : []));
|
|
93644
93748
|
this.currentDisplayMode = signal(DisplayModeEnum.SIMPLIFIED, ...(ngDevMode ? [{ debugName: "currentDisplayMode" }] : []));
|
|
@@ -94005,6 +94109,12 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94005
94109
|
if (storedCurrency) {
|
|
94006
94110
|
this.selectedCurrency.set(storedCurrency);
|
|
94007
94111
|
}
|
|
94112
|
+
this.loadShopProfileCardExpandedState();
|
|
94113
|
+
this.shopProfileCardRouterSubscription = this.router.events
|
|
94114
|
+
.pipe(filter(event => event instanceof NavigationStart))
|
|
94115
|
+
.subscribe(() => {
|
|
94116
|
+
this.clearShopProfileCardExpandedState();
|
|
94117
|
+
});
|
|
94008
94118
|
// Initialize ProfileItemLookupService with business profile
|
|
94009
94119
|
// This enables competitor and focus area chip lookups in business insights
|
|
94010
94120
|
const profileToUse = this.profile();
|
|
@@ -94042,6 +94152,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94042
94152
|
ngOnDestroy() {
|
|
94043
94153
|
this.headerScrollService.resetState();
|
|
94044
94154
|
this.viewModeService.setViewMode('compact');
|
|
94155
|
+
this.shopProfileCardRouterSubscription?.unsubscribe();
|
|
94045
94156
|
}
|
|
94046
94157
|
openSearch() {
|
|
94047
94158
|
this.isSearchOpen.set(true);
|
|
@@ -94420,6 +94531,73 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94420
94531
|
this.shopProfileStatusCard.openAllQuestionsAnswerMode();
|
|
94421
94532
|
}
|
|
94422
94533
|
}
|
|
94534
|
+
toggleShopProfileCard() {
|
|
94535
|
+
this.shopProfileCardExpanded.update(v => !v);
|
|
94536
|
+
this.saveShopProfileCardExpandedState();
|
|
94537
|
+
}
|
|
94538
|
+
saveShopProfileCardExpandedState() {
|
|
94539
|
+
try {
|
|
94540
|
+
localStorage.setItem(this.SHOP_PROFILE_CARD_STORAGE_KEY, JSON.stringify(this.shopProfileCardExpanded()));
|
|
94541
|
+
}
|
|
94542
|
+
catch {
|
|
94543
|
+
}
|
|
94544
|
+
}
|
|
94545
|
+
loadShopProfileCardExpandedState() {
|
|
94546
|
+
try {
|
|
94547
|
+
const saved = localStorage.getItem(this.SHOP_PROFILE_CARD_STORAGE_KEY);
|
|
94548
|
+
if (saved) {
|
|
94549
|
+
this.shopProfileCardExpanded.set(JSON.parse(saved));
|
|
94550
|
+
}
|
|
94551
|
+
}
|
|
94552
|
+
catch {
|
|
94553
|
+
}
|
|
94554
|
+
}
|
|
94555
|
+
clearShopProfileCardExpandedState() {
|
|
94556
|
+
try {
|
|
94557
|
+
localStorage.removeItem(this.SHOP_PROFILE_CARD_STORAGE_KEY);
|
|
94558
|
+
}
|
|
94559
|
+
catch {
|
|
94560
|
+
}
|
|
94561
|
+
}
|
|
94562
|
+
getShopProfileCardContainerClasses() {
|
|
94563
|
+
return this.viewMode() === ViewModeEnum.DARK
|
|
94564
|
+
? 'bg-slate-800/40 border-slate-700/50'
|
|
94565
|
+
: 'bg-white border-slate-200';
|
|
94566
|
+
}
|
|
94567
|
+
getShopProfileCardHeaderClasses() {
|
|
94568
|
+
const isExpanded = this.shopProfileCardExpanded();
|
|
94569
|
+
if (this.viewMode() === ViewModeEnum.DARK) {
|
|
94570
|
+
return isExpanded ? 'bg-slate-800/60 hover:bg-slate-700/50' : 'hover:bg-slate-800/60';
|
|
94571
|
+
}
|
|
94572
|
+
return isExpanded ? 'bg-slate-50/50 hover:bg-slate-100/50' : 'hover:bg-slate-50/50';
|
|
94573
|
+
}
|
|
94574
|
+
getShopProfileCardIconClasses() {
|
|
94575
|
+
return this.viewMode() === ViewModeEnum.DARK
|
|
94576
|
+
? 'bg-blue-500/20 text-blue-400'
|
|
94577
|
+
: 'bg-blue-100 text-blue-600';
|
|
94578
|
+
}
|
|
94579
|
+
getShopProfileCardTitleClasses() {
|
|
94580
|
+
return this.viewMode() === ViewModeEnum.DARK
|
|
94581
|
+
? 'text-white'
|
|
94582
|
+
: 'text-slate-900';
|
|
94583
|
+
}
|
|
94584
|
+
getShopProfileCardSubtitleClasses() {
|
|
94585
|
+
return this.viewMode() === ViewModeEnum.DARK
|
|
94586
|
+
? 'text-slate-400'
|
|
94587
|
+
: 'text-slate-600';
|
|
94588
|
+
}
|
|
94589
|
+
getShopProfileCardChevronClasses() {
|
|
94590
|
+
const isExpanded = this.shopProfileCardExpanded();
|
|
94591
|
+
if (isExpanded) {
|
|
94592
|
+
return this.viewMode() === ViewModeEnum.DARK ? 'text-blue-400' : 'text-blue-600';
|
|
94593
|
+
}
|
|
94594
|
+
return this.viewMode() === ViewModeEnum.DARK ? 'text-slate-400' : 'text-slate-500';
|
|
94595
|
+
}
|
|
94596
|
+
getShopProfileCardContentClasses() {
|
|
94597
|
+
return this.viewMode() === ViewModeEnum.DARK
|
|
94598
|
+
? 'border-slate-700/50'
|
|
94599
|
+
: 'border-slate-200';
|
|
94600
|
+
}
|
|
94423
94601
|
static { this.ɵfac = function SymphiqProfileShopAnalysisDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqProfileShopAnalysisDashboardComponent)(); }; }
|
|
94424
94602
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqProfileShopAnalysisDashboardComponent, selectors: [["symphiq-profile-shop-analysis-dashboard"]], viewQuery: function SymphiqProfileShopAnalysisDashboardComponent_Query(rf, ctx) { if (rf & 1) {
|
|
94425
94603
|
i0.ɵɵviewQuery(ModalComponent, 5)(_c0$9, 5)(_c1$2, 5);
|
|
@@ -94430,7 +94608,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94430
94608
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.planSelectionContainer = _t.first);
|
|
94431
94609
|
} }, hostBindings: function SymphiqProfileShopAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
94432
94610
|
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) {
|
|
94611
|
+
} }, 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"], [3, "startCategoryQuestions", "answerSave", "adminAnswerAction", "viewMode", "totalQuestions", "answeredQuestions", "questions", "profileAnswers", "profileAnswerHistories", "users", "config", "groupConfig", "currentUser", "hideHeader"], ["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
94612
|
i0.ɵɵelementStart(0, "div", 2);
|
|
94435
94613
|
i0.ɵɵelement(1, "div", 3)(2, "symphiq-scroll-progress-bar", 4);
|
|
94436
94614
|
i0.ɵɵelementStart(3, "div", 5)(4, "symphiq-dashboard-header", 6);
|
|
@@ -94745,27 +94923,6 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94745
94923
|
</div>
|
|
94746
94924
|
}
|
|
94747
94925
|
|
|
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
94926
|
<!-- Supporting Business Context -->
|
|
94770
94927
|
@if (nonStrategicSections().length > 0 && !isLoading()) {
|
|
94771
94928
|
<div>
|
|
@@ -94783,6 +94940,67 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94783
94940
|
/>
|
|
94784
94941
|
</div>
|
|
94785
94942
|
}
|
|
94943
|
+
|
|
94944
|
+
<!-- Shop Profile (Post-Analysis) - Collapsible -->
|
|
94945
|
+
@if (shouldShowPostAnalysisShopProfile()) {
|
|
94946
|
+
<div [ngClass]="getShopProfileCardContainerClasses()" class="rounded-2xl border shadow-lg overflow-hidden">
|
|
94947
|
+
<button
|
|
94948
|
+
type="button"
|
|
94949
|
+
(click)="toggleShopProfileCard()"
|
|
94950
|
+
[ngClass]="getShopProfileCardHeaderClasses()"
|
|
94951
|
+
class="cursor-pointer w-full px-6 py-5 flex items-center justify-between gap-4 text-left transition-colors duration-200">
|
|
94952
|
+
<div class="flex items-center gap-3">
|
|
94953
|
+
<div [ngClass]="getShopProfileCardIconClasses()" class="p-2.5 rounded-lg">
|
|
94954
|
+
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
94955
|
+
<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>
|
|
94956
|
+
</svg>
|
|
94957
|
+
</div>
|
|
94958
|
+
<div>
|
|
94959
|
+
<h2 [ngClass]="getShopProfileCardTitleClasses()" class="text-xl font-bold">
|
|
94960
|
+
Shop Profile
|
|
94961
|
+
</h2>
|
|
94962
|
+
<p [ngClass]="getShopProfileCardSubtitleClasses()" class="text-sm mt-0.5">
|
|
94963
|
+
{{ answeredShopQuestions() }} of {{ totalShopQuestions() }} questions answered
|
|
94964
|
+
</p>
|
|
94965
|
+
</div>
|
|
94966
|
+
</div>
|
|
94967
|
+
<svg
|
|
94968
|
+
[ngClass]="getShopProfileCardChevronClasses()"
|
|
94969
|
+
[class.rotate-180]="shopProfileCardExpanded()"
|
|
94970
|
+
class="w-5 h-5 flex-shrink-0 transition-transform duration-200"
|
|
94971
|
+
fill="none"
|
|
94972
|
+
stroke="currentColor"
|
|
94973
|
+
viewBox="0 0 24 24">
|
|
94974
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path>
|
|
94975
|
+
</svg>
|
|
94976
|
+
</button>
|
|
94977
|
+
|
|
94978
|
+
<div
|
|
94979
|
+
class="grid transition-[grid-template-rows] duration-300 ease-in-out"
|
|
94980
|
+
[style.grid-template-rows]="shopProfileCardExpanded() ? '1fr' : '0fr'">
|
|
94981
|
+
<div class="overflow-hidden">
|
|
94982
|
+
<div [ngClass]="getShopProfileCardContentClasses()" class="border-t">
|
|
94983
|
+
<symphiq-profile-status-card
|
|
94984
|
+
[viewMode]="viewMode()"
|
|
94985
|
+
[totalQuestions]="totalShopQuestions()"
|
|
94986
|
+
[answeredQuestions]="answeredShopQuestions()"
|
|
94987
|
+
[questions]="profileShopQuestions() || []"
|
|
94988
|
+
[profileAnswers]="profileAnswers() || []"
|
|
94989
|
+
[profileAnswerHistories]="profileAnswerHistories() || []"
|
|
94990
|
+
[users]="users() || []"
|
|
94991
|
+
[config]="shopProfilePostAnalysisCardConfig"
|
|
94992
|
+
[groupConfig]="shopProfileStatusCardGroupConfig"
|
|
94993
|
+
[currentUser]="currentUser()"
|
|
94994
|
+
[hideHeader]="true"
|
|
94995
|
+
(startCategoryQuestions)="handleStartCategoryQuestions($event)"
|
|
94996
|
+
(answerSave)="handleProfileQuestionAnswerSave($event)"
|
|
94997
|
+
(adminAnswerAction)="shopProfileAdminAnswerAction.emit($event)"
|
|
94998
|
+
/>
|
|
94999
|
+
</div>
|
|
95000
|
+
</div>
|
|
95001
|
+
</div>
|
|
95002
|
+
</div>
|
|
95003
|
+
}
|
|
94786
95004
|
}
|
|
94787
95005
|
|
|
94788
95006
|
<!-- Compact & Expanded View Content -->
|
|
@@ -95274,7 +95492,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
95274
95492
|
type: HostListener,
|
|
95275
95493
|
args: ['window:scroll']
|
|
95276
95494
|
}] }); })();
|
|
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:
|
|
95495
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileShopAnalysisDashboardComponent, { className: "SymphiqProfileShopAnalysisDashboardComponent", filePath: "lib/components/profile-analysis-shop-dashboard/symphiq-profile-shop-analysis-dashboard.component.ts", lineNumber: 892 }); })();
|
|
95278
95496
|
|
|
95279
95497
|
function ProfileAnalysisStatusSummaryComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
95280
95498
|
i0.ɵɵelementStart(0, "div", 1)(1, "div", 3);
|