@eric-emg/symphiq-components 1.2.299 → 1.2.301
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/symphiq-components.mjs +609 -574
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +15 -16
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -45745,21 +45745,18 @@ class ContentGenerationProgressWithConfettiComponent {
|
|
|
45745
45745
|
this.subtitle = input('This will appear when ready. You can check back later as this will take a few minutes to complete.', ...(ngDevMode ? [{ debugName: "subtitle" }] : []));
|
|
45746
45746
|
this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
|
|
45747
45747
|
this.showIcon = input(true, ...(ngDevMode ? [{ debugName: "showIcon" }] : []));
|
|
45748
|
-
this.
|
|
45749
|
-
this.funnelAnalysis = input(...(ngDevMode ? [undefined, { debugName: "funnelAnalysis" }] : []));
|
|
45748
|
+
this.currentStatus = input(...(ngDevMode ? [undefined, { debugName: "currentStatus" }] : []));
|
|
45750
45749
|
this.confettiIntensity = input('normal', ...(ngDevMode ? [{ debugName: "confettiIntensity" }] : []));
|
|
45751
45750
|
this.enableConfetti = input(true, ...(ngDevMode ? [{ debugName: "enableConfetti" }] : []));
|
|
45752
45751
|
this.confettiDelay = input(200, ...(ngDevMode ? [{ debugName: "confettiDelay" }] : []));
|
|
45753
45752
|
this.confettiService = inject(ConfettiService);
|
|
45754
45753
|
this.hasCelebrated = signal(false, ...(ngDevMode ? [{ debugName: "hasCelebrated" }] : []));
|
|
45755
45754
|
effect(() => {
|
|
45756
|
-
const
|
|
45757
|
-
const currentFunnelAnalysis = this.funnelAnalysis();
|
|
45758
|
-
const currentStatus = currentProfile?.selfContentStatus ?? currentFunnelAnalysis?.selfContentStatus;
|
|
45755
|
+
const status = this.currentStatus();
|
|
45759
45756
|
if (!this.enableConfetti()) {
|
|
45760
45757
|
return;
|
|
45761
45758
|
}
|
|
45762
|
-
if (
|
|
45759
|
+
if (status === AiDynamicContentStatusEnum.GENERATED && !this.hasCelebrated()) {
|
|
45763
45760
|
untracked(() => {
|
|
45764
45761
|
this.confettiService.trigger({
|
|
45765
45762
|
intensity: this.confettiIntensity(),
|
|
@@ -45769,8 +45766,8 @@ class ContentGenerationProgressWithConfettiComponent {
|
|
|
45769
45766
|
this.hasCelebrated.set(true);
|
|
45770
45767
|
});
|
|
45771
45768
|
}
|
|
45772
|
-
if (
|
|
45773
|
-
|
|
45769
|
+
if (status === AiDynamicContentStatusEnum.REQUESTED ||
|
|
45770
|
+
status === AiDynamicContentStatusEnum.GENERATING) {
|
|
45774
45771
|
untracked(() => {
|
|
45775
45772
|
this.hasCelebrated.set(false);
|
|
45776
45773
|
});
|
|
@@ -45778,7 +45775,7 @@ class ContentGenerationProgressWithConfettiComponent {
|
|
|
45778
45775
|
});
|
|
45779
45776
|
}
|
|
45780
45777
|
static { this.ɵfac = function ContentGenerationProgressWithConfettiComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ContentGenerationProgressWithConfettiComponent)(); }; }
|
|
45781
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ContentGenerationProgressWithConfettiComponent, selectors: [["symphiq-content-generation-progress-with-confetti"]], inputs: { itemStatus: [1, "itemStatus"], title: [1, "title"], subtitle: [1, "subtitle"], viewMode: [1, "viewMode"], showIcon: [1, "showIcon"],
|
|
45778
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ContentGenerationProgressWithConfettiComponent, selectors: [["symphiq-content-generation-progress-with-confetti"]], inputs: { itemStatus: [1, "itemStatus"], title: [1, "title"], subtitle: [1, "subtitle"], viewMode: [1, "viewMode"], showIcon: [1, "showIcon"], currentStatus: [1, "currentStatus"], confettiIntensity: [1, "confettiIntensity"], enableConfetti: [1, "enableConfetti"], confettiDelay: [1, "confettiDelay"] }, decls: 1, vars: 5, consts: [[3, "itemStatus", "title", "subtitle", "viewMode", "showIcon"]], template: function ContentGenerationProgressWithConfettiComponent_Template(rf, ctx) { if (rf & 1) {
|
|
45782
45779
|
i0.ɵɵelement(0, "symphiq-content-generation-progress", 0);
|
|
45783
45780
|
} if (rf & 2) {
|
|
45784
45781
|
i0.ɵɵproperty("itemStatus", ctx.itemStatus())("title", ctx.title())("subtitle", ctx.subtitle())("viewMode", ctx.viewMode())("showIcon", ctx.showIcon());
|
|
@@ -45801,9 +45798,143 @@ class ContentGenerationProgressWithConfettiComponent {
|
|
|
45801
45798
|
/>
|
|
45802
45799
|
`
|
|
45803
45800
|
}]
|
|
45804
|
-
}], () => [], { itemStatus: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemStatus", required: false }] }], title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], subtitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "subtitle", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], showIcon: [{ type: i0.Input, args: [{ isSignal: true, alias: "showIcon", required: false }] }],
|
|
45801
|
+
}], () => [], { itemStatus: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemStatus", required: false }] }], title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], subtitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "subtitle", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], showIcon: [{ type: i0.Input, args: [{ isSignal: true, alias: "showIcon", required: false }] }], currentStatus: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentStatus", required: false }] }], confettiIntensity: [{ type: i0.Input, args: [{ isSignal: true, alias: "confettiIntensity", required: false }] }], enableConfetti: [{ type: i0.Input, args: [{ isSignal: true, alias: "enableConfetti", required: false }] }], confettiDelay: [{ type: i0.Input, args: [{ isSignal: true, alias: "confettiDelay", required: false }] }] }); })();
|
|
45805
45802
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ContentGenerationProgressWithConfettiComponent, { className: "ContentGenerationProgressWithConfettiComponent", filePath: "lib/components/shared/content-generation-progress-with-confetti.component.ts", lineNumber: 29 }); })();
|
|
45806
45803
|
|
|
45804
|
+
function IndeterminateSpinnerComponent_For_5_Template(rf, ctx) { if (rf & 1) {
|
|
45805
|
+
i0.ɵɵelement(0, "div", 5);
|
|
45806
|
+
} if (rf & 2) {
|
|
45807
|
+
const dot_r1 = ctx.$implicit;
|
|
45808
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
45809
|
+
i0.ɵɵstyleProp("animation-delay", dot_r1.delay)("left", dot_r1.x, "px")("top", dot_r1.y, "px");
|
|
45810
|
+
i0.ɵɵproperty("ngClass", ctx_r1.dotClasses());
|
|
45811
|
+
} }
|
|
45812
|
+
class IndeterminateSpinnerComponent {
|
|
45813
|
+
constructor() {
|
|
45814
|
+
this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
|
|
45815
|
+
this.size = input('medium', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
45816
|
+
this.color = input(...(ngDevMode ? [undefined, { debugName: "color" }] : []));
|
|
45817
|
+
this.svgSize = computed(() => {
|
|
45818
|
+
switch (this.size()) {
|
|
45819
|
+
case 'small': return 40;
|
|
45820
|
+
case 'large': return 80;
|
|
45821
|
+
default: return 60;
|
|
45822
|
+
}
|
|
45823
|
+
}, ...(ngDevMode ? [{ debugName: "svgSize" }] : []));
|
|
45824
|
+
this.circleRadius = computed(() => {
|
|
45825
|
+
switch (this.size()) {
|
|
45826
|
+
case 'small': return 16;
|
|
45827
|
+
case 'large': return 36;
|
|
45828
|
+
default: return 26;
|
|
45829
|
+
}
|
|
45830
|
+
}, ...(ngDevMode ? [{ debugName: "circleRadius" }] : []));
|
|
45831
|
+
this.svgCircleRadius = computed(() => {
|
|
45832
|
+
return this.circleRadius() * 100 / this.svgSize();
|
|
45833
|
+
}, ...(ngDevMode ? [{ debugName: "svgCircleRadius" }] : []));
|
|
45834
|
+
this.strokeWidth = computed(() => {
|
|
45835
|
+
switch (this.size()) {
|
|
45836
|
+
case 'small': return 2;
|
|
45837
|
+
case 'large': return 3;
|
|
45838
|
+
default: return 2.5;
|
|
45839
|
+
}
|
|
45840
|
+
}, ...(ngDevMode ? [{ debugName: "strokeWidth" }] : []));
|
|
45841
|
+
this.dotSize = computed(() => {
|
|
45842
|
+
switch (this.size()) {
|
|
45843
|
+
case 'small': return 5;
|
|
45844
|
+
case 'large': return 10;
|
|
45845
|
+
default: return 7;
|
|
45846
|
+
}
|
|
45847
|
+
}, ...(ngDevMode ? [{ debugName: "dotSize" }] : []));
|
|
45848
|
+
this.containerClasses = computed(() => ({
|
|
45849
|
+
'w-10 h-10': this.size() === 'small',
|
|
45850
|
+
'w-16 h-16': this.size() === 'medium',
|
|
45851
|
+
'w-20 h-20': this.size() === 'large'
|
|
45852
|
+
}), ...(ngDevMode ? [{ debugName: "containerClasses" }] : []));
|
|
45853
|
+
this.trackClasses = computed(() => {
|
|
45854
|
+
const isDark = this.viewMode() === ViewModeEnum.DARK;
|
|
45855
|
+
return {
|
|
45856
|
+
'stroke-slate-200 dark:stroke-slate-700': !this.color(),
|
|
45857
|
+
'opacity-30': true
|
|
45858
|
+
};
|
|
45859
|
+
}, ...(ngDevMode ? [{ debugName: "trackClasses" }] : []));
|
|
45860
|
+
this.dotClasses = computed(() => {
|
|
45861
|
+
const isDark = this.viewMode() === ViewModeEnum.DARK;
|
|
45862
|
+
const sizeClass = `spinner-dot-${this.size()}`;
|
|
45863
|
+
if (this.color()) {
|
|
45864
|
+
return [sizeClass];
|
|
45865
|
+
}
|
|
45866
|
+
return [
|
|
45867
|
+
sizeClass,
|
|
45868
|
+
isDark ? 'bg-blue-400 text-blue-400' : 'bg-blue-600 text-blue-600'
|
|
45869
|
+
];
|
|
45870
|
+
}, ...(ngDevMode ? [{ debugName: "dotClasses" }] : []));
|
|
45871
|
+
this.dots = computed(() => {
|
|
45872
|
+
const radius = this.circleRadius();
|
|
45873
|
+
const center = this.svgSize() / 2;
|
|
45874
|
+
const numberOfDots = 8;
|
|
45875
|
+
const dots = [];
|
|
45876
|
+
for (let i = 0; i < numberOfDots; i++) {
|
|
45877
|
+
const angle = (i / numberOfDots) * 2 * Math.PI - Math.PI / 2;
|
|
45878
|
+
const x = center + radius * Math.cos(angle);
|
|
45879
|
+
const y = center + radius * Math.sin(angle);
|
|
45880
|
+
const delay = `${(i / numberOfDots) * 2}s`;
|
|
45881
|
+
dots.push({ x, y, delay });
|
|
45882
|
+
}
|
|
45883
|
+
return dots;
|
|
45884
|
+
}, ...(ngDevMode ? [{ debugName: "dots" }] : []));
|
|
45885
|
+
}
|
|
45886
|
+
static { this.ɵfac = function IndeterminateSpinnerComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || IndeterminateSpinnerComponent)(); }; }
|
|
45887
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: IndeterminateSpinnerComponent, selectors: [["symphiq-indeterminate-spinner"]], inputs: { viewMode: [1, "viewMode"], size: [1, "size"], color: [1, "color"] }, decls: 6, vars: 6, consts: [[1, "flex", "items-center", "justify-center"], [1, "relative", 3, "ngClass"], ["viewBox", "0 0 100 100", 1, "spinner-rotate"], ["cx", "50", "cy", "50", "fill", "none", 3, "ngClass"], [1, "spinner-dot", 3, "ngClass", "animation-delay", "left", "top"], [1, "spinner-dot", 3, "ngClass"]], template: function IndeterminateSpinnerComponent_Template(rf, ctx) { if (rf & 1) {
|
|
45888
|
+
i0.ɵɵelementStart(0, "div", 0)(1, "div", 1);
|
|
45889
|
+
i0.ɵɵnamespaceSVG();
|
|
45890
|
+
i0.ɵɵelementStart(2, "svg", 2);
|
|
45891
|
+
i0.ɵɵelement(3, "circle", 3);
|
|
45892
|
+
i0.ɵɵelementEnd();
|
|
45893
|
+
i0.ɵɵrepeaterCreate(4, IndeterminateSpinnerComponent_For_5_Template, 1, 7, "div", 4, i0.ɵɵrepeaterTrackByIndex);
|
|
45894
|
+
i0.ɵɵelementEnd()();
|
|
45895
|
+
} if (rf & 2) {
|
|
45896
|
+
i0.ɵɵadvance();
|
|
45897
|
+
i0.ɵɵproperty("ngClass", ctx.containerClasses());
|
|
45898
|
+
i0.ɵɵadvance();
|
|
45899
|
+
i0.ɵɵattribute("width", ctx.svgSize())("height", ctx.svgSize());
|
|
45900
|
+
i0.ɵɵadvance();
|
|
45901
|
+
i0.ɵɵproperty("ngClass", ctx.trackClasses());
|
|
45902
|
+
i0.ɵɵattribute("r", ctx.svgCircleRadius())("stroke-width", ctx.strokeWidth());
|
|
45903
|
+
i0.ɵɵadvance();
|
|
45904
|
+
i0.ɵɵrepeater(ctx.dots());
|
|
45905
|
+
} }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_spinner-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes _ngcontent-%COMP%_dot-pulse{0%,to{transform:translate(-50%,-50%) scale(1);opacity:.3;filter:brightness(1)}50%{transform:translate(-50%,-50%) scale(1.2);opacity:1;filter:brightness(1.5)}}.spinner-rotate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_spinner-rotate 3s linear infinite}.spinner-dot[_ngcontent-%COMP%]{position:absolute;border-radius:50%;animation:_ngcontent-%COMP%_dot-pulse 2s ease-in-out infinite;will-change:transform,opacity,filter;left:50%;top:50%;pointer-events:none}.spinner-dot-small[_ngcontent-%COMP%]{width:5px;height:5px;box-shadow:0 0 4px currentColor,0 0 8px currentColor}.spinner-dot-medium[_ngcontent-%COMP%]{width:7px;height:7px;box-shadow:0 0 5px currentColor,0 0 10px currentColor}.spinner-dot-large[_ngcontent-%COMP%]{width:10px;height:10px;box-shadow:0 0 6px currentColor,0 0 12px currentColor}"], changeDetection: 0 }); }
|
|
45906
|
+
}
|
|
45907
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IndeterminateSpinnerComponent, [{
|
|
45908
|
+
type: Component,
|
|
45909
|
+
args: [{ selector: 'symphiq-indeterminate-spinner', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
45910
|
+
<div class="flex items-center justify-center">
|
|
45911
|
+
<div [ngClass]="containerClasses()" class="relative">
|
|
45912
|
+
<svg [attr.width]="svgSize()" [attr.height]="svgSize()" viewBox="0 0 100 100" class="spinner-rotate">
|
|
45913
|
+
<circle
|
|
45914
|
+
cx="50"
|
|
45915
|
+
cy="50"
|
|
45916
|
+
[attr.r]="svgCircleRadius()"
|
|
45917
|
+
fill="none"
|
|
45918
|
+
[ngClass]="trackClasses()"
|
|
45919
|
+
[attr.stroke-width]="strokeWidth()"
|
|
45920
|
+
/>
|
|
45921
|
+
</svg>
|
|
45922
|
+
|
|
45923
|
+
@for (dot of dots(); track $index) {
|
|
45924
|
+
<div
|
|
45925
|
+
class="spinner-dot"
|
|
45926
|
+
[ngClass]="dotClasses()"
|
|
45927
|
+
[style.animation-delay]="dot.delay"
|
|
45928
|
+
[style.left.px]="dot.x"
|
|
45929
|
+
[style.top.px]="dot.y">
|
|
45930
|
+
</div>
|
|
45931
|
+
}
|
|
45932
|
+
</div>
|
|
45933
|
+
</div>
|
|
45934
|
+
`, styles: ["@keyframes spinner-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes dot-pulse{0%,to{transform:translate(-50%,-50%) scale(1);opacity:.3;filter:brightness(1)}50%{transform:translate(-50%,-50%) scale(1.2);opacity:1;filter:brightness(1.5)}}.spinner-rotate{animation:spinner-rotate 3s linear infinite}.spinner-dot{position:absolute;border-radius:50%;animation:dot-pulse 2s ease-in-out infinite;will-change:transform,opacity,filter;left:50%;top:50%;pointer-events:none}.spinner-dot-small{width:5px;height:5px;box-shadow:0 0 4px currentColor,0 0 8px currentColor}.spinner-dot-medium{width:7px;height:7px;box-shadow:0 0 5px currentColor,0 0 10px currentColor}.spinner-dot-large{width:10px;height:10px;box-shadow:0 0 6px currentColor,0 0 12px currentColor}\n"] }]
|
|
45935
|
+
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], color: [{ type: i0.Input, args: [{ isSignal: true, alias: "color", required: false }] }] }); })();
|
|
45936
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(IndeterminateSpinnerComponent, { className: "IndeterminateSpinnerComponent", filePath: "lib/components/shared/indeterminate-spinner.component.ts", lineNumber: 94 }); })();
|
|
45937
|
+
|
|
45807
45938
|
const _c0$w = ["dashboardContainer"];
|
|
45808
45939
|
const _c1$d = () => ({});
|
|
45809
45940
|
const _c2$8 = () => [1, 2, 3, 4, 5, 6];
|
|
@@ -45816,11 +45947,11 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Template(rf, ctx
|
|
|
45816
45947
|
} }
|
|
45817
45948
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_18_Template(rf, ctx) { if (rf & 1) {
|
|
45818
45949
|
const _r2 = i0.ɵɵgetCurrentView();
|
|
45819
|
-
i0.ɵɵelementStart(0, "button",
|
|
45950
|
+
i0.ɵɵelementStart(0, "button", 45);
|
|
45820
45951
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_18_Template_button_click_0_listener($event) { i0.ɵɵrestoreView(_r2); const ctx_r2 = i0.ɵɵnextContext(); ctx_r2.searchService.openSearch(); return i0.ɵɵresetView($event.preventDefault()); });
|
|
45821
45952
|
i0.ɵɵnamespaceSVG();
|
|
45822
45953
|
i0.ɵɵelementStart(1, "svg", 17);
|
|
45823
|
-
i0.ɵɵelement(2, "path",
|
|
45954
|
+
i0.ɵɵelement(2, "path", 46);
|
|
45824
45955
|
i0.ɵɵelementEnd();
|
|
45825
45956
|
i0.ɵɵnamespaceHTML();
|
|
45826
45957
|
i0.ɵɵelementStart(3, "span");
|
|
@@ -45831,7 +45962,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_18_Template(rf, ctx
|
|
|
45831
45962
|
i0.ɵɵclassMap(ctx_r2.buttonClass());
|
|
45832
45963
|
} }
|
|
45833
45964
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_25_For_6_Template(rf, ctx) { if (rf & 1) {
|
|
45834
|
-
i0.ɵɵelementStart(0, "option",
|
|
45965
|
+
i0.ɵɵelementStart(0, "option", 50);
|
|
45835
45966
|
i0.ɵɵtext(1);
|
|
45836
45967
|
i0.ɵɵelementEnd();
|
|
45837
45968
|
} if (rf & 2) {
|
|
@@ -45842,14 +45973,14 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_25_For_6_Template(r
|
|
|
45842
45973
|
} }
|
|
45843
45974
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_25_Template(rf, ctx) { if (rf & 1) {
|
|
45844
45975
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
45845
|
-
i0.ɵɵelementStart(0, "div", 20)(1, "label",
|
|
45976
|
+
i0.ɵɵelementStart(0, "div", 20)(1, "label", 47);
|
|
45846
45977
|
i0.ɵɵtext(2, "View:");
|
|
45847
45978
|
i0.ɵɵelementEnd();
|
|
45848
|
-
i0.ɵɵelementStart(3, "div",
|
|
45979
|
+
i0.ɵɵelementStart(3, "div", 48);
|
|
45849
45980
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_25_Template_div_click_3_listener($event) { i0.ɵɵrestoreView(_r4); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_25_Template_div_mousedown_3_listener($event) { i0.ɵɵrestoreView(_r4); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_25_Template_div_pointerdown_3_listener($event) { i0.ɵɵrestoreView(_r4); return i0.ɵɵresetView($event.stopPropagation()); });
|
|
45850
|
-
i0.ɵɵelementStart(4, "select",
|
|
45981
|
+
i0.ɵɵelementStart(4, "select", 49);
|
|
45851
45982
|
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_25_Template_select_ngModelChange_4_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeSectionFilter($event)); });
|
|
45852
|
-
i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_25_For_6_Template, 2, 2, "option",
|
|
45983
|
+
i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_25_For_6_Template, 2, 2, "option", 50, _forTrack0$p);
|
|
45853
45984
|
i0.ɵɵelementEnd()()();
|
|
45854
45985
|
} if (rf & 2) {
|
|
45855
45986
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -45878,13 +46009,13 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_27_Template(rf, ctx
|
|
|
45878
46009
|
i0.ɵɵtextInterpolate(ctx_r2.formattedGeneratedDate());
|
|
45879
46010
|
} }
|
|
45880
46011
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_39_Template(rf, ctx) { if (rf & 1) {
|
|
45881
|
-
i0.ɵɵelementStart(0, "div", 29)(1, "span",
|
|
46012
|
+
i0.ɵɵelementStart(0, "div", 29)(1, "span", 51);
|
|
45882
46013
|
i0.ɵɵtext(2, "Revenue:");
|
|
45883
46014
|
i0.ɵɵelementEnd();
|
|
45884
|
-
i0.ɵɵelementStart(3, "span",
|
|
46015
|
+
i0.ɵɵelementStart(3, "span", 52);
|
|
45885
46016
|
i0.ɵɵtext(4);
|
|
45886
46017
|
i0.ɵɵelementEnd();
|
|
45887
|
-
i0.ɵɵelementStart(5, "span",
|
|
46018
|
+
i0.ɵɵelementStart(5, "span", 53);
|
|
45888
46019
|
i0.ɵɵtext(6);
|
|
45889
46020
|
i0.ɵɵelementEnd()();
|
|
45890
46021
|
} if (rf & 2) {
|
|
@@ -45903,18 +46034,18 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_39_Template(rf, ctx
|
|
|
45903
46034
|
} }
|
|
45904
46035
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_41_Template(rf, ctx) { if (rf & 1) {
|
|
45905
46036
|
const _r6 = i0.ɵɵgetCurrentView();
|
|
45906
|
-
i0.ɵɵelementStart(0, "button",
|
|
46037
|
+
i0.ɵɵelementStart(0, "button", 54);
|
|
45907
46038
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_41_Template_button_click_0_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r2 = i0.ɵɵnextContext(); ctx_r2.searchService.openSearch(); return i0.ɵɵresetView($event.preventDefault()); });
|
|
45908
46039
|
i0.ɵɵnamespaceSVG();
|
|
45909
46040
|
i0.ɵɵelementStart(1, "svg", 32);
|
|
45910
|
-
i0.ɵɵelement(2, "path",
|
|
46041
|
+
i0.ɵɵelement(2, "path", 46);
|
|
45911
46042
|
i0.ɵɵelementEnd()();
|
|
45912
46043
|
} if (rf & 2) {
|
|
45913
46044
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
45914
46045
|
i0.ɵɵclassMap(ctx_r2.buttonClass());
|
|
45915
46046
|
} }
|
|
45916
46047
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_For_3_Template(rf, ctx) { if (rf & 1) {
|
|
45917
|
-
i0.ɵɵelementStart(0, "option",
|
|
46048
|
+
i0.ɵɵelementStart(0, "option", 50);
|
|
45918
46049
|
i0.ɵɵtext(1);
|
|
45919
46050
|
i0.ɵɵelementEnd();
|
|
45920
46051
|
} if (rf & 2) {
|
|
@@ -45925,11 +46056,11 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_For_3_Template(r
|
|
|
45925
46056
|
} }
|
|
45926
46057
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_Template(rf, ctx) { if (rf & 1) {
|
|
45927
46058
|
const _r7 = i0.ɵɵgetCurrentView();
|
|
45928
|
-
i0.ɵɵelementStart(0, "div",
|
|
46059
|
+
i0.ɵɵelementStart(0, "div", 48);
|
|
45929
46060
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_Template_div_click_0_listener($event) { i0.ɵɵrestoreView(_r7); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_Template_div_mousedown_0_listener($event) { i0.ɵɵrestoreView(_r7); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_Template_div_pointerdown_0_listener($event) { i0.ɵɵrestoreView(_r7); return i0.ɵɵresetView($event.stopPropagation()); });
|
|
45930
|
-
i0.ɵɵelementStart(1, "select",
|
|
46061
|
+
i0.ɵɵelementStart(1, "select", 55);
|
|
45931
46062
|
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_Template_select_ngModelChange_1_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeSectionFilter($event)); });
|
|
45932
|
-
i0.ɵɵrepeaterCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_46_For_3_Template, 2, 2, "option",
|
|
46063
|
+
i0.ɵɵrepeaterCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_46_For_3_Template, 2, 2, "option", 50, _forTrack0$p);
|
|
45933
46064
|
i0.ɵɵelementEnd()();
|
|
45934
46065
|
} if (rf & 2) {
|
|
45935
46066
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -45941,26 +46072,26 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_Template(rf, ctx
|
|
|
45941
46072
|
} }
|
|
45942
46073
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_47_Template(rf, ctx) { if (rf & 1) {
|
|
45943
46074
|
const _r9 = i0.ɵɵgetCurrentView();
|
|
45944
|
-
i0.ɵɵelementStart(0, "div", 33)(1, "div", 25)(2, "div", 26)(3, "div",
|
|
46075
|
+
i0.ɵɵelementStart(0, "div", 33)(1, "div", 25)(2, "div", 26)(3, "div", 56);
|
|
45945
46076
|
i0.ɵɵnamespaceSVG();
|
|
45946
|
-
i0.ɵɵelementStart(4, "svg",
|
|
45947
|
-
i0.ɵɵelement(5, "path",
|
|
46077
|
+
i0.ɵɵelementStart(4, "svg", 57);
|
|
46078
|
+
i0.ɵɵelement(5, "path", 46);
|
|
45948
46079
|
i0.ɵɵelementEnd();
|
|
45949
46080
|
i0.ɵɵnamespaceHTML();
|
|
45950
|
-
i0.ɵɵelementStart(6, "div",
|
|
46081
|
+
i0.ɵɵelementStart(6, "div", 58)(7, "span", 59);
|
|
45951
46082
|
i0.ɵɵtext(8, "Showing:");
|
|
45952
46083
|
i0.ɵɵelementEnd();
|
|
45953
|
-
i0.ɵɵelementStart(9, "span",
|
|
46084
|
+
i0.ɵɵelementStart(9, "span", 60);
|
|
45954
46085
|
i0.ɵɵtext(10);
|
|
45955
46086
|
i0.ɵɵelementEnd();
|
|
45956
|
-
i0.ɵɵelementStart(11, "span",
|
|
46087
|
+
i0.ɵɵelementStart(11, "span", 61);
|
|
45957
46088
|
i0.ɵɵtext(12);
|
|
45958
46089
|
i0.ɵɵelementEnd()()();
|
|
45959
|
-
i0.ɵɵelementStart(13, "button",
|
|
46090
|
+
i0.ɵɵelementStart(13, "button", 62);
|
|
45960
46091
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_47_Template_button_click_13_listener($event) { i0.ɵɵrestoreView(_r9); const ctx_r2 = i0.ɵɵnextContext(); ctx_r2.clearSearchResult(); return i0.ɵɵresetView($event.stopPropagation()); });
|
|
45961
46092
|
i0.ɵɵnamespaceSVG();
|
|
45962
46093
|
i0.ɵɵelementStart(14, "svg", 32);
|
|
45963
|
-
i0.ɵɵelement(15, "path",
|
|
46094
|
+
i0.ɵɵelement(15, "path", 63);
|
|
45964
46095
|
i0.ɵɵelementEnd()()()()();
|
|
45965
46096
|
} if (rf & 2) {
|
|
45966
46097
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -45988,7 +46119,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_48_Template(rf, ctx
|
|
|
45988
46119
|
} }
|
|
45989
46120
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
45990
46121
|
const _r10 = i0.ɵɵgetCurrentView();
|
|
45991
|
-
i0.ɵɵelementStart(0, "button",
|
|
46122
|
+
i0.ɵɵelementStart(0, "button", 65);
|
|
45992
46123
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_1_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r10); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToTop()); });
|
|
45993
46124
|
i0.ɵɵelementEnd();
|
|
45994
46125
|
} if (rf & 2) {
|
|
@@ -45997,7 +46128,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_1_Te
|
|
|
45997
46128
|
} }
|
|
45998
46129
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
45999
46130
|
const _r11 = i0.ɵɵgetCurrentView();
|
|
46000
|
-
i0.ɵɵelementStart(0, "button",
|
|
46131
|
+
i0.ɵɵelementStart(0, "button", 65);
|
|
46001
46132
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_2_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r11); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToSection("section-insights")); });
|
|
46002
46133
|
i0.ɵɵelementEnd();
|
|
46003
46134
|
} if (rf & 2) {
|
|
@@ -46006,7 +46137,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_2_Te
|
|
|
46006
46137
|
} }
|
|
46007
46138
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
46008
46139
|
const _r12 = i0.ɵɵgetCurrentView();
|
|
46009
|
-
i0.ɵɵelementStart(0, "button",
|
|
46140
|
+
i0.ɵɵelementStart(0, "button", 65);
|
|
46010
46141
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_3_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r12); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToSection("section-metrics")); });
|
|
46011
46142
|
i0.ɵɵelementEnd();
|
|
46012
46143
|
} if (rf & 2) {
|
|
@@ -46015,7 +46146,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_3_Te
|
|
|
46015
46146
|
} }
|
|
46016
46147
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
46017
46148
|
const _r13 = i0.ɵɵgetCurrentView();
|
|
46018
|
-
i0.ɵɵelementStart(0, "button",
|
|
46149
|
+
i0.ɵɵelementStart(0, "button", 65);
|
|
46019
46150
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_4_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r13); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToSection("section-breakdowns")); });
|
|
46020
46151
|
i0.ɵɵelementEnd();
|
|
46021
46152
|
} if (rf & 2) {
|
|
@@ -46024,7 +46155,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_4_Te
|
|
|
46024
46155
|
} }
|
|
46025
46156
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
46026
46157
|
const _r14 = i0.ɵɵgetCurrentView();
|
|
46027
|
-
i0.ɵɵelementStart(0, "button",
|
|
46158
|
+
i0.ɵɵelementStart(0, "button", 65);
|
|
46028
46159
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_5_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r14); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToSection("section-competitive")); });
|
|
46029
46160
|
i0.ɵɵelementEnd();
|
|
46030
46161
|
} if (rf & 2) {
|
|
@@ -46033,11 +46164,11 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_5_Te
|
|
|
46033
46164
|
} }
|
|
46034
46165
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Template(rf, ctx) { if (rf & 1) {
|
|
46035
46166
|
i0.ɵɵelementStart(0, "div", 35);
|
|
46036
|
-
i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_1_Template, 1, 3, "button",
|
|
46037
|
-
i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_2_Template, 1, 3, "button",
|
|
46038
|
-
i0.ɵɵconditionalCreate(3, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_3_Template, 1, 3, "button",
|
|
46039
|
-
i0.ɵɵconditionalCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_4_Template, 1, 3, "button",
|
|
46040
|
-
i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_5_Template, 1, 3, "button",
|
|
46167
|
+
i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_1_Template, 1, 3, "button", 64);
|
|
46168
|
+
i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_2_Template, 1, 3, "button", 64);
|
|
46169
|
+
i0.ɵɵconditionalCreate(3, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_3_Template, 1, 3, "button", 64);
|
|
46170
|
+
i0.ɵɵconditionalCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_4_Template, 1, 3, "button", 64);
|
|
46171
|
+
i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_5_Template, 1, 3, "button", 64);
|
|
46041
46172
|
i0.ɵɵelementEnd();
|
|
46042
46173
|
} if (rf & 2) {
|
|
46043
46174
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -46052,55 +46183,65 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Template(rf, ctx
|
|
|
46052
46183
|
i0.ɵɵadvance();
|
|
46053
46184
|
i0.ɵɵconditional(ctx_r2.showCompetitiveIntelligence() ? 5 : -1);
|
|
46054
46185
|
} }
|
|
46055
|
-
function
|
|
46186
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_50_Template(rf, ctx) { if (rf & 1) {
|
|
46187
|
+
i0.ɵɵelementStart(0, "div", 36);
|
|
46188
|
+
i0.ɵɵelement(1, "symphiq-indeterminate-spinner", 66);
|
|
46189
|
+
i0.ɵɵelementEnd();
|
|
46190
|
+
} if (rf & 2) {
|
|
46191
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
46192
|
+
i0.ɵɵadvance();
|
|
46193
|
+
i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK);
|
|
46194
|
+
} }
|
|
46195
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
46056
46196
|
const _r15 = i0.ɵɵgetCurrentView();
|
|
46057
|
-
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator",
|
|
46058
|
-
i0.ɵɵlistener("stepClick", function
|
|
46197
|
+
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 69);
|
|
46198
|
+
i0.ɵɵlistener("stepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_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_51_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()); });
|
|
46059
46199
|
i0.ɵɵelementEnd();
|
|
46060
46200
|
} if (rf & 2) {
|
|
46061
46201
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
46062
46202
|
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());
|
|
46063
46203
|
} }
|
|
46064
|
-
function
|
|
46065
|
-
i0.ɵɵconditionalCreate(0,
|
|
46066
|
-
i0.ɵɵelement(1, "symphiq-content-generation-progress-with-confetti",
|
|
46204
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Template(rf, ctx) { if (rf & 1) {
|
|
46205
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 67);
|
|
46206
|
+
i0.ɵɵelement(1, "symphiq-content-generation-progress-with-confetti", 68);
|
|
46067
46207
|
} if (rf & 2) {
|
|
46208
|
+
let tmp_5_0;
|
|
46068
46209
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
46069
46210
|
i0.ɵɵconditional(!ctx_r2.isOnboarded() ? 0 : -1);
|
|
46070
46211
|
i0.ɵɵadvance();
|
|
46071
|
-
i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("itemStatus", ctx_r2.itemStatus())("
|
|
46212
|
+
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.");
|
|
46072
46213
|
} }
|
|
46073
|
-
function
|
|
46214
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
46074
46215
|
const _r16 = i0.ɵɵgetCurrentView();
|
|
46075
|
-
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator",
|
|
46076
|
-
i0.ɵɵlistener("stepClick", function
|
|
46216
|
+
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 69);
|
|
46217
|
+
i0.ɵɵlistener("stepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r16); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.stepClick.emit($event)); })("nextStepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r16); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.nextStepClick.emit()); });
|
|
46077
46218
|
i0.ɵɵelementEnd();
|
|
46078
46219
|
} if (rf & 2) {
|
|
46079
46220
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
46080
46221
|
i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("currentStepId", ctx_r2.JourneyStepIdEnum.FUNNEL_ANALYSIS)("showNextStepAction", true)("forDemo", ctx_r2.forDemo())("maxAccessibleStepId", ctx_r2.maxAccessibleStepId());
|
|
46081
46222
|
} }
|
|
46082
|
-
function
|
|
46083
|
-
i0.ɵɵelement(0, "symphiq-funnel-analysis-insight-card",
|
|
46223
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_For_13_Template(rf, ctx) { if (rf & 1) {
|
|
46224
|
+
i0.ɵɵelement(0, "symphiq-funnel-analysis-insight-card", 87);
|
|
46084
46225
|
} if (rf & 2) {
|
|
46085
46226
|
const insight_r17 = ctx.$implicit;
|
|
46086
46227
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
46087
46228
|
i0.ɵɵproperty("insight", insight_r17)("allMetrics", ctx_r2.allMetrics())("charts", ctx_r2.chartsForInsight(insight_r17))("allCharts", ctx_r2.allCharts())("allBusinessInsights", ctx_r2.allBusinessInsights())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true)("isLoading", ctx_r2.isDataLoading());
|
|
46088
46229
|
} }
|
|
46089
|
-
function
|
|
46090
|
-
i0.ɵɵelementStart(0, "section",
|
|
46230
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
46231
|
+
i0.ɵɵelementStart(0, "section", 73)(1, "div", 81)(2, "div", 9)(3, "div", 82)(4, "div", 9);
|
|
46091
46232
|
i0.ɵɵnamespaceSVG();
|
|
46092
|
-
i0.ɵɵelementStart(5, "svg",
|
|
46093
|
-
i0.ɵɵelement(6, "path",
|
|
46233
|
+
i0.ɵɵelementStart(5, "svg", 83);
|
|
46234
|
+
i0.ɵɵelement(6, "path", 84);
|
|
46094
46235
|
i0.ɵɵelementEnd();
|
|
46095
46236
|
i0.ɵɵnamespaceHTML();
|
|
46096
|
-
i0.ɵɵelementStart(7, "h2",
|
|
46237
|
+
i0.ɵɵelementStart(7, "h2", 85);
|
|
46097
46238
|
i0.ɵɵtext(8, "Key Insights");
|
|
46098
46239
|
i0.ɵɵelementEnd()()()();
|
|
46099
46240
|
i0.ɵɵelementStart(9, "span", 23);
|
|
46100
46241
|
i0.ɵɵtext(10);
|
|
46101
46242
|
i0.ɵɵelementEnd()();
|
|
46102
|
-
i0.ɵɵelementStart(11, "div",
|
|
46103
|
-
i0.ɵɵrepeaterCreate(12,
|
|
46243
|
+
i0.ɵɵelementStart(11, "div", 86);
|
|
46244
|
+
i0.ɵɵrepeaterCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_For_13_Template, 1, 9, "symphiq-funnel-analysis-insight-card", 87, i0.ɵɵrepeaterTrackByIndex);
|
|
46104
46245
|
i0.ɵɵelementEnd()();
|
|
46105
46246
|
} if (rf & 2) {
|
|
46106
46247
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
@@ -46117,51 +46258,51 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_5_Te
|
|
|
46117
46258
|
i0.ɵɵadvance(2);
|
|
46118
46259
|
i0.ɵɵrepeater(ctx_r2.insights());
|
|
46119
46260
|
} }
|
|
46120
|
-
function
|
|
46121
|
-
i0.ɵɵelement(0, "symphiq-skeleton-loader",
|
|
46261
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
46262
|
+
i0.ɵɵelement(0, "symphiq-skeleton-loader", 88);
|
|
46122
46263
|
} if (rf & 2) {
|
|
46123
46264
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
46124
46265
|
i0.ɵɵproperty("width", "100%")("height", "200px")("isLightMode", ctx_r2.isLightMode());
|
|
46125
46266
|
} }
|
|
46126
|
-
function
|
|
46267
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_8_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
46127
46268
|
const _r18 = i0.ɵɵgetCurrentView();
|
|
46128
|
-
i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment",
|
|
46129
|
-
i0.ɵɵlistener("scrollToSection", function
|
|
46269
|
+
i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment", 90);
|
|
46270
|
+
i0.ɵɵlistener("scrollToSection", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_8_Conditional_2_Template_symphiq_funnel_analysis_overall_assessment_scrollToSection_0_listener($event) { i0.ɵɵrestoreView(_r18); const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.scrollToSection($event)); });
|
|
46130
46271
|
i0.ɵɵelementEnd();
|
|
46131
46272
|
} if (rf & 2) {
|
|
46132
46273
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
46133
46274
|
i0.ɵɵproperty("assessment", ctx_r2.performanceOverview().overallAssessment || i0.ɵɵpureFunction0(11, _c1$d))("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());
|
|
46134
46275
|
} }
|
|
46135
|
-
function
|
|
46136
|
-
i0.ɵɵelementStart(0, "div",
|
|
46137
|
-
i0.ɵɵconditionalCreate(1,
|
|
46276
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
46277
|
+
i0.ɵɵelementStart(0, "div", 76);
|
|
46278
|
+
i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_8_Conditional_1_Template, 1, 3, "symphiq-skeleton-loader", 88)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_8_Conditional_2_Template, 1, 12, "symphiq-funnel-analysis-overall-assessment", 89);
|
|
46138
46279
|
i0.ɵɵelementEnd();
|
|
46139
46280
|
} if (rf & 2) {
|
|
46140
46281
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
46141
46282
|
i0.ɵɵadvance();
|
|
46142
46283
|
i0.ɵɵconditional(ctx_r2.isDataLoading() ? 1 : 2);
|
|
46143
46284
|
} }
|
|
46144
|
-
function
|
|
46145
|
-
i0.ɵɵelement(0, "symphiq-funnel-analysis-metric-card",
|
|
46285
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_For_2_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
46286
|
+
i0.ɵɵelement(0, "symphiq-funnel-analysis-metric-card", 92);
|
|
46146
46287
|
} if (rf & 2) {
|
|
46147
46288
|
const metric_r19 = ctx.$implicit;
|
|
46148
46289
|
const ctx_r2 = i0.ɵɵnextContext(5);
|
|
46149
46290
|
i0.ɵɵproperty("metric", metric_r19)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(metric_r19))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true)("currencySymbol", ctx_r2.currencySymbol());
|
|
46150
46291
|
} }
|
|
46151
|
-
function
|
|
46152
|
-
i0.ɵɵelementStart(0, "div",
|
|
46153
|
-
i0.ɵɵrepeaterCreate(1,
|
|
46292
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
46293
|
+
i0.ɵɵelementStart(0, "div", 93);
|
|
46294
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_For_2_Conditional_2_For_2_Template, 1, 9, "symphiq-funnel-analysis-metric-card", 92, i0.ɵɵrepeaterTrackByIndex);
|
|
46154
46295
|
i0.ɵɵelementEnd();
|
|
46155
46296
|
} if (rf & 2) {
|
|
46156
46297
|
const funnelGroup_r20 = i0.ɵɵnextContext().$implicit;
|
|
46157
46298
|
i0.ɵɵadvance();
|
|
46158
46299
|
i0.ɵɵrepeater(funnelGroup_r20.relatedMetrics);
|
|
46159
46300
|
} }
|
|
46160
|
-
function
|
|
46161
|
-
i0.ɵɵelementStart(0, "div",
|
|
46162
|
-
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card",
|
|
46301
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
46302
|
+
i0.ɵɵelementStart(0, "div", 91);
|
|
46303
|
+
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 92);
|
|
46163
46304
|
i0.ɵɵelementEnd();
|
|
46164
|
-
i0.ɵɵconditionalCreate(2,
|
|
46305
|
+
i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_For_2_Conditional_2_Template, 3, 0, "div", 93);
|
|
46165
46306
|
} if (rf & 2) {
|
|
46166
46307
|
const funnelGroup_r20 = ctx.$implicit;
|
|
46167
46308
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -46170,34 +46311,34 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_10_F
|
|
|
46170
46311
|
i0.ɵɵadvance();
|
|
46171
46312
|
i0.ɵɵconditional(funnelGroup_r20.relatedMetrics.length > 0 ? 2 : -1);
|
|
46172
46313
|
} }
|
|
46173
|
-
function
|
|
46174
|
-
i0.ɵɵelementStart(0, "div",
|
|
46175
|
-
i0.ɵɵrepeaterCreate(1,
|
|
46314
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
46315
|
+
i0.ɵɵelementStart(0, "div", 78);
|
|
46316
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_For_2_Template, 3, 10, null, null, i0.ɵɵrepeaterTrackByIndex);
|
|
46176
46317
|
i0.ɵɵelementEnd();
|
|
46177
46318
|
} if (rf & 2) {
|
|
46178
46319
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
46179
46320
|
i0.ɵɵadvance();
|
|
46180
46321
|
i0.ɵɵrepeater(ctx_r2.groupedMetrics());
|
|
46181
46322
|
} }
|
|
46182
|
-
function
|
|
46183
|
-
i0.ɵɵelement(0, "symphiq-funnel-analysis-breakdown-section",
|
|
46323
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_12_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
46324
|
+
i0.ɵɵelement(0, "symphiq-funnel-analysis-breakdown-section", 94);
|
|
46184
46325
|
} if (rf & 2) {
|
|
46185
46326
|
const breakdown_r21 = ctx.$implicit;
|
|
46186
46327
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
46187
46328
|
i0.ɵɵproperty("breakdown", breakdown_r21)("charts", ctx_r2.chartsForBreakdown(breakdown_r21))("isLightMode", ctx_r2.isLightMode())("isLoading", ctx_r2.isDataLoading())("isCompactMode", true)("currencySymbol", ctx_r2.currencySymbol());
|
|
46188
46329
|
} }
|
|
46189
|
-
function
|
|
46190
|
-
i0.ɵɵelementStart(0, "div",
|
|
46191
|
-
i0.ɵɵrepeaterCreate(1,
|
|
46330
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
46331
|
+
i0.ɵɵelementStart(0, "div", 78);
|
|
46332
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_12_For_2_Template, 1, 6, "symphiq-funnel-analysis-breakdown-section", 94, i0.ɵɵrepeaterTrackByIndex);
|
|
46192
46333
|
i0.ɵɵelementEnd();
|
|
46193
46334
|
} if (rf & 2) {
|
|
46194
46335
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
46195
46336
|
i0.ɵɵadvance();
|
|
46196
46337
|
i0.ɵɵrepeater(ctx_r2.breakdowns());
|
|
46197
46338
|
} }
|
|
46198
|
-
function
|
|
46199
|
-
i0.ɵɵelementStart(0, "div",
|
|
46200
|
-
i0.ɵɵelement(1, "symphiq-competitive-intelligence-view",
|
|
46339
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
46340
|
+
i0.ɵɵelementStart(0, "div", 76);
|
|
46341
|
+
i0.ɵɵelement(1, "symphiq-competitive-intelligence-view", 95);
|
|
46201
46342
|
i0.ɵɵelementEnd();
|
|
46202
46343
|
} if (rf & 2) {
|
|
46203
46344
|
let tmp_7_0;
|
|
@@ -46205,23 +46346,23 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_14_T
|
|
|
46205
46346
|
i0.ɵɵadvance();
|
|
46206
46347
|
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());
|
|
46207
46348
|
} }
|
|
46208
|
-
function
|
|
46209
|
-
i0.ɵɵconditionalCreate(0,
|
|
46210
|
-
i0.ɵɵelementStart(1, "main",
|
|
46211
|
-
i0.ɵɵelement(4, "symphiq-funnel-welcome-banner",
|
|
46349
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Template(rf, ctx) { if (rf & 1) {
|
|
46350
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 67);
|
|
46351
|
+
i0.ɵɵelementStart(1, "main", 37)(2, "div", 70)(3, "div", 71);
|
|
46352
|
+
i0.ɵɵelement(4, "symphiq-funnel-welcome-banner", 72);
|
|
46212
46353
|
i0.ɵɵelementEnd();
|
|
46213
|
-
i0.ɵɵconditionalCreate(5,
|
|
46214
|
-
i0.ɵɵelementStart(6, "symphiq-collapsible-funnel-section-group",
|
|
46215
|
-
i0.ɵɵconditionalCreate(8,
|
|
46354
|
+
i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Template, 14, 7, "section", 73);
|
|
46355
|
+
i0.ɵɵelementStart(6, "symphiq-collapsible-funnel-section-group", 74)(7, "div", 75);
|
|
46356
|
+
i0.ɵɵconditionalCreate(8, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_8_Template, 3, 1, "div", 76);
|
|
46216
46357
|
i0.ɵɵelementEnd();
|
|
46217
|
-
i0.ɵɵelementStart(9, "div",
|
|
46218
|
-
i0.ɵɵconditionalCreate(10,
|
|
46358
|
+
i0.ɵɵelementStart(9, "div", 77);
|
|
46359
|
+
i0.ɵɵconditionalCreate(10, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_Template, 3, 0, "div", 78);
|
|
46219
46360
|
i0.ɵɵelementEnd();
|
|
46220
|
-
i0.ɵɵelementStart(11, "div",
|
|
46221
|
-
i0.ɵɵconditionalCreate(12,
|
|
46361
|
+
i0.ɵɵelementStart(11, "div", 79);
|
|
46362
|
+
i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_12_Template, 3, 0, "div", 78);
|
|
46222
46363
|
i0.ɵɵelementEnd();
|
|
46223
|
-
i0.ɵɵelementStart(13, "div",
|
|
46224
|
-
i0.ɵɵconditionalCreate(14,
|
|
46364
|
+
i0.ɵɵelementStart(13, "div", 80);
|
|
46365
|
+
i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_14_Template, 2, 6, "div", 76);
|
|
46225
46366
|
i0.ɵɵelementEnd()()()();
|
|
46226
46367
|
} if (rf & 2) {
|
|
46227
46368
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -46241,17 +46382,17 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Template(rf, ctx
|
|
|
46241
46382
|
i0.ɵɵadvance(2);
|
|
46242
46383
|
i0.ɵɵconditional(ctx_r2.showCompetitiveIntelligence() ? 14 : -1);
|
|
46243
46384
|
} }
|
|
46244
|
-
function
|
|
46245
|
-
i0.ɵɵelementStart(0, "div",
|
|
46246
|
-
i0.ɵɵelement(3, "symphiq-skeleton-loader",
|
|
46247
|
-
i0.ɵɵelementStart(4, "div",
|
|
46248
|
-
i0.ɵɵelement(5, "symphiq-skeleton-loader",
|
|
46385
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
46386
|
+
i0.ɵɵelementStart(0, "div", 97)(1, "div", 98)(2, "div", 9);
|
|
46387
|
+
i0.ɵɵelement(3, "symphiq-skeleton-loader", 88);
|
|
46388
|
+
i0.ɵɵelementStart(4, "div", 99);
|
|
46389
|
+
i0.ɵɵelement(5, "symphiq-skeleton-loader", 88)(6, "symphiq-skeleton-loader", 88);
|
|
46249
46390
|
i0.ɵɵelementEnd()();
|
|
46250
|
-
i0.ɵɵelementStart(7, "div",
|
|
46251
|
-
i0.ɵɵelement(8, "symphiq-skeleton-loader",
|
|
46391
|
+
i0.ɵɵelementStart(7, "div", 100);
|
|
46392
|
+
i0.ɵɵelement(8, "symphiq-skeleton-loader", 88)(9, "symphiq-skeleton-loader", 88)(10, "symphiq-skeleton-loader", 88);
|
|
46252
46393
|
i0.ɵɵelementEnd();
|
|
46253
|
-
i0.ɵɵelementStart(11, "div",
|
|
46254
|
-
i0.ɵɵelement(12, "symphiq-skeleton-loader",
|
|
46394
|
+
i0.ɵɵelementStart(11, "div", 101);
|
|
46395
|
+
i0.ɵɵelement(12, "symphiq-skeleton-loader", 88)(13, "symphiq-skeleton-loader", 88);
|
|
46255
46396
|
i0.ɵɵelementEnd()()();
|
|
46256
46397
|
} if (rf & 2) {
|
|
46257
46398
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -46273,40 +46414,40 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_2_Co
|
|
|
46273
46414
|
i0.ɵɵadvance();
|
|
46274
46415
|
i0.ɵɵproperty("width", "100%")("height", "200px")("isLightMode", ctx_r2.isLightMode());
|
|
46275
46416
|
} }
|
|
46276
|
-
function
|
|
46417
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
46277
46418
|
const _r22 = i0.ɵɵgetCurrentView();
|
|
46278
|
-
i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment",
|
|
46279
|
-
i0.ɵɵlistener("scrollToSection", function
|
|
46419
|
+
i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment", 90);
|
|
46420
|
+
i0.ɵɵlistener("scrollToSection", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_2_Conditional_2_Template_symphiq_funnel_analysis_overall_assessment_scrollToSection_0_listener($event) { i0.ɵɵrestoreView(_r22); const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.scrollToSection($event)); });
|
|
46280
46421
|
i0.ɵɵelementEnd();
|
|
46281
46422
|
} if (rf & 2) {
|
|
46282
46423
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
46283
46424
|
i0.ɵɵproperty("assessment", ctx_r2.performanceOverview().overallAssessment || i0.ɵɵpureFunction0(11, _c1$d))("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());
|
|
46284
46425
|
} }
|
|
46285
|
-
function
|
|
46286
|
-
i0.ɵɵelementStart(0, "div",
|
|
46287
|
-
i0.ɵɵconditionalCreate(1,
|
|
46426
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
46427
|
+
i0.ɵɵelementStart(0, "div", 96);
|
|
46428
|
+
i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_2_Conditional_1_Template, 14, 25, "div", 97)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_2_Conditional_2_Template, 1, 12, "symphiq-funnel-analysis-overall-assessment", 89);
|
|
46288
46429
|
i0.ɵɵelementEnd();
|
|
46289
46430
|
} if (rf & 2) {
|
|
46290
46431
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
46291
46432
|
i0.ɵɵadvance();
|
|
46292
46433
|
i0.ɵɵconditional(ctx_r2.isDataLoading() ? 1 : 2);
|
|
46293
46434
|
} }
|
|
46294
|
-
function
|
|
46295
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
46435
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
46436
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 102);
|
|
46296
46437
|
} if (rf & 2) {
|
|
46297
46438
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
46298
46439
|
i0.ɵɵproperty("viewMode", ctx_r2.viewMode());
|
|
46299
46440
|
} }
|
|
46300
|
-
function
|
|
46301
|
-
i0.ɵɵelementStart(0, "div",
|
|
46302
|
-
i0.ɵɵelement(3, "symphiq-skeleton-loader",
|
|
46441
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_14_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
46442
|
+
i0.ɵɵelementStart(0, "div", 109)(1, "div", 110)(2, "div", 111);
|
|
46443
|
+
i0.ɵɵelement(3, "symphiq-skeleton-loader", 88)(4, "symphiq-skeleton-loader", 88);
|
|
46303
46444
|
i0.ɵɵelementEnd();
|
|
46304
|
-
i0.ɵɵelement(5, "symphiq-skeleton-loader",
|
|
46305
|
-
i0.ɵɵelementStart(8, "div",
|
|
46306
|
-
i0.ɵɵelement(9, "symphiq-skeleton-loader",
|
|
46445
|
+
i0.ɵɵelement(5, "symphiq-skeleton-loader", 88)(6, "symphiq-skeleton-loader", 88)(7, "symphiq-skeleton-loader", 88);
|
|
46446
|
+
i0.ɵɵelementStart(8, "div", 112);
|
|
46447
|
+
i0.ɵɵelement(9, "symphiq-skeleton-loader", 88)(10, "symphiq-skeleton-loader", 88);
|
|
46307
46448
|
i0.ɵɵelementEnd();
|
|
46308
|
-
i0.ɵɵelementStart(11, "div",
|
|
46309
|
-
i0.ɵɵelement(12, "symphiq-skeleton-loader",
|
|
46449
|
+
i0.ɵɵelementStart(11, "div", 113);
|
|
46450
|
+
i0.ɵɵelement(12, "symphiq-skeleton-loader", 88)(13, "symphiq-skeleton-loader", 88);
|
|
46310
46451
|
i0.ɵɵelementEnd()()();
|
|
46311
46452
|
} if (rf & 2) {
|
|
46312
46453
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
@@ -46330,17 +46471,17 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Co
|
|
|
46330
46471
|
i0.ɵɵadvance();
|
|
46331
46472
|
i0.ɵɵproperty("width", "80px")("height", "28px")("isLightMode", ctx_r2.isLightMode());
|
|
46332
46473
|
} }
|
|
46333
|
-
function
|
|
46334
|
-
i0.ɵɵelementStart(0, "div",
|
|
46335
|
-
i0.ɵɵrepeaterCreate(1,
|
|
46474
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
46475
|
+
i0.ɵɵelementStart(0, "div", 107);
|
|
46476
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_14_For_2_Template, 14, 28, "div", 109, i0.ɵɵrepeaterTrackByIdentity);
|
|
46336
46477
|
i0.ɵɵelementEnd();
|
|
46337
46478
|
} if (rf & 2) {
|
|
46338
46479
|
i0.ɵɵadvance();
|
|
46339
46480
|
i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c2$8));
|
|
46340
46481
|
} }
|
|
46341
|
-
function
|
|
46342
|
-
i0.ɵɵelementStart(0, "div",
|
|
46343
|
-
i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card",
|
|
46482
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_15_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
46483
|
+
i0.ɵɵelementStart(0, "div", 115);
|
|
46484
|
+
i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card", 116);
|
|
46344
46485
|
i0.ɵɵelementEnd();
|
|
46345
46486
|
} if (rf & 2) {
|
|
46346
46487
|
const insight_r23 = ctx.$implicit;
|
|
@@ -46352,18 +46493,18 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Co
|
|
|
46352
46493
|
i0.ɵɵadvance();
|
|
46353
46494
|
i0.ɵɵproperty("insight", insight_r23)("allMetrics", ctx_r2.allMetrics())("charts", ctx_r2.chartsForInsight(insight_r23))("allCharts", ctx_r2.allCharts())("allBusinessInsights", ctx_r2.allBusinessInsights())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", false);
|
|
46354
46495
|
} }
|
|
46355
|
-
function
|
|
46356
|
-
i0.ɵɵelementStart(0, "div",
|
|
46357
|
-
i0.ɵɵrepeaterCreate(1,
|
|
46496
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_15_Template(rf, ctx) { if (rf & 1) {
|
|
46497
|
+
i0.ɵɵelementStart(0, "div", 107);
|
|
46498
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_15_For_2_Template, 2, 14, "div", 114, i0.ɵɵrepeaterTrackByIndex);
|
|
46358
46499
|
i0.ɵɵelementEnd();
|
|
46359
46500
|
} if (rf & 2) {
|
|
46360
46501
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
46361
46502
|
i0.ɵɵadvance();
|
|
46362
46503
|
i0.ɵɵrepeater(ctx_r2.insights());
|
|
46363
46504
|
} }
|
|
46364
|
-
function
|
|
46365
|
-
i0.ɵɵelementStart(0, "div",
|
|
46366
|
-
i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card",
|
|
46505
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_16_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
46506
|
+
i0.ɵɵelementStart(0, "div", 115);
|
|
46507
|
+
i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card", 116);
|
|
46367
46508
|
i0.ɵɵelementEnd();
|
|
46368
46509
|
} if (rf & 2) {
|
|
46369
46510
|
const insight_r25 = ctx.$implicit;
|
|
@@ -46374,32 +46515,32 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Co
|
|
|
46374
46515
|
i0.ɵɵadvance();
|
|
46375
46516
|
i0.ɵɵproperty("insight", insight_r25)("allMetrics", ctx_r2.allMetrics())("charts", ctx_r2.chartsForInsight(insight_r25))("allCharts", ctx_r2.allCharts())("allBusinessInsights", ctx_r2.allBusinessInsights())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true);
|
|
46376
46517
|
} }
|
|
46377
|
-
function
|
|
46378
|
-
i0.ɵɵelementStart(0, "div",
|
|
46379
|
-
i0.ɵɵrepeaterCreate(1,
|
|
46518
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_16_Template(rf, ctx) { if (rf & 1) {
|
|
46519
|
+
i0.ɵɵelementStart(0, "div", 108);
|
|
46520
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_16_For_2_Template, 2, 12, "div", 117, i0.ɵɵrepeaterTrackByIndex);
|
|
46380
46521
|
i0.ɵɵelementEnd();
|
|
46381
46522
|
} if (rf & 2) {
|
|
46382
46523
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
46383
46524
|
i0.ɵɵadvance();
|
|
46384
46525
|
i0.ɵɵrepeater(ctx_r2.insights());
|
|
46385
46526
|
} }
|
|
46386
|
-
function
|
|
46387
|
-
i0.ɵɵconditionalCreate(0,
|
|
46388
|
-
i0.ɵɵelementStart(1, "section",
|
|
46389
|
-
i0.ɵɵelement(2, "div",
|
|
46390
|
-
i0.ɵɵelementStart(3, "div",
|
|
46527
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
46528
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_0_Template, 1, 1, "symphiq-section-divider", 102);
|
|
46529
|
+
i0.ɵɵelementStart(1, "section", 103);
|
|
46530
|
+
i0.ɵɵelement(2, "div", 104);
|
|
46531
|
+
i0.ɵɵelementStart(3, "div", 105)(4, "div", 106)(5, "div", 9)(6, "div", 82)(7, "div", 9);
|
|
46391
46532
|
i0.ɵɵnamespaceSVG();
|
|
46392
|
-
i0.ɵɵelementStart(8, "svg",
|
|
46393
|
-
i0.ɵɵelement(9, "path",
|
|
46533
|
+
i0.ɵɵelementStart(8, "svg", 83);
|
|
46534
|
+
i0.ɵɵelement(9, "path", 84);
|
|
46394
46535
|
i0.ɵɵelementEnd();
|
|
46395
46536
|
i0.ɵɵnamespaceHTML();
|
|
46396
|
-
i0.ɵɵelementStart(10, "h2",
|
|
46537
|
+
i0.ɵɵelementStart(10, "h2", 85);
|
|
46397
46538
|
i0.ɵɵtext(11, "Key Insights");
|
|
46398
46539
|
i0.ɵɵelementEnd()()()();
|
|
46399
46540
|
i0.ɵɵelementStart(12, "span", 23);
|
|
46400
46541
|
i0.ɵɵtext(13);
|
|
46401
46542
|
i0.ɵɵelementEnd()();
|
|
46402
|
-
i0.ɵɵconditionalCreate(14,
|
|
46543
|
+
i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_14_Template, 3, 1, "div", 107)(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_15_Template, 3, 0, "div", 107)(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_16_Template, 3, 0, "div", 108);
|
|
46403
46544
|
i0.ɵɵelementEnd()();
|
|
46404
46545
|
} if (rf & 2) {
|
|
46405
46546
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
@@ -46419,14 +46560,14 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Te
|
|
|
46419
46560
|
i0.ɵɵadvance();
|
|
46420
46561
|
i0.ɵɵconditional(ctx_r2.isDataLoading() || ctx_r2.viewModeService.isExpanded() && ctx_r2.viewModeService.getIsTransitioning() ? 14 : ctx_r2.viewModeService.isExpanded() ? 15 : 16);
|
|
46421
46562
|
} }
|
|
46422
|
-
function
|
|
46423
|
-
i0.ɵɵelementStart(0, "div",
|
|
46424
|
-
i0.ɵɵelement(2, "div",
|
|
46563
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
46564
|
+
i0.ɵɵelementStart(0, "div", 118)(1, "div", 134);
|
|
46565
|
+
i0.ɵɵelement(2, "div", 135);
|
|
46425
46566
|
i0.ɵɵelementEnd();
|
|
46426
|
-
i0.ɵɵelementStart(3, "div",
|
|
46567
|
+
i0.ɵɵelementStart(3, "div", 136)(4, "div", 137);
|
|
46427
46568
|
i0.ɵɵnamespaceSVG();
|
|
46428
|
-
i0.ɵɵelementStart(5, "svg",
|
|
46429
|
-
i0.ɵɵelement(6, "path",
|
|
46569
|
+
i0.ɵɵelementStart(5, "svg", 138);
|
|
46570
|
+
i0.ɵɵelement(6, "path", 139);
|
|
46430
46571
|
i0.ɵɵelementEnd()()()();
|
|
46431
46572
|
} if (rf & 2) {
|
|
46432
46573
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -46437,13 +46578,13 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Co
|
|
|
46437
46578
|
i0.ɵɵadvance();
|
|
46438
46579
|
i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-emerald-500" : "text-emerald-400");
|
|
46439
46580
|
} }
|
|
46440
|
-
function
|
|
46441
|
-
i0.ɵɵelementStart(0, "div",
|
|
46442
|
-
i0.ɵɵelement(1, "div",
|
|
46581
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
46582
|
+
i0.ɵɵelementStart(0, "div", 125);
|
|
46583
|
+
i0.ɵɵelement(1, "div", 140);
|
|
46443
46584
|
i0.ɵɵelementEnd();
|
|
46444
46585
|
} }
|
|
46445
|
-
function
|
|
46446
|
-
i0.ɵɵelementStart(0, "option",
|
|
46586
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_17_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
46587
|
+
i0.ɵɵelementStart(0, "option", 141);
|
|
46447
46588
|
i0.ɵɵtext(1);
|
|
46448
46589
|
i0.ɵɵelementEnd();
|
|
46449
46590
|
} if (rf & 2) {
|
|
@@ -46452,8 +46593,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Fo
|
|
|
46452
46593
|
i0.ɵɵadvance();
|
|
46453
46594
|
i0.ɵɵtextInterpolate(cat_r28.label);
|
|
46454
46595
|
} }
|
|
46455
|
-
function
|
|
46456
|
-
i0.ɵɵelementStart(0, "option",
|
|
46596
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_17_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
46597
|
+
i0.ɵɵelementStart(0, "option", 50);
|
|
46457
46598
|
i0.ɵɵtext(1);
|
|
46458
46599
|
i0.ɵɵelementEnd();
|
|
46459
46600
|
} if (rf & 2) {
|
|
@@ -46462,24 +46603,24 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Fo
|
|
|
46462
46603
|
i0.ɵɵadvance();
|
|
46463
46604
|
i0.ɵɵtextInterpolate(cat_r28.label);
|
|
46464
46605
|
} }
|
|
46465
|
-
function
|
|
46466
|
-
i0.ɵɵconditionalCreate(0,
|
|
46606
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_17_Template(rf, ctx) { if (rf & 1) {
|
|
46607
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_17_Conditional_0_Template, 2, 2, "option", 141)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_17_Conditional_1_Template, 2, 2, "option", 50);
|
|
46467
46608
|
} if (rf & 2) {
|
|
46468
46609
|
const cat_r28 = ctx.$implicit;
|
|
46469
46610
|
i0.ɵɵconditional(cat_r28.divider ? 0 : 1);
|
|
46470
46611
|
} }
|
|
46471
|
-
function
|
|
46612
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_20_Template(rf, ctx) { if (rf & 1) {
|
|
46472
46613
|
i0.ɵɵnamespaceSVG();
|
|
46473
|
-
i0.ɵɵelement(0, "path",
|
|
46614
|
+
i0.ɵɵelement(0, "path", 128);
|
|
46474
46615
|
} }
|
|
46475
|
-
function
|
|
46616
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_21_Template(rf, ctx) { if (rf & 1) {
|
|
46476
46617
|
i0.ɵɵnamespaceSVG();
|
|
46477
|
-
i0.ɵɵelement(0, "path",
|
|
46618
|
+
i0.ɵɵelement(0, "path", 129);
|
|
46478
46619
|
} }
|
|
46479
|
-
function
|
|
46620
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_27_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
46480
46621
|
const _r29 = i0.ɵɵgetCurrentView();
|
|
46481
|
-
i0.ɵɵelementStart(0, "button",
|
|
46482
|
-
i0.ɵɵlistener("click", function
|
|
46622
|
+
i0.ɵɵelementStart(0, "button", 143);
|
|
46623
|
+
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_27_Conditional_0_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r29); const cat_r30 = i0.ɵɵnextContext().$implicit; const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter(cat_r30.value)); });
|
|
46483
46624
|
i0.ɵɵtext(1);
|
|
46484
46625
|
i0.ɵɵelementEnd();
|
|
46485
46626
|
} if (rf & 2) {
|
|
@@ -46490,28 +46631,28 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Fo
|
|
|
46490
46631
|
i0.ɵɵadvance();
|
|
46491
46632
|
i0.ɵɵtextInterpolate1(" ", cat_r30.label, " ");
|
|
46492
46633
|
} }
|
|
46493
|
-
function
|
|
46494
|
-
i0.ɵɵconditionalCreate(0,
|
|
46634
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_27_Template(rf, ctx) { if (rf & 1) {
|
|
46635
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_27_Conditional_0_Template, 2, 4, "button", 142);
|
|
46495
46636
|
} if (rf & 2) {
|
|
46496
46637
|
const cat_r30 = ctx.$implicit;
|
|
46497
46638
|
i0.ɵɵconditional(!cat_r30.divider ? 0 : -1);
|
|
46498
46639
|
} }
|
|
46499
|
-
function
|
|
46500
|
-
i0.ɵɵelement(0, "symphiq-skeleton-loader",
|
|
46640
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_28_For_2_For_10_Template(rf, ctx) { if (rf & 1) {
|
|
46641
|
+
i0.ɵɵelement(0, "symphiq-skeleton-loader", 88);
|
|
46501
46642
|
} if (rf & 2) {
|
|
46502
46643
|
const ctx_r2 = i0.ɵɵnextContext(5);
|
|
46503
46644
|
i0.ɵɵproperty("width", "100%")("height", "120px")("isLightMode", ctx_r2.isLightMode());
|
|
46504
46645
|
} }
|
|
46505
|
-
function
|
|
46506
|
-
i0.ɵɵelementStart(0, "div",
|
|
46507
|
-
i0.ɵɵelement(3, "symphiq-skeleton-loader",
|
|
46508
|
-
i0.ɵɵelementStart(4, "div",
|
|
46509
|
-
i0.ɵɵelement(5, "symphiq-skeleton-loader",
|
|
46646
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_28_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
46647
|
+
i0.ɵɵelementStart(0, "div", 144)(1, "div", 145)(2, "div", 9);
|
|
46648
|
+
i0.ɵɵelement(3, "symphiq-skeleton-loader", 88);
|
|
46649
|
+
i0.ɵɵelementStart(4, "div", 100);
|
|
46650
|
+
i0.ɵɵelement(5, "symphiq-skeleton-loader", 88)(6, "symphiq-skeleton-loader", 88);
|
|
46510
46651
|
i0.ɵɵelementEnd()();
|
|
46511
|
-
i0.ɵɵelement(7, "symphiq-skeleton-loader",
|
|
46652
|
+
i0.ɵɵelement(7, "symphiq-skeleton-loader", 88);
|
|
46512
46653
|
i0.ɵɵelementEnd();
|
|
46513
|
-
i0.ɵɵelementStart(8, "div",
|
|
46514
|
-
i0.ɵɵrepeaterCreate(9,
|
|
46654
|
+
i0.ɵɵelementStart(8, "div", 146);
|
|
46655
|
+
i0.ɵɵrepeaterCreate(9, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_28_For_2_For_10_Template, 1, 3, "symphiq-skeleton-loader", 88, i0.ɵɵrepeaterTrackByIdentity);
|
|
46515
46656
|
i0.ɵɵelementEnd()();
|
|
46516
46657
|
} if (rf & 2) {
|
|
46517
46658
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
@@ -46527,70 +46668,70 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Co
|
|
|
46527
46668
|
i0.ɵɵadvance(2);
|
|
46528
46669
|
i0.ɵɵrepeater(i0.ɵɵpureFunction0(13, _c4$3));
|
|
46529
46670
|
} }
|
|
46530
|
-
function
|
|
46531
|
-
i0.ɵɵelementStart(0, "div",
|
|
46532
|
-
i0.ɵɵrepeaterCreate(1,
|
|
46671
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_28_Template(rf, ctx) { if (rf & 1) {
|
|
46672
|
+
i0.ɵɵelementStart(0, "div", 132);
|
|
46673
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_28_For_2_Template, 11, 14, "div", 144, i0.ɵɵrepeaterTrackByIdentity);
|
|
46533
46674
|
i0.ɵɵelementEnd();
|
|
46534
46675
|
} if (rf & 2) {
|
|
46535
46676
|
i0.ɵɵadvance();
|
|
46536
46677
|
i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c3$5));
|
|
46537
46678
|
} }
|
|
46538
|
-
function
|
|
46539
|
-
i0.ɵɵelementStart(0, "div",
|
|
46540
|
-
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card",
|
|
46679
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
46680
|
+
i0.ɵɵelementStart(0, "div", 152);
|
|
46681
|
+
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 153);
|
|
46541
46682
|
i0.ɵɵelementEnd();
|
|
46542
46683
|
} if (rf & 2) {
|
|
46543
46684
|
const metric_r31 = ctx.$implicit;
|
|
46544
|
-
const ɵ$
|
|
46545
|
-
const ɵ$
|
|
46685
|
+
const ɵ$index_513_r32 = ctx.$index;
|
|
46686
|
+
const ɵ$index_504_r33 = i0.ɵɵnextContext(3).$index;
|
|
46546
46687
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
46547
|
-
i0.ɵɵclassMap(ctx_r2.getBentoCardClass(metric_r31, ɵ$
|
|
46548
|
-
i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$
|
|
46688
|
+
i0.ɵɵclassMap(ctx_r2.getBentoCardClass(metric_r31, ɵ$index_513_r32));
|
|
46689
|
+
i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_504_r33 * 0.15 + ɵ$index_513_r32 * 0.08 + "s");
|
|
46549
46690
|
i0.ɵɵadvance();
|
|
46550
46691
|
i0.ɵɵproperty("metric", metric_r31)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(metric_r31))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", false)("currencySymbol", ctx_r2.currencySymbol());
|
|
46551
46692
|
} }
|
|
46552
|
-
function
|
|
46553
|
-
i0.ɵɵelementStart(0, "div",
|
|
46554
|
-
i0.ɵɵrepeaterCreate(1,
|
|
46693
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
46694
|
+
i0.ɵɵelementStart(0, "div", 149);
|
|
46695
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template, 2, 13, "div", 151, i0.ɵɵrepeaterTrackByIndex);
|
|
46555
46696
|
i0.ɵɵelementEnd();
|
|
46556
46697
|
} if (rf & 2) {
|
|
46557
46698
|
const funnelGroup_r34 = i0.ɵɵnextContext(2).$implicit;
|
|
46558
46699
|
i0.ɵɵadvance();
|
|
46559
46700
|
i0.ɵɵrepeater(funnelGroup_r34.relatedMetrics);
|
|
46560
46701
|
} }
|
|
46561
|
-
function
|
|
46562
|
-
i0.ɵɵelementStart(0, "div",
|
|
46563
|
-
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card",
|
|
46702
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
46703
|
+
i0.ɵɵelementStart(0, "div", 152);
|
|
46704
|
+
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 92);
|
|
46564
46705
|
i0.ɵɵelementEnd();
|
|
46565
46706
|
} if (rf & 2) {
|
|
46566
46707
|
const metric_r35 = ctx.$implicit;
|
|
46567
|
-
const ɵ$
|
|
46568
|
-
const ɵ$
|
|
46708
|
+
const ɵ$index_521_r36 = ctx.$index;
|
|
46709
|
+
const ɵ$index_504_r33 = i0.ɵɵnextContext(3).$index;
|
|
46569
46710
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
46570
|
-
i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$
|
|
46711
|
+
i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_504_r33 * 0.15 + ɵ$index_521_r36 * 0.08 + "s");
|
|
46571
46712
|
i0.ɵɵadvance();
|
|
46572
46713
|
i0.ɵɵproperty("metric", metric_r35)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(metric_r35))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true)("currencySymbol", ctx_r2.currencySymbol());
|
|
46573
46714
|
} }
|
|
46574
|
-
function
|
|
46575
|
-
i0.ɵɵelementStart(0, "div",
|
|
46576
|
-
i0.ɵɵrepeaterCreate(1,
|
|
46715
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
46716
|
+
i0.ɵɵelementStart(0, "div", 150);
|
|
46717
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template, 2, 11, "div", 154, i0.ɵɵrepeaterTrackByIndex);
|
|
46577
46718
|
i0.ɵɵelementEnd();
|
|
46578
46719
|
} if (rf & 2) {
|
|
46579
46720
|
const funnelGroup_r34 = i0.ɵɵnextContext(2).$implicit;
|
|
46580
46721
|
i0.ɵɵadvance();
|
|
46581
46722
|
i0.ɵɵrepeater(funnelGroup_r34.relatedMetrics);
|
|
46582
46723
|
} }
|
|
46583
|
-
function
|
|
46584
|
-
i0.ɵɵelementStart(0, "div",
|
|
46585
|
-
i0.ɵɵelement(3, "symphiq-skeleton-loader",
|
|
46724
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
46725
|
+
i0.ɵɵelementStart(0, "div", 155)(1, "div", 110)(2, "div", 122);
|
|
46726
|
+
i0.ɵɵelement(3, "symphiq-skeleton-loader", 88)(4, "symphiq-skeleton-loader", 88);
|
|
46586
46727
|
i0.ɵɵelementEnd();
|
|
46587
|
-
i0.ɵɵelement(5, "symphiq-skeleton-loader",
|
|
46588
|
-
i0.ɵɵelementStart(6, "div",
|
|
46589
|
-
i0.ɵɵelement(7, "symphiq-skeleton-loader",
|
|
46728
|
+
i0.ɵɵelement(5, "symphiq-skeleton-loader", 88);
|
|
46729
|
+
i0.ɵɵelementStart(6, "div", 156);
|
|
46730
|
+
i0.ɵɵelement(7, "symphiq-skeleton-loader", 88)(8, "symphiq-skeleton-loader", 88);
|
|
46590
46731
|
i0.ɵɵelementEnd();
|
|
46591
|
-
i0.ɵɵelement(9, "symphiq-skeleton-loader",
|
|
46592
|
-
i0.ɵɵelementStart(11, "div",
|
|
46593
|
-
i0.ɵɵelement(12, "symphiq-skeleton-loader",
|
|
46732
|
+
i0.ɵɵelement(9, "symphiq-skeleton-loader", 88)(10, "symphiq-skeleton-loader", 88);
|
|
46733
|
+
i0.ɵɵelementStart(11, "div", 157);
|
|
46734
|
+
i0.ɵɵelement(12, "symphiq-skeleton-loader", 88);
|
|
46594
46735
|
i0.ɵɵelementEnd()()();
|
|
46595
46736
|
} if (rf & 2) {
|
|
46596
46737
|
const ctx_r2 = i0.ɵɵnextContext(7);
|
|
@@ -46612,47 +46753,47 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Co
|
|
|
46612
46753
|
i0.ɵɵadvance(2);
|
|
46613
46754
|
i0.ɵɵproperty("width", "100%")("height", "120px")("isLightMode", ctx_r2.isLightMode());
|
|
46614
46755
|
} }
|
|
46615
|
-
function
|
|
46616
|
-
i0.ɵɵelementStart(0, "div",
|
|
46617
|
-
i0.ɵɵrepeaterCreate(1,
|
|
46756
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
46757
|
+
i0.ɵɵelementStart(0, "div", 149);
|
|
46758
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template, 13, 25, "div", 155, i0.ɵɵrepeaterTrackByIdentity);
|
|
46618
46759
|
i0.ɵɵelementEnd();
|
|
46619
46760
|
} if (rf & 2) {
|
|
46620
46761
|
i0.ɵɵadvance();
|
|
46621
46762
|
i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c4$3));
|
|
46622
46763
|
} }
|
|
46623
|
-
function
|
|
46624
|
-
i0.ɵɵconditionalCreate(0,
|
|
46764
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
46765
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_Template, 3, 0, "div", 149)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_Template, 3, 0, "div", 150)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_Template, 3, 1, "div", 149);
|
|
46625
46766
|
} if (rf & 2) {
|
|
46626
46767
|
const ctx_r2 = i0.ɵɵnextContext(5);
|
|
46627
46768
|
i0.ɵɵconditional(ctx_r2.viewModeService.isExpanded() ? 0 : !ctx_r2.viewModeService.isExpanded() ? 1 : 2);
|
|
46628
46769
|
} }
|
|
46629
|
-
function
|
|
46630
|
-
i0.ɵɵelementStart(0, "div",
|
|
46631
|
-
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card",
|
|
46770
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
46771
|
+
i0.ɵɵelementStart(0, "div", 148);
|
|
46772
|
+
i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 92);
|
|
46632
46773
|
i0.ɵɵelementEnd();
|
|
46633
|
-
i0.ɵɵconditionalCreate(2,
|
|
46774
|
+
i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Template, 3, 1);
|
|
46634
46775
|
} if (rf & 2) {
|
|
46635
46776
|
const funnelGroup_r34 = ctx.$implicit;
|
|
46636
|
-
const ɵ$
|
|
46777
|
+
const ɵ$index_504_r33 = ctx.$index;
|
|
46637
46778
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
46638
|
-
i0.ɵɵstyleProp("animation-delay", 0.5 + ɵ$
|
|
46639
|
-
i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "metric-" + ɵ$
|
|
46779
|
+
i0.ɵɵstyleProp("animation-delay", 0.5 + ɵ$index_504_r33 * 0.15 + "s");
|
|
46780
|
+
i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "metric-" + ɵ$index_504_r33);
|
|
46640
46781
|
i0.ɵɵadvance();
|
|
46641
46782
|
i0.ɵɵproperty("metric", funnelGroup_r34.funnelMetric)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(funnelGroup_r34.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());
|
|
46642
46783
|
i0.ɵɵadvance();
|
|
46643
46784
|
i0.ɵɵconditional(funnelGroup_r34.relatedMetrics.length > 0 ? 2 : -1);
|
|
46644
46785
|
} }
|
|
46645
|
-
function
|
|
46646
|
-
i0.ɵɵelementStart(0, "div",
|
|
46786
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_ForEmpty_3_Template(rf, ctx) { if (rf & 1) {
|
|
46787
|
+
i0.ɵɵelementStart(0, "div", 147);
|
|
46647
46788
|
i0.ɵɵnamespaceSVG();
|
|
46648
|
-
i0.ɵɵelementStart(1, "svg",
|
|
46649
|
-
i0.ɵɵelement(2, "path",
|
|
46789
|
+
i0.ɵɵelementStart(1, "svg", 158);
|
|
46790
|
+
i0.ɵɵelement(2, "path", 123);
|
|
46650
46791
|
i0.ɵɵelementEnd();
|
|
46651
46792
|
i0.ɵɵnamespaceHTML();
|
|
46652
|
-
i0.ɵɵelementStart(3, "h3",
|
|
46793
|
+
i0.ɵɵelementStart(3, "h3", 159);
|
|
46653
46794
|
i0.ɵɵtext(4, "No Metrics Found");
|
|
46654
46795
|
i0.ɵɵelementEnd();
|
|
46655
|
-
i0.ɵɵelementStart(5, "p",
|
|
46796
|
+
i0.ɵɵelementStart(5, "p", 160);
|
|
46656
46797
|
i0.ɵɵtext(6, "No performance metrics match your current filter selection. Try adjusting your filters to see more results.");
|
|
46657
46798
|
i0.ɵɵelementEnd()();
|
|
46658
46799
|
} if (rf & 2) {
|
|
@@ -46665,9 +46806,9 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Co
|
|
|
46665
46806
|
i0.ɵɵadvance(2);
|
|
46666
46807
|
i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-slate-600" : "text-slate-400");
|
|
46667
46808
|
} }
|
|
46668
|
-
function
|
|
46669
|
-
i0.ɵɵelementStart(0, "div",
|
|
46670
|
-
i0.ɵɵrepeaterCreate(1,
|
|
46809
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_Template(rf, ctx) { if (rf & 1) {
|
|
46810
|
+
i0.ɵɵelementStart(0, "div", 132);
|
|
46811
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Template, 3, 14, null, null, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_ForEmpty_3_Template, 7, 4, "div", 147);
|
|
46671
46812
|
i0.ɵɵelementEnd();
|
|
46672
46813
|
} if (rf & 2) {
|
|
46673
46814
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -46675,41 +46816,41 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Co
|
|
|
46675
46816
|
i0.ɵɵadvance();
|
|
46676
46817
|
i0.ɵɵrepeater(ctx_r2.groupedMetrics());
|
|
46677
46818
|
} }
|
|
46678
|
-
function
|
|
46819
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
46679
46820
|
const _r27 = i0.ɵɵgetCurrentView();
|
|
46680
|
-
i0.ɵɵconditionalCreate(0,
|
|
46681
|
-
i0.ɵɵelementStart(1, "section",
|
|
46682
|
-
i0.ɵɵelement(2, "div",
|
|
46683
|
-
i0.ɵɵelementStart(3, "div",
|
|
46821
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_0_Template, 7, 3, "div", 118);
|
|
46822
|
+
i0.ɵɵelementStart(1, "section", 119);
|
|
46823
|
+
i0.ɵɵelement(2, "div", 120);
|
|
46824
|
+
i0.ɵɵelementStart(3, "div", 105)(4, "div", 121)(5, "div", 122)(6, "div", 9)(7, "div", 82)(8, "div", 9);
|
|
46684
46825
|
i0.ɵɵnamespaceSVG();
|
|
46685
|
-
i0.ɵɵelementStart(9, "svg",
|
|
46686
|
-
i0.ɵɵelement(10, "path",
|
|
46826
|
+
i0.ɵɵelementStart(9, "svg", 83);
|
|
46827
|
+
i0.ɵɵelement(10, "path", 123);
|
|
46687
46828
|
i0.ɵɵelementEnd();
|
|
46688
46829
|
i0.ɵɵnamespaceHTML();
|
|
46689
|
-
i0.ɵɵelementStart(11, "h2",
|
|
46830
|
+
i0.ɵɵelementStart(11, "h2", 85);
|
|
46690
46831
|
i0.ɵɵtext(12, "Performance Metrics");
|
|
46691
46832
|
i0.ɵɵelementEnd()()()();
|
|
46692
|
-
i0.ɵɵelementStart(13, "div",
|
|
46693
|
-
i0.ɵɵconditionalCreate(14,
|
|
46694
|
-
i0.ɵɵelementStart(15, "select",
|
|
46695
|
-
i0.ɵɵlistener("ngModelChange", function
|
|
46696
|
-
i0.ɵɵrepeaterCreate(16,
|
|
46697
|
-
i0.ɵɵelementEnd();
|
|
46698
|
-
i0.ɵɵelementStart(18, "button",
|
|
46699
|
-
i0.ɵɵlistener("click", function
|
|
46833
|
+
i0.ɵɵelementStart(13, "div", 124);
|
|
46834
|
+
i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_14_Template, 2, 0, "div", 125);
|
|
46835
|
+
i0.ɵɵelementStart(15, "select", 126);
|
|
46836
|
+
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Template_select_ngModelChange_15_listener($event) { i0.ɵɵrestoreView(_r27); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter($event)); });
|
|
46837
|
+
i0.ɵɵrepeaterCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_17_Template, 2, 1, null, null, _forTrack0$p);
|
|
46838
|
+
i0.ɵɵelementEnd();
|
|
46839
|
+
i0.ɵɵelementStart(18, "button", 127);
|
|
46840
|
+
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Template_button_click_18_listener() { i0.ɵɵrestoreView(_r27); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.toggleSortOrder()); });
|
|
46700
46841
|
i0.ɵɵnamespaceSVG();
|
|
46701
46842
|
i0.ɵɵelementStart(19, "svg", 17);
|
|
46702
|
-
i0.ɵɵconditionalCreate(20,
|
|
46703
|
-
i0.ɵɵconditionalCreate(21,
|
|
46843
|
+
i0.ɵɵconditionalCreate(20, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_20_Template, 1, 0, ":svg:path", 128);
|
|
46844
|
+
i0.ɵɵconditionalCreate(21, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_21_Template, 1, 0, ":svg:path", 129);
|
|
46704
46845
|
i0.ɵɵelementEnd();
|
|
46705
46846
|
i0.ɵɵnamespaceHTML();
|
|
46706
46847
|
i0.ɵɵelementStart(22, "span");
|
|
46707
46848
|
i0.ɵɵtext(23, "Sort");
|
|
46708
46849
|
i0.ɵɵelementEnd()()()();
|
|
46709
|
-
i0.ɵɵelementStart(24, "div",
|
|
46710
|
-
i0.ɵɵrepeaterCreate(26,
|
|
46850
|
+
i0.ɵɵelementStart(24, "div", 130)(25, "div", 131);
|
|
46851
|
+
i0.ɵɵrepeaterCreate(26, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_27_Template, 1, 1, null, null, _forTrack0$p);
|
|
46711
46852
|
i0.ɵɵelementEnd()()();
|
|
46712
|
-
i0.ɵɵconditionalCreate(28,
|
|
46853
|
+
i0.ɵɵconditionalCreate(28, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_28_Template, 3, 1, "div", 132)(29, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_Template, 4, 5, "div", 133);
|
|
46713
46854
|
i0.ɵɵelementEnd()();
|
|
46714
46855
|
} if (rf & 2) {
|
|
46715
46856
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
@@ -46742,22 +46883,22 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Te
|
|
|
46742
46883
|
i0.ɵɵadvance(2);
|
|
46743
46884
|
i0.ɵɵconditional(ctx_r2.isDataLoading() ? 28 : 29);
|
|
46744
46885
|
} }
|
|
46745
|
-
function
|
|
46746
|
-
i0.ɵɵelementStart(0, "div",
|
|
46747
|
-
i0.ɵɵelement(1, "symphiq-section-divider",
|
|
46886
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
46887
|
+
i0.ɵɵelementStart(0, "div", 161);
|
|
46888
|
+
i0.ɵɵelement(1, "symphiq-section-divider", 169);
|
|
46748
46889
|
i0.ɵɵelementEnd();
|
|
46749
46890
|
} if (rf & 2) {
|
|
46750
46891
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
46751
46892
|
i0.ɵɵadvance();
|
|
46752
46893
|
i0.ɵɵproperty("viewMode", ctx_r2.viewMode());
|
|
46753
46894
|
} }
|
|
46754
|
-
function
|
|
46755
|
-
i0.ɵɵelementStart(0, "div",
|
|
46756
|
-
i0.ɵɵelement(1, "div",
|
|
46895
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
46896
|
+
i0.ɵɵelementStart(0, "div", 125);
|
|
46897
|
+
i0.ɵɵelement(1, "div", 170);
|
|
46757
46898
|
i0.ɵɵelementEnd();
|
|
46758
46899
|
} }
|
|
46759
|
-
function
|
|
46760
|
-
i0.ɵɵelementStart(0, "option",
|
|
46900
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_For_15_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
46901
|
+
i0.ɵɵelementStart(0, "option", 141);
|
|
46761
46902
|
i0.ɵɵtext(1);
|
|
46762
46903
|
i0.ɵɵelementEnd();
|
|
46763
46904
|
} if (rf & 2) {
|
|
@@ -46766,8 +46907,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Fo
|
|
|
46766
46907
|
i0.ɵɵadvance();
|
|
46767
46908
|
i0.ɵɵtextInterpolate(filter_r38.label);
|
|
46768
46909
|
} }
|
|
46769
|
-
function
|
|
46770
|
-
i0.ɵɵelementStart(0, "option",
|
|
46910
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_For_15_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
46911
|
+
i0.ɵɵelementStart(0, "option", 50);
|
|
46771
46912
|
i0.ɵɵtext(1);
|
|
46772
46913
|
i0.ɵɵelementEnd();
|
|
46773
46914
|
} if (rf & 2) {
|
|
@@ -46776,15 +46917,15 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Fo
|
|
|
46776
46917
|
i0.ɵɵadvance();
|
|
46777
46918
|
i0.ɵɵtextInterpolate(filter_r38.label);
|
|
46778
46919
|
} }
|
|
46779
|
-
function
|
|
46780
|
-
i0.ɵɵconditionalCreate(0,
|
|
46920
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_For_15_Template(rf, ctx) { if (rf & 1) {
|
|
46921
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_For_15_Conditional_0_Template, 2, 2, "option", 141)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_For_15_Conditional_1_Template, 2, 2, "option", 50);
|
|
46781
46922
|
} if (rf & 2) {
|
|
46782
46923
|
const filter_r38 = ctx.$implicit;
|
|
46783
46924
|
i0.ɵɵconditional(filter_r38.divider ? 0 : 1);
|
|
46784
46925
|
} }
|
|
46785
|
-
function
|
|
46786
|
-
i0.ɵɵelementStart(0, "div",
|
|
46787
|
-
i0.ɵɵelement(1, "symphiq-skeleton-loader",
|
|
46926
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_16_For_2_For_6_Template(rf, ctx) { if (rf & 1) {
|
|
46927
|
+
i0.ɵɵelementStart(0, "div", 172);
|
|
46928
|
+
i0.ɵɵelement(1, "symphiq-skeleton-loader", 88)(2, "symphiq-skeleton-loader", 88);
|
|
46788
46929
|
i0.ɵɵelementEnd();
|
|
46789
46930
|
} if (rf & 2) {
|
|
46790
46931
|
const ctx_r2 = i0.ɵɵnextContext(5);
|
|
@@ -46794,12 +46935,12 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Co
|
|
|
46794
46935
|
i0.ɵɵadvance();
|
|
46795
46936
|
i0.ɵɵproperty("width", "80px")("height", "18px")("isLightMode", ctx_r2.isLightMode());
|
|
46796
46937
|
} }
|
|
46797
|
-
function
|
|
46798
|
-
i0.ɵɵelementStart(0, "div",
|
|
46799
|
-
i0.ɵɵelement(2, "symphiq-skeleton-loader",
|
|
46938
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_16_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
46939
|
+
i0.ɵɵelementStart(0, "div", 144)(1, "div", 145);
|
|
46940
|
+
i0.ɵɵelement(2, "symphiq-skeleton-loader", 88)(3, "symphiq-skeleton-loader", 88);
|
|
46800
46941
|
i0.ɵɵelementEnd();
|
|
46801
|
-
i0.ɵɵelementStart(4, "div",
|
|
46802
|
-
i0.ɵɵrepeaterCreate(5,
|
|
46942
|
+
i0.ɵɵelementStart(4, "div", 171);
|
|
46943
|
+
i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_16_For_2_For_6_Template, 3, 7, "div", 172, i0.ɵɵrepeaterTrackByIdentity);
|
|
46803
46944
|
i0.ɵɵelementEnd()();
|
|
46804
46945
|
} if (rf & 2) {
|
|
46805
46946
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
@@ -46811,17 +46952,17 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Co
|
|
|
46811
46952
|
i0.ɵɵadvance(2);
|
|
46812
46953
|
i0.ɵɵrepeater(i0.ɵɵpureFunction0(7, _c4$3));
|
|
46813
46954
|
} }
|
|
46814
|
-
function
|
|
46815
|
-
i0.ɵɵelementStart(0, "div",
|
|
46816
|
-
i0.ɵɵrepeaterCreate(1,
|
|
46955
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_16_Template(rf, ctx) { if (rf & 1) {
|
|
46956
|
+
i0.ɵɵelementStart(0, "div", 98);
|
|
46957
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_16_For_2_Template, 7, 8, "div", 144, i0.ɵɵrepeaterTrackByIdentity);
|
|
46817
46958
|
i0.ɵɵelementEnd();
|
|
46818
46959
|
} if (rf & 2) {
|
|
46819
46960
|
i0.ɵɵadvance();
|
|
46820
46961
|
i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c5$2));
|
|
46821
46962
|
} }
|
|
46822
|
-
function
|
|
46823
|
-
i0.ɵɵelementStart(0, "div",
|
|
46824
|
-
i0.ɵɵelement(1, "symphiq-funnel-analysis-breakdown-section",
|
|
46963
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_17_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
46964
|
+
i0.ɵɵelementStart(0, "div", 115);
|
|
46965
|
+
i0.ɵɵelement(1, "symphiq-funnel-analysis-breakdown-section", 173);
|
|
46825
46966
|
i0.ɵɵelementEnd();
|
|
46826
46967
|
} if (rf & 2) {
|
|
46827
46968
|
const breakdown_r39 = ctx.$implicit;
|
|
@@ -46832,17 +46973,17 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Co
|
|
|
46832
46973
|
i0.ɵɵadvance();
|
|
46833
46974
|
i0.ɵɵproperty("breakdown", breakdown_r39)("charts", ctx_r2.chartsForBreakdown(breakdown_r39))("isLightMode", ctx_r2.isLightMode())("isCompactMode", ctx_r2.viewModeService.isCompact())("currencySymbol", ctx_r2.currencySymbol());
|
|
46834
46975
|
} }
|
|
46835
|
-
function
|
|
46836
|
-
i0.ɵɵelementStart(0, "div",
|
|
46976
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_17_ForEmpty_3_Template(rf, ctx) { if (rf & 1) {
|
|
46977
|
+
i0.ɵɵelementStart(0, "div", 147);
|
|
46837
46978
|
i0.ɵɵnamespaceSVG();
|
|
46838
|
-
i0.ɵɵelementStart(1, "svg",
|
|
46839
|
-
i0.ɵɵelement(2, "path",
|
|
46979
|
+
i0.ɵɵelementStart(1, "svg", 158);
|
|
46980
|
+
i0.ɵɵelement(2, "path", 174);
|
|
46840
46981
|
i0.ɵɵelementEnd();
|
|
46841
46982
|
i0.ɵɵnamespaceHTML();
|
|
46842
|
-
i0.ɵɵelementStart(3, "h3",
|
|
46983
|
+
i0.ɵɵelementStart(3, "h3", 159);
|
|
46843
46984
|
i0.ɵɵtext(4, "No Breakdowns Found");
|
|
46844
46985
|
i0.ɵɵelementEnd();
|
|
46845
|
-
i0.ɵɵelementStart(5, "p",
|
|
46986
|
+
i0.ɵɵelementStart(5, "p", 160);
|
|
46846
46987
|
i0.ɵɵtext(6, "No performance breakdowns match your current filter selection. Try adjusting your filters to see more results.");
|
|
46847
46988
|
i0.ɵɵelementEnd()();
|
|
46848
46989
|
} if (rf & 2) {
|
|
@@ -46855,9 +46996,9 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Co
|
|
|
46855
46996
|
i0.ɵɵadvance(2);
|
|
46856
46997
|
i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-slate-600" : "text-slate-400");
|
|
46857
46998
|
} }
|
|
46858
|
-
function
|
|
46859
|
-
i0.ɵɵelementStart(0, "div",
|
|
46860
|
-
i0.ɵɵrepeaterCreate(1,
|
|
46999
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_17_Template(rf, ctx) { if (rf & 1) {
|
|
47000
|
+
i0.ɵɵelementStart(0, "div", 98);
|
|
47001
|
+
i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_17_For_2_Template, 2, 9, "div", 117, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_17_ForEmpty_3_Template, 7, 4, "div", 147);
|
|
46861
47002
|
i0.ɵɵelementEnd();
|
|
46862
47003
|
} if (rf & 2) {
|
|
46863
47004
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -46865,28 +47006,28 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Co
|
|
|
46865
47006
|
i0.ɵɵadvance();
|
|
46866
47007
|
i0.ɵɵrepeater(ctx_r2.breakdowns());
|
|
46867
47008
|
} }
|
|
46868
|
-
function
|
|
47009
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
46869
47010
|
const _r37 = i0.ɵɵgetCurrentView();
|
|
46870
|
-
i0.ɵɵconditionalCreate(0,
|
|
46871
|
-
i0.ɵɵelementStart(1, "section",
|
|
46872
|
-
i0.ɵɵelement(2, "div",
|
|
46873
|
-
i0.ɵɵelementStart(3, "div",
|
|
47011
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_0_Template, 2, 1, "div", 161);
|
|
47012
|
+
i0.ɵɵelementStart(1, "section", 162);
|
|
47013
|
+
i0.ɵɵelement(2, "div", 163);
|
|
47014
|
+
i0.ɵɵelementStart(3, "div", 105)(4, "div", 164)(5, "div", 82)(6, "div", 9);
|
|
46874
47015
|
i0.ɵɵnamespaceSVG();
|
|
46875
|
-
i0.ɵɵelementStart(7, "svg",
|
|
46876
|
-
i0.ɵɵelement(8, "path",
|
|
47016
|
+
i0.ɵɵelementStart(7, "svg", 83);
|
|
47017
|
+
i0.ɵɵelement(8, "path", 165);
|
|
46877
47018
|
i0.ɵɵelementEnd();
|
|
46878
47019
|
i0.ɵɵnamespaceHTML();
|
|
46879
|
-
i0.ɵɵelementStart(9, "h2",
|
|
47020
|
+
i0.ɵɵelementStart(9, "h2", 85);
|
|
46880
47021
|
i0.ɵɵtext(10, "Performance Breakdowns");
|
|
46881
47022
|
i0.ɵɵelementEnd()()();
|
|
46882
|
-
i0.ɵɵelementStart(11, "div",
|
|
46883
|
-
i0.ɵɵlistener("click", function
|
|
46884
|
-
i0.ɵɵconditionalCreate(12,
|
|
46885
|
-
i0.ɵɵelementStart(13, "select",
|
|
46886
|
-
i0.ɵɵlistener("ngModelChange", function
|
|
46887
|
-
i0.ɵɵrepeaterCreate(14,
|
|
47023
|
+
i0.ɵɵelementStart(11, "div", 166);
|
|
47024
|
+
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Template_div_click_11_listener($event) { i0.ɵɵrestoreView(_r37); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Template_div_mousedown_11_listener($event) { i0.ɵɵrestoreView(_r37); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Template_div_pointerdown_11_listener($event) { i0.ɵɵrestoreView(_r37); return i0.ɵɵresetView($event.stopPropagation()); });
|
|
47025
|
+
i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_12_Template, 2, 0, "div", 125);
|
|
47026
|
+
i0.ɵɵelementStart(13, "select", 167);
|
|
47027
|
+
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Template_select_ngModelChange_13_listener($event) { i0.ɵɵrestoreView(_r37); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeBreakdownFilter($event)); });
|
|
47028
|
+
i0.ɵɵrepeaterCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_For_15_Template, 2, 1, null, null, _forTrack0$p);
|
|
46888
47029
|
i0.ɵɵelementEnd()()();
|
|
46889
|
-
i0.ɵɵconditionalCreate(16,
|
|
47030
|
+
i0.ɵɵconditionalCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_16_Template, 3, 1, "div", 98)(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_17_Template, 4, 5, "div", 168);
|
|
46890
47031
|
i0.ɵɵelementEnd()();
|
|
46891
47032
|
} if (rf & 2) {
|
|
46892
47033
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
@@ -46909,22 +47050,22 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Te
|
|
|
46909
47050
|
i0.ɵɵadvance(2);
|
|
46910
47051
|
i0.ɵɵconditional(ctx_r2.isDataLoading() ? 16 : 17);
|
|
46911
47052
|
} }
|
|
46912
|
-
function
|
|
46913
|
-
i0.ɵɵelementStart(0, "div",
|
|
46914
|
-
i0.ɵɵelement(1, "symphiq-section-divider",
|
|
47053
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
47054
|
+
i0.ɵɵelementStart(0, "div", 161);
|
|
47055
|
+
i0.ɵɵelement(1, "symphiq-section-divider", 179);
|
|
46915
47056
|
i0.ɵɵelementEnd();
|
|
46916
47057
|
} if (rf & 2) {
|
|
46917
47058
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
46918
47059
|
i0.ɵɵadvance();
|
|
46919
47060
|
i0.ɵɵproperty("viewMode", ctx_r2.viewMode());
|
|
46920
47061
|
} }
|
|
46921
|
-
function
|
|
46922
|
-
i0.ɵɵelementStart(0, "div",
|
|
46923
|
-
i0.ɵɵelement(1, "div",
|
|
47062
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_13_Template(rf, ctx) { if (rf & 1) {
|
|
47063
|
+
i0.ɵɵelementStart(0, "div", 125);
|
|
47064
|
+
i0.ɵɵelement(1, "div", 180);
|
|
46924
47065
|
i0.ɵɵelementEnd();
|
|
46925
47066
|
} }
|
|
46926
|
-
function
|
|
46927
|
-
i0.ɵɵelementStart(0, "option",
|
|
47067
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_For_16_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
47068
|
+
i0.ɵɵelementStart(0, "option", 141);
|
|
46928
47069
|
i0.ɵɵtext(1);
|
|
46929
47070
|
i0.ɵɵelementEnd();
|
|
46930
47071
|
} if (rf & 2) {
|
|
@@ -46933,8 +47074,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Fo
|
|
|
46933
47074
|
i0.ɵɵadvance();
|
|
46934
47075
|
i0.ɵɵtextInterpolate(filter_r42.label);
|
|
46935
47076
|
} }
|
|
46936
|
-
function
|
|
46937
|
-
i0.ɵɵelementStart(0, "option",
|
|
47077
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_For_16_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
47078
|
+
i0.ɵɵelementStart(0, "option", 50);
|
|
46938
47079
|
i0.ɵɵtext(1);
|
|
46939
47080
|
i0.ɵɵelementEnd();
|
|
46940
47081
|
} if (rf & 2) {
|
|
@@ -46943,23 +47084,23 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Fo
|
|
|
46943
47084
|
i0.ɵɵadvance();
|
|
46944
47085
|
i0.ɵɵtextInterpolate(filter_r42.label);
|
|
46945
47086
|
} }
|
|
46946
|
-
function
|
|
46947
|
-
i0.ɵɵconditionalCreate(0,
|
|
47087
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_For_16_Template(rf, ctx) { if (rf & 1) {
|
|
47088
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_For_16_Conditional_0_Template, 2, 2, "option", 141)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_For_16_Conditional_1_Template, 2, 2, "option", 50);
|
|
46948
47089
|
} if (rf & 2) {
|
|
46949
47090
|
const filter_r42 = ctx.$implicit;
|
|
46950
47091
|
i0.ɵɵconditional(filter_r42.divider ? 0 : 1);
|
|
46951
47092
|
} }
|
|
46952
|
-
function
|
|
46953
|
-
i0.ɵɵelement(0, "symphiq-skeleton-loader",
|
|
47093
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_17_For_5_Template(rf, ctx) { if (rf & 1) {
|
|
47094
|
+
i0.ɵɵelement(0, "symphiq-skeleton-loader", 88);
|
|
46954
47095
|
} if (rf & 2) {
|
|
46955
47096
|
const ctx_r2 = i0.ɵɵnextContext(4);
|
|
46956
47097
|
i0.ɵɵproperty("width", "100%")("height", "140px")("isLightMode", ctx_r2.isLightMode());
|
|
46957
47098
|
} }
|
|
46958
|
-
function
|
|
46959
|
-
i0.ɵɵelementStart(0, "div",
|
|
46960
|
-
i0.ɵɵelement(2, "symphiq-skeleton-loader",
|
|
46961
|
-
i0.ɵɵelementStart(3, "div",
|
|
46962
|
-
i0.ɵɵrepeaterCreate(4,
|
|
47099
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_17_Template(rf, ctx) { if (rf & 1) {
|
|
47100
|
+
i0.ɵɵelementStart(0, "div", 98)(1, "div", 144);
|
|
47101
|
+
i0.ɵɵelement(2, "symphiq-skeleton-loader", 88);
|
|
47102
|
+
i0.ɵɵelementStart(3, "div", 181);
|
|
47103
|
+
i0.ɵɵrepeaterCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_17_For_5_Template, 1, 3, "symphiq-skeleton-loader", 88, i0.ɵɵrepeaterTrackByIdentity);
|
|
46963
47104
|
i0.ɵɵelementEnd()()();
|
|
46964
47105
|
} if (rf & 2) {
|
|
46965
47106
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
@@ -46970,34 +47111,34 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Co
|
|
|
46970
47111
|
i0.ɵɵadvance(2);
|
|
46971
47112
|
i0.ɵɵrepeater(i0.ɵɵpureFunction0(4, _c3$5));
|
|
46972
47113
|
} }
|
|
46973
|
-
function
|
|
46974
|
-
i0.ɵɵelement(0, "symphiq-competitive-intelligence-view",
|
|
47114
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_18_Template(rf, ctx) { if (rf & 1) {
|
|
47115
|
+
i0.ɵɵelement(0, "symphiq-competitive-intelligence-view", 95);
|
|
46975
47116
|
} if (rf & 2) {
|
|
46976
47117
|
let tmp_8_0;
|
|
46977
47118
|
const ctx_r2 = i0.ɵɵnextContext(3);
|
|
46978
47119
|
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());
|
|
46979
47120
|
} }
|
|
46980
|
-
function
|
|
47121
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
46981
47122
|
const _r41 = i0.ɵɵgetCurrentView();
|
|
46982
|
-
i0.ɵɵconditionalCreate(0,
|
|
46983
|
-
i0.ɵɵelementStart(1, "section",
|
|
46984
|
-
i0.ɵɵelement(2, "div",
|
|
46985
|
-
i0.ɵɵelementStart(3, "div",
|
|
47123
|
+
i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_0_Template, 2, 1, "div", 161);
|
|
47124
|
+
i0.ɵɵelementStart(1, "section", 175);
|
|
47125
|
+
i0.ɵɵelement(2, "div", 104);
|
|
47126
|
+
i0.ɵɵelementStart(3, "div", 105)(4, "div", 176)(5, "div", 9)(6, "div", 82)(7, "div", 9);
|
|
46986
47127
|
i0.ɵɵnamespaceSVG();
|
|
46987
|
-
i0.ɵɵelementStart(8, "svg",
|
|
46988
|
-
i0.ɵɵelement(9, "path",
|
|
47128
|
+
i0.ɵɵelementStart(8, "svg", 83);
|
|
47129
|
+
i0.ɵɵelement(9, "path", 177);
|
|
46989
47130
|
i0.ɵɵelementEnd();
|
|
46990
47131
|
i0.ɵɵnamespaceHTML();
|
|
46991
|
-
i0.ɵɵelementStart(10, "h2",
|
|
47132
|
+
i0.ɵɵelementStart(10, "h2", 85);
|
|
46992
47133
|
i0.ɵɵtext(11, "Competitive Intelligence");
|
|
46993
47134
|
i0.ɵɵelementEnd()()()();
|
|
46994
|
-
i0.ɵɵelementStart(12, "div",
|
|
46995
|
-
i0.ɵɵconditionalCreate(13,
|
|
46996
|
-
i0.ɵɵelementStart(14, "select",
|
|
46997
|
-
i0.ɵɵlistener("ngModelChange", function
|
|
46998
|
-
i0.ɵɵrepeaterCreate(15,
|
|
47135
|
+
i0.ɵɵelementStart(12, "div", 178);
|
|
47136
|
+
i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_13_Template, 2, 0, "div", 125);
|
|
47137
|
+
i0.ɵɵelementStart(14, "select", 126);
|
|
47138
|
+
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Template_select_ngModelChange_14_listener($event) { i0.ɵɵrestoreView(_r41); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeCompetitiveFilter($event)); });
|
|
47139
|
+
i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_For_16_Template, 2, 1, null, null, _forTrack0$p);
|
|
46999
47140
|
i0.ɵɵelementEnd()()();
|
|
47000
|
-
i0.ɵɵconditionalCreate(17,
|
|
47141
|
+
i0.ɵɵconditionalCreate(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_17_Template, 6, 5, "div", 98)(18, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_18_Template, 1, 6, "symphiq-competitive-intelligence-view", 95);
|
|
47001
47142
|
i0.ɵɵelementEnd()();
|
|
47002
47143
|
} if (rf & 2) {
|
|
47003
47144
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
@@ -47021,13 +47162,13 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Te
|
|
|
47021
47162
|
i0.ɵɵadvance(2);
|
|
47022
47163
|
i0.ɵɵconditional(ctx_r2.isDataLoading() ? 17 : 18);
|
|
47023
47164
|
} }
|
|
47024
|
-
function
|
|
47025
|
-
i0.ɵɵelementStart(0, "main",
|
|
47026
|
-
i0.ɵɵconditionalCreate(2,
|
|
47027
|
-
i0.ɵɵconditionalCreate(3,
|
|
47028
|
-
i0.ɵɵconditionalCreate(4,
|
|
47029
|
-
i0.ɵɵconditionalCreate(5,
|
|
47030
|
-
i0.ɵɵconditionalCreate(6,
|
|
47165
|
+
function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Template(rf, ctx) { if (rf & 1) {
|
|
47166
|
+
i0.ɵɵelementStart(0, "main", 37)(1, "div", 70);
|
|
47167
|
+
i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_2_Template, 3, 1, "div", 96);
|
|
47168
|
+
i0.ɵɵconditionalCreate(3, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Template, 17, 10);
|
|
47169
|
+
i0.ɵɵconditionalCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Template, 30, 18);
|
|
47170
|
+
i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Template, 18, 12);
|
|
47171
|
+
i0.ɵɵconditionalCreate(6, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Template, 19, 13);
|
|
47031
47172
|
i0.ɵɵelementEnd()();
|
|
47032
47173
|
} if (rf & 2) {
|
|
47033
47174
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -48096,7 +48237,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
48096
48237
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.dashboardContainer = _t.first);
|
|
48097
48238
|
} }, hostBindings: function SymphiqFunnelAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
48098
48239
|
i0.ɵɵlistener("scroll", function SymphiqFunnelAnalysisDashboardComponent_scroll_HostBindingHandler($event) { return ctx.onScroll($event); }, i0.ɵɵresolveWindow);
|
|
48099
|
-
} }, 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"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick" }, decls: 61, vars: 89, 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"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "sticky", "top-0", "z-50", "animate-fade-in", 2, "animation-delay", "0s"], [1, "transition-all", "duration-300", "ease-in-out", "overflow-hidden"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8", "py-6", "sm:py-8"], [1, "flex", "flex-col", "sm:flex-row", "items-start", "sm:items-center", "justify-between", "gap-3", "sm:gap-0"], [1, "flex-1"], [1, "flex", "items-center", "gap-3"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-2", "bg-gradient-to-r", "from-blue-600", "via-purple-600", "to-indigo-600", "bg-clip-text", "text-transparent"], ["title", "Refreshing data...", 1, "animate-spin", "w-4", "h-4", "border-2", "border-blue-500/30", "border-t-blue-500", "rounded-full"], [1, "flex", "flex-wrap", "items-center", "justify-between", "gap-3", "sm:gap-4"], [1, "text-sm", "sm:text-base"], [1, "flex", "items-center", "gap-4"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "class"], ["type", "button", 1, "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 12a3 3 0 11-6 0 3 3 0 016 0z"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"], [1, "flex", "items-center", "gap-2", "sm:gap-3", "whitespace-nowrap"], [1, "flex", "flex-col", "gap-4", "min-w-[180px]"], [1, "text-left", "sm:text-right"], [1, "text-xs", "sm:text-sm"], [1, "text-sm", "sm:text-base", "font-medium"], [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-4", "flex-1", "min-w-0"], [1, "text-lg", "font-bold", "truncate", "bg-gradient-to-r", "from-blue-600", "via-purple-600", "to-indigo-600", "bg-clip-text", "text-transparent"], [1, "hidden", "lg:flex", "items-center", "gap-3", "px-4", "py-1.5", "rounded-lg", 3, "ngClass"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "p-2", "rounded-lg", "transition-all", "duration-200", "hover:scale-110", 3, "class"], ["type", "button", 1, "p-2", "rounded-lg", "transition-all", "duration-200", "hover:scale-110", 3, "click", "title"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], [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, "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"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click"], ["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, "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"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "p-2", "rounded-lg", "transition-all", "duration-200", "hover:scale-110", 3, "click"], [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, "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"], [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"], ["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"], [3, "viewMode", "itemStatus", "funnelAnalysis", "confettiIntensity", "title", "subtitle"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "pt-8", "sm:pt-12", "pb-16", "sm:pb-24"], [1, "mb-8"], [3, "viewMode", "isOnboarded"], ["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, "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, "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"], ["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) {
|
|
48240
|
+
} }, 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"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick" }, decls: 62, vars: 89, 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"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "sticky", "top-0", "z-50", "animate-fade-in", 2, "animation-delay", "0s"], [1, "transition-all", "duration-300", "ease-in-out", "overflow-hidden"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8", "py-6", "sm:py-8"], [1, "flex", "flex-col", "sm:flex-row", "items-start", "sm:items-center", "justify-between", "gap-3", "sm:gap-0"], [1, "flex-1"], [1, "flex", "items-center", "gap-3"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-2", "bg-gradient-to-r", "from-blue-600", "via-purple-600", "to-indigo-600", "bg-clip-text", "text-transparent"], ["title", "Refreshing data...", 1, "animate-spin", "w-4", "h-4", "border-2", "border-blue-500/30", "border-t-blue-500", "rounded-full"], [1, "flex", "flex-wrap", "items-center", "justify-between", "gap-3", "sm:gap-4"], [1, "text-sm", "sm:text-base"], [1, "flex", "items-center", "gap-4"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "class"], ["type", "button", 1, "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 12a3 3 0 11-6 0 3 3 0 016 0z"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"], [1, "flex", "items-center", "gap-2", "sm:gap-3", "whitespace-nowrap"], [1, "flex", "flex-col", "gap-4", "min-w-[180px]"], [1, "text-left", "sm:text-right"], [1, "text-xs", "sm:text-sm"], [1, "text-sm", "sm:text-base", "font-medium"], [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-4", "flex-1", "min-w-0"], [1, "text-lg", "font-bold", "truncate", "bg-gradient-to-r", "from-blue-600", "via-purple-600", "to-indigo-600", "bg-clip-text", "text-transparent"], [1, "hidden", "lg:flex", "items-center", "gap-3", "px-4", "py-1.5", "rounded-lg", 3, "ngClass"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "p-2", "rounded-lg", "transition-all", "duration-200", "hover:scale-110", 3, "class"], ["type", "button", 1, "p-2", "rounded-lg", "transition-all", "duration-200", "hover:scale-110", 3, "click", "title"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], [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, "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"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click"], ["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, "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"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "p-2", "rounded-lg", "transition-all", "duration-200", "hover:scale-110", 3, "click"], [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, "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"], [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"], ["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, "pt-8", "sm:pt-12", "pb-16", "sm:pb-24"], [1, "mb-8"], [3, "viewMode", "isOnboarded"], ["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, "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, "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"], ["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) {
|
|
48100
48241
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
48101
48242
|
i0.ɵɵelementStart(0, "div", 1, 0);
|
|
48102
48243
|
i0.ɵɵelement(2, "div", 2);
|
|
@@ -48151,20 +48292,20 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
48151
48292
|
i0.ɵɵconditionalCreate(47, SymphiqFunnelAnalysisDashboardComponent_Conditional_47_Template, 16, 8, "div", 33);
|
|
48152
48293
|
i0.ɵɵconditionalCreate(48, SymphiqFunnelAnalysisDashboardComponent_Conditional_48_Template, 1, 4, "symphiq-floating-toc", 34);
|
|
48153
48294
|
i0.ɵɵconditionalCreate(49, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Template, 6, 5, "div", 35);
|
|
48154
|
-
i0.ɵɵconditionalCreate(50, SymphiqFunnelAnalysisDashboardComponent_Conditional_50_Template, 2,
|
|
48295
|
+
i0.ɵɵconditionalCreate(50, SymphiqFunnelAnalysisDashboardComponent_Conditional_50_Template, 2, 1, "div", 36)(51, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Template, 2, 7)(52, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Template, 15, 9)(53, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Template, 7, 5, "main", 37);
|
|
48155
48296
|
i0.ɵɵnamespaceHTML();
|
|
48156
|
-
i0.ɵɵelement(
|
|
48157
|
-
i0.ɵɵelementStart(
|
|
48158
|
-
i0.ɵɵlistener("resultSelected", function
|
|
48297
|
+
i0.ɵɵelement(54, "symphiq-funnel-analysis-modal", 38)(55, "symphiq-profile-analysis-modal", 39)(56, "symphiq-business-analysis-modal", 40)(57, "symphiq-tooltip-container");
|
|
48298
|
+
i0.ɵɵelementStart(58, "symphiq-search-bar", 41);
|
|
48299
|
+
i0.ɵɵlistener("resultSelected", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_search_bar_resultSelected_58_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleSearchResult($event)); });
|
|
48159
48300
|
i0.ɵɵelementEnd();
|
|
48160
|
-
i0.ɵɵelementStart(
|
|
48161
|
-
i0.ɵɵlistener("close", function
|
|
48301
|
+
i0.ɵɵelementStart(59, "symphiq-view-mode-switcher-modal", 42);
|
|
48302
|
+
i0.ɵɵlistener("close", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_close_59_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.closeViewModeSwitcher()); })("modeSelected", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_modeSelected_59_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleDisplayModeChange($event)); });
|
|
48162
48303
|
i0.ɵɵelementEnd();
|
|
48163
|
-
i0.ɵɵelementStart(
|
|
48164
|
-
i0.ɵɵlistener("expandedChange", function
|
|
48304
|
+
i0.ɵɵelementStart(60, "symphiq-mobile-fab", 43);
|
|
48305
|
+
i0.ɵɵlistener("expandedChange", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_expandedChange_60_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.fabExpanded.set($event)); })("scrollToTop", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_scrollToTop_60_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.scrollToTop()); })("toggleView", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_toggleView_60_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.viewModeService.toggleViewMode()); });
|
|
48165
48306
|
i0.ɵɵelementEnd();
|
|
48166
|
-
i0.ɵɵelementStart(
|
|
48167
|
-
i0.ɵɵlistener("navigate", function
|
|
48307
|
+
i0.ɵɵelementStart(61, "symphiq-mobile-bottom-nav", 44);
|
|
48308
|
+
i0.ɵɵlistener("navigate", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_bottom_nav_navigate_61_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleMobileNavigation($event)); });
|
|
48168
48309
|
i0.ɵɵelementEnd()();
|
|
48169
48310
|
} if (rf & 2) {
|
|
48170
48311
|
let tmp_16_0;
|
|
@@ -48229,8 +48370,8 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
48229
48370
|
i0.ɵɵadvance();
|
|
48230
48371
|
i0.ɵɵconditional(!ctx.isSimplifiedView() ? 49 : -1);
|
|
48231
48372
|
i0.ɵɵadvance();
|
|
48232
|
-
i0.ɵɵconditional(ctx.
|
|
48233
|
-
i0.ɵɵadvance(
|
|
48373
|
+
i0.ɵɵconditional(ctx.isLoading() ? 50 : ctx.isContentGenerating() ? 51 : ctx.isSimplifiedView() ? 52 : 53);
|
|
48374
|
+
i0.ɵɵadvance(4);
|
|
48234
48375
|
i0.ɵɵproperty("isLightMode", ctx.isLightMode())("viewMode", ctx.viewMode())("allMetrics", ctx.allMetrics())("allInsights", ctx.insights())("allCharts", ctx.allCharts())("currencySymbol", ctx.currencySymbol())("businessProfile", ctx.businessProfile());
|
|
48235
48376
|
i0.ɵɵadvance();
|
|
48236
48377
|
i0.ɵɵproperty("isLightMode", ctx.isLightMode())("allMetrics", ctx.allMetrics());
|
|
@@ -48265,7 +48406,8 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
48265
48406
|
ViewModeSwitcherModalComponent,
|
|
48266
48407
|
ProfileAnalysisModalComponent,
|
|
48267
48408
|
BusinessAnalysisModalComponent,
|
|
48268
|
-
ContentGenerationProgressWithConfettiComponent
|
|
48409
|
+
ContentGenerationProgressWithConfettiComponent,
|
|
48410
|
+
IndeterminateSpinnerComponent], 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 }); }
|
|
48269
48411
|
}
|
|
48270
48412
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SymphiqFunnelAnalysisDashboardComponent, [{
|
|
48271
48413
|
type: Component,
|
|
@@ -48294,6 +48436,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
48294
48436
|
ProfileAnalysisModalComponent,
|
|
48295
48437
|
BusinessAnalysisModalComponent,
|
|
48296
48438
|
ContentGenerationProgressWithConfettiComponent,
|
|
48439
|
+
IndeterminateSpinnerComponent,
|
|
48297
48440
|
], template: `
|
|
48298
48441
|
<div
|
|
48299
48442
|
class="bg-transparent"
|
|
@@ -48562,7 +48705,15 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
48562
48705
|
</div>
|
|
48563
48706
|
}
|
|
48564
48707
|
|
|
48565
|
-
@if (
|
|
48708
|
+
@if (isLoading()) {
|
|
48709
|
+
<!-- Pure Loading State -->
|
|
48710
|
+
<div class="flex items-center justify-center min-h-[60vh]">
|
|
48711
|
+
<symphiq-indeterminate-spinner
|
|
48712
|
+
[viewMode]="isLightMode() ? ViewModeEnum.LIGHT : ViewModeEnum.DARK"
|
|
48713
|
+
size="large"
|
|
48714
|
+
/>
|
|
48715
|
+
</div>
|
|
48716
|
+
} @else if (isContentGenerating()) {
|
|
48566
48717
|
<!-- Journey Progress Banner (always show when not onboarded) -->
|
|
48567
48718
|
@if (!isOnboarded()) {
|
|
48568
48719
|
<symphiq-journey-progress-indicator
|
|
@@ -48580,7 +48731,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
48580
48731
|
<symphiq-content-generation-progress-with-confetti
|
|
48581
48732
|
[viewMode]="isLightMode() ? ViewModeEnum.LIGHT : ViewModeEnum.DARK"
|
|
48582
48733
|
[itemStatus]="itemStatus()"
|
|
48583
|
-
[
|
|
48734
|
+
[currentStatus]="funnelAnalysis()?.selfContentStatus"
|
|
48584
48735
|
[confettiIntensity]="'celebration'"
|
|
48585
48736
|
[title]="'We are generating a new Funnel Analysis for you.'"
|
|
48586
48737
|
[subtitle]="'It will appear here when ready. You can check back later as this will take a few minutes to complete.'"
|
|
@@ -49323,7 +49474,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
|
|
|
49323
49474
|
type: HostListener,
|
|
49324
49475
|
args: ['window:scroll', ['$event']]
|
|
49325
49476
|
}] }); })();
|
|
49326
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqFunnelAnalysisDashboardComponent, { className: "SymphiqFunnelAnalysisDashboardComponent", filePath: "lib/components/funnel-analysis-dashboard/symphiq-funnel-analysis-dashboard.component.ts", lineNumber:
|
|
49477
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqFunnelAnalysisDashboardComponent, { className: "SymphiqFunnelAnalysisDashboardComponent", filePath: "lib/components/funnel-analysis-dashboard/symphiq-funnel-analysis-dashboard.component.ts", lineNumber: 1236 }); })();
|
|
49327
49478
|
|
|
49328
49479
|
/**
|
|
49329
49480
|
* Shared Theme Color Utilities
|
|
@@ -62936,140 +63087,6 @@ class InitialTargetSettingComponent {
|
|
|
62936
63087
|
}], 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 }] }], pacingMetrics: [{ type: i0.Input, args: [{ isSignal: true, alias: "pacingMetrics", 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"] }] }); })();
|
|
62937
63088
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(InitialTargetSettingComponent, { className: "InitialTargetSettingComponent", filePath: "lib/components/revenue-calculator-dashboard/initial-target-setting.component.ts", lineNumber: 599 }); })();
|
|
62938
63089
|
|
|
62939
|
-
function IndeterminateSpinnerComponent_For_5_Template(rf, ctx) { if (rf & 1) {
|
|
62940
|
-
i0.ɵɵelement(0, "div", 5);
|
|
62941
|
-
} if (rf & 2) {
|
|
62942
|
-
const dot_r1 = ctx.$implicit;
|
|
62943
|
-
const ctx_r1 = i0.ɵɵnextContext();
|
|
62944
|
-
i0.ɵɵstyleProp("animation-delay", dot_r1.delay)("left", dot_r1.x, "px")("top", dot_r1.y, "px");
|
|
62945
|
-
i0.ɵɵproperty("ngClass", ctx_r1.dotClasses());
|
|
62946
|
-
} }
|
|
62947
|
-
class IndeterminateSpinnerComponent {
|
|
62948
|
-
constructor() {
|
|
62949
|
-
this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
|
|
62950
|
-
this.size = input('medium', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
62951
|
-
this.color = input(...(ngDevMode ? [undefined, { debugName: "color" }] : []));
|
|
62952
|
-
this.svgSize = computed(() => {
|
|
62953
|
-
switch (this.size()) {
|
|
62954
|
-
case 'small': return 40;
|
|
62955
|
-
case 'large': return 80;
|
|
62956
|
-
default: return 60;
|
|
62957
|
-
}
|
|
62958
|
-
}, ...(ngDevMode ? [{ debugName: "svgSize" }] : []));
|
|
62959
|
-
this.circleRadius = computed(() => {
|
|
62960
|
-
switch (this.size()) {
|
|
62961
|
-
case 'small': return 16;
|
|
62962
|
-
case 'large': return 36;
|
|
62963
|
-
default: return 26;
|
|
62964
|
-
}
|
|
62965
|
-
}, ...(ngDevMode ? [{ debugName: "circleRadius" }] : []));
|
|
62966
|
-
this.svgCircleRadius = computed(() => {
|
|
62967
|
-
return this.circleRadius() * 100 / this.svgSize();
|
|
62968
|
-
}, ...(ngDevMode ? [{ debugName: "svgCircleRadius" }] : []));
|
|
62969
|
-
this.strokeWidth = computed(() => {
|
|
62970
|
-
switch (this.size()) {
|
|
62971
|
-
case 'small': return 2;
|
|
62972
|
-
case 'large': return 3;
|
|
62973
|
-
default: return 2.5;
|
|
62974
|
-
}
|
|
62975
|
-
}, ...(ngDevMode ? [{ debugName: "strokeWidth" }] : []));
|
|
62976
|
-
this.dotSize = computed(() => {
|
|
62977
|
-
switch (this.size()) {
|
|
62978
|
-
case 'small': return 5;
|
|
62979
|
-
case 'large': return 10;
|
|
62980
|
-
default: return 7;
|
|
62981
|
-
}
|
|
62982
|
-
}, ...(ngDevMode ? [{ debugName: "dotSize" }] : []));
|
|
62983
|
-
this.containerClasses = computed(() => ({
|
|
62984
|
-
'w-10 h-10': this.size() === 'small',
|
|
62985
|
-
'w-16 h-16': this.size() === 'medium',
|
|
62986
|
-
'w-20 h-20': this.size() === 'large'
|
|
62987
|
-
}), ...(ngDevMode ? [{ debugName: "containerClasses" }] : []));
|
|
62988
|
-
this.trackClasses = computed(() => {
|
|
62989
|
-
const isDark = this.viewMode() === ViewModeEnum.DARK;
|
|
62990
|
-
return {
|
|
62991
|
-
'stroke-slate-200 dark:stroke-slate-700': !this.color(),
|
|
62992
|
-
'opacity-30': true
|
|
62993
|
-
};
|
|
62994
|
-
}, ...(ngDevMode ? [{ debugName: "trackClasses" }] : []));
|
|
62995
|
-
this.dotClasses = computed(() => {
|
|
62996
|
-
const isDark = this.viewMode() === ViewModeEnum.DARK;
|
|
62997
|
-
const sizeClass = `spinner-dot-${this.size()}`;
|
|
62998
|
-
if (this.color()) {
|
|
62999
|
-
return [sizeClass];
|
|
63000
|
-
}
|
|
63001
|
-
return [
|
|
63002
|
-
sizeClass,
|
|
63003
|
-
isDark ? 'bg-blue-400 text-blue-400' : 'bg-blue-600 text-blue-600'
|
|
63004
|
-
];
|
|
63005
|
-
}, ...(ngDevMode ? [{ debugName: "dotClasses" }] : []));
|
|
63006
|
-
this.dots = computed(() => {
|
|
63007
|
-
const radius = this.circleRadius();
|
|
63008
|
-
const center = this.svgSize() / 2;
|
|
63009
|
-
const numberOfDots = 8;
|
|
63010
|
-
const dots = [];
|
|
63011
|
-
for (let i = 0; i < numberOfDots; i++) {
|
|
63012
|
-
const angle = (i / numberOfDots) * 2 * Math.PI - Math.PI / 2;
|
|
63013
|
-
const x = center + radius * Math.cos(angle);
|
|
63014
|
-
const y = center + radius * Math.sin(angle);
|
|
63015
|
-
const delay = `${(i / numberOfDots) * 2}s`;
|
|
63016
|
-
dots.push({ x, y, delay });
|
|
63017
|
-
}
|
|
63018
|
-
return dots;
|
|
63019
|
-
}, ...(ngDevMode ? [{ debugName: "dots" }] : []));
|
|
63020
|
-
}
|
|
63021
|
-
static { this.ɵfac = function IndeterminateSpinnerComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || IndeterminateSpinnerComponent)(); }; }
|
|
63022
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: IndeterminateSpinnerComponent, selectors: [["symphiq-indeterminate-spinner"]], inputs: { viewMode: [1, "viewMode"], size: [1, "size"], color: [1, "color"] }, decls: 6, vars: 6, consts: [[1, "flex", "items-center", "justify-center"], [1, "relative", 3, "ngClass"], ["viewBox", "0 0 100 100", 1, "spinner-rotate"], ["cx", "50", "cy", "50", "fill", "none", 3, "ngClass"], [1, "spinner-dot", 3, "ngClass", "animation-delay", "left", "top"], [1, "spinner-dot", 3, "ngClass"]], template: function IndeterminateSpinnerComponent_Template(rf, ctx) { if (rf & 1) {
|
|
63023
|
-
i0.ɵɵelementStart(0, "div", 0)(1, "div", 1);
|
|
63024
|
-
i0.ɵɵnamespaceSVG();
|
|
63025
|
-
i0.ɵɵelementStart(2, "svg", 2);
|
|
63026
|
-
i0.ɵɵelement(3, "circle", 3);
|
|
63027
|
-
i0.ɵɵelementEnd();
|
|
63028
|
-
i0.ɵɵrepeaterCreate(4, IndeterminateSpinnerComponent_For_5_Template, 1, 7, "div", 4, i0.ɵɵrepeaterTrackByIndex);
|
|
63029
|
-
i0.ɵɵelementEnd()();
|
|
63030
|
-
} if (rf & 2) {
|
|
63031
|
-
i0.ɵɵadvance();
|
|
63032
|
-
i0.ɵɵproperty("ngClass", ctx.containerClasses());
|
|
63033
|
-
i0.ɵɵadvance();
|
|
63034
|
-
i0.ɵɵattribute("width", ctx.svgSize())("height", ctx.svgSize());
|
|
63035
|
-
i0.ɵɵadvance();
|
|
63036
|
-
i0.ɵɵproperty("ngClass", ctx.trackClasses());
|
|
63037
|
-
i0.ɵɵattribute("r", ctx.svgCircleRadius())("stroke-width", ctx.strokeWidth());
|
|
63038
|
-
i0.ɵɵadvance();
|
|
63039
|
-
i0.ɵɵrepeater(ctx.dots());
|
|
63040
|
-
} }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_spinner-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes _ngcontent-%COMP%_dot-pulse{0%,to{transform:translate(-50%,-50%) scale(1);opacity:.3;filter:brightness(1)}50%{transform:translate(-50%,-50%) scale(1.2);opacity:1;filter:brightness(1.5)}}.spinner-rotate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_spinner-rotate 3s linear infinite}.spinner-dot[_ngcontent-%COMP%]{position:absolute;border-radius:50%;animation:_ngcontent-%COMP%_dot-pulse 2s ease-in-out infinite;will-change:transform,opacity,filter;left:50%;top:50%;pointer-events:none}.spinner-dot-small[_ngcontent-%COMP%]{width:5px;height:5px;box-shadow:0 0 4px currentColor,0 0 8px currentColor}.spinner-dot-medium[_ngcontent-%COMP%]{width:7px;height:7px;box-shadow:0 0 5px currentColor,0 0 10px currentColor}.spinner-dot-large[_ngcontent-%COMP%]{width:10px;height:10px;box-shadow:0 0 6px currentColor,0 0 12px currentColor}"], changeDetection: 0 }); }
|
|
63041
|
-
}
|
|
63042
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IndeterminateSpinnerComponent, [{
|
|
63043
|
-
type: Component,
|
|
63044
|
-
args: [{ selector: 'symphiq-indeterminate-spinner', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
63045
|
-
<div class="flex items-center justify-center">
|
|
63046
|
-
<div [ngClass]="containerClasses()" class="relative">
|
|
63047
|
-
<svg [attr.width]="svgSize()" [attr.height]="svgSize()" viewBox="0 0 100 100" class="spinner-rotate">
|
|
63048
|
-
<circle
|
|
63049
|
-
cx="50"
|
|
63050
|
-
cy="50"
|
|
63051
|
-
[attr.r]="svgCircleRadius()"
|
|
63052
|
-
fill="none"
|
|
63053
|
-
[ngClass]="trackClasses()"
|
|
63054
|
-
[attr.stroke-width]="strokeWidth()"
|
|
63055
|
-
/>
|
|
63056
|
-
</svg>
|
|
63057
|
-
|
|
63058
|
-
@for (dot of dots(); track $index) {
|
|
63059
|
-
<div
|
|
63060
|
-
class="spinner-dot"
|
|
63061
|
-
[ngClass]="dotClasses()"
|
|
63062
|
-
[style.animation-delay]="dot.delay"
|
|
63063
|
-
[style.left.px]="dot.x"
|
|
63064
|
-
[style.top.px]="dot.y">
|
|
63065
|
-
</div>
|
|
63066
|
-
}
|
|
63067
|
-
</div>
|
|
63068
|
-
</div>
|
|
63069
|
-
`, styles: ["@keyframes spinner-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes dot-pulse{0%,to{transform:translate(-50%,-50%) scale(1);opacity:.3;filter:brightness(1)}50%{transform:translate(-50%,-50%) scale(1.2);opacity:1;filter:brightness(1.5)}}.spinner-rotate{animation:spinner-rotate 3s linear infinite}.spinner-dot{position:absolute;border-radius:50%;animation:dot-pulse 2s ease-in-out infinite;will-change:transform,opacity,filter;left:50%;top:50%;pointer-events:none}.spinner-dot-small{width:5px;height:5px;box-shadow:0 0 4px currentColor,0 0 8px currentColor}.spinner-dot-medium{width:7px;height:7px;box-shadow:0 0 5px currentColor,0 0 10px currentColor}.spinner-dot-large{width:10px;height:10px;box-shadow:0 0 6px currentColor,0 0 12px currentColor}\n"] }]
|
|
63070
|
-
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], color: [{ type: i0.Input, args: [{ isSignal: true, alias: "color", required: false }] }] }); })();
|
|
63071
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(IndeterminateSpinnerComponent, { className: "IndeterminateSpinnerComponent", filePath: "lib/components/shared/indeterminate-spinner.component.ts", lineNumber: 94 }); })();
|
|
63072
|
-
|
|
63073
63090
|
const _c0$p = () => [];
|
|
63074
63091
|
function SymphiqRevenueCalculatorDashboardComponent_Conditional_23_Template(rf, ctx) { if (rf & 1) {
|
|
63075
63092
|
i0.ɵɵelementStart(0, "div", 12);
|
|
@@ -66963,14 +66980,14 @@ class CollapsibleSectionGroupComponent {
|
|
|
66963
66980
|
const _c0$l = () => [];
|
|
66964
66981
|
function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
66965
66982
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
66966
|
-
i0.ɵɵelementStart(0, "div", 8)(1, "symphiq-search-button",
|
|
66983
|
+
i0.ɵɵelementStart(0, "div", 8)(1, "symphiq-search-button", 20);
|
|
66967
66984
|
i0.ɵɵlistener("searchClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template_symphiq_search_button_searchClick_1_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openSearch()); });
|
|
66968
66985
|
i0.ɵɵelementEnd();
|
|
66969
|
-
i0.ɵɵelementStart(2, "button",
|
|
66986
|
+
i0.ɵɵelementStart(2, "button", 21);
|
|
66970
66987
|
i0.ɵɵlistener("click", function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template_button_click_2_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openViewModeSwitcher()); });
|
|
66971
66988
|
i0.ɵɵnamespaceSVG();
|
|
66972
|
-
i0.ɵɵelementStart(3, "svg",
|
|
66973
|
-
i0.ɵɵelement(4, "path",
|
|
66989
|
+
i0.ɵɵelementStart(3, "svg", 22);
|
|
66990
|
+
i0.ɵɵelement(4, "path", 23)(5, "path", 24);
|
|
66974
66991
|
i0.ɵɵelementEnd();
|
|
66975
66992
|
i0.ɵɵnamespaceHTML();
|
|
66976
66993
|
i0.ɵɵelementStart(6, "span");
|
|
@@ -66986,10 +67003,10 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template(rf, c
|
|
|
66986
67003
|
i0.ɵɵtextInterpolate(ctx_r1.displayModeLabel());
|
|
66987
67004
|
} }
|
|
66988
67005
|
function SymphiqBusinessAnalysisDashboardComponent_Conditional_22_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
66989
|
-
i0.ɵɵelementStart(0, "span",
|
|
67006
|
+
i0.ɵɵelementStart(0, "span", 25);
|
|
66990
67007
|
i0.ɵɵtext(1, "\u203A");
|
|
66991
67008
|
i0.ɵɵelementEnd();
|
|
66992
|
-
i0.ɵɵelementStart(2, "span",
|
|
67009
|
+
i0.ɵɵelementStart(2, "span", 25);
|
|
66993
67010
|
i0.ɵɵtext(3);
|
|
66994
67011
|
i0.ɵɵelementEnd();
|
|
66995
67012
|
} if (rf & 2) {
|
|
@@ -67003,7 +67020,7 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_22_Conditional_3_
|
|
|
67003
67020
|
i0.ɵɵtextInterpolate1(" ", ctx_r1.currentSubsectionTitle(), " ");
|
|
67004
67021
|
} }
|
|
67005
67022
|
function SymphiqBusinessAnalysisDashboardComponent_Conditional_22_Template(rf, ctx) { if (rf & 1) {
|
|
67006
|
-
i0.ɵɵelementStart(0, "div", 12)(1, "span",
|
|
67023
|
+
i0.ɵɵelementStart(0, "div", 12)(1, "span", 25);
|
|
67007
67024
|
i0.ɵɵtext(2);
|
|
67008
67025
|
i0.ɵɵelementEnd();
|
|
67009
67026
|
i0.ɵɵconditionalCreate(3, SymphiqBusinessAnalysisDashboardComponent_Conditional_22_Conditional_3_Template, 4, 11);
|
|
@@ -67020,14 +67037,14 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_22_Template(rf, c
|
|
|
67020
67037
|
} }
|
|
67021
67038
|
function SymphiqBusinessAnalysisDashboardComponent_Conditional_23_Template(rf, ctx) { if (rf & 1) {
|
|
67022
67039
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
67023
|
-
i0.ɵɵelementStart(0, "symphiq-search-button",
|
|
67040
|
+
i0.ɵɵelementStart(0, "symphiq-search-button", 26);
|
|
67024
67041
|
i0.ɵɵlistener("searchClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_23_Template_symphiq_search_button_searchClick_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openSearch()); });
|
|
67025
67042
|
i0.ɵɵelementEnd();
|
|
67026
|
-
i0.ɵɵelementStart(1, "button",
|
|
67043
|
+
i0.ɵɵelementStart(1, "button", 27);
|
|
67027
67044
|
i0.ɵɵlistener("click", function SymphiqBusinessAnalysisDashboardComponent_Conditional_23_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openViewModeSwitcher()); });
|
|
67028
67045
|
i0.ɵɵnamespaceSVG();
|
|
67029
|
-
i0.ɵɵelementStart(2, "svg",
|
|
67030
|
-
i0.ɵɵelement(3, "path",
|
|
67046
|
+
i0.ɵɵelementStart(2, "svg", 22);
|
|
67047
|
+
i0.ɵɵelement(3, "path", 23)(4, "path", 24);
|
|
67031
67048
|
i0.ɵɵelementEnd()();
|
|
67032
67049
|
} if (rf & 2) {
|
|
67033
67050
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -67035,45 +67052,55 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_23_Template(rf, c
|
|
|
67035
67052
|
i0.ɵɵadvance();
|
|
67036
67053
|
i0.ɵɵproperty("ngClass", ctx_r1.getViewModeButtonClasses());
|
|
67037
67054
|
} }
|
|
67038
|
-
function
|
|
67055
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Template(rf, ctx) { if (rf & 1) {
|
|
67056
|
+
i0.ɵɵelementStart(0, "div", 14);
|
|
67057
|
+
i0.ɵɵelement(1, "symphiq-indeterminate-spinner", 28);
|
|
67058
|
+
i0.ɵɵelementEnd();
|
|
67059
|
+
} if (rf & 2) {
|
|
67060
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
67061
|
+
i0.ɵɵadvance();
|
|
67062
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode());
|
|
67063
|
+
} }
|
|
67064
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
67039
67065
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
67040
|
-
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator",
|
|
67041
|
-
i0.ɵɵlistener("stepClick", function
|
|
67066
|
+
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 31);
|
|
67067
|
+
i0.ɵɵlistener("stepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); })("nextStepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); });
|
|
67042
67068
|
i0.ɵɵelementEnd();
|
|
67043
67069
|
} if (rf & 2) {
|
|
67044
67070
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
67045
67071
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentStepId", ctx_r1.JourneyStepIdEnum.BUSINESS_ANALYSIS)("showNextStepAction", false)("forDemo", ctx_r1.forDemo())("maxAccessibleStepId", ctx_r1.maxAccessibleStepId());
|
|
67046
67072
|
} }
|
|
67047
|
-
function
|
|
67048
|
-
i0.ɵɵconditionalCreate(0,
|
|
67049
|
-
i0.ɵɵelement(1, "symphiq-content-generation-progress-with-confetti",
|
|
67073
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Template(rf, ctx) { if (rf & 1) {
|
|
67074
|
+
i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 29);
|
|
67075
|
+
i0.ɵɵelement(1, "symphiq-content-generation-progress-with-confetti", 30);
|
|
67050
67076
|
} if (rf & 2) {
|
|
67077
|
+
let tmp_4_0;
|
|
67051
67078
|
let tmp_6_0;
|
|
67052
67079
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
67053
67080
|
i0.ɵɵconditional(!ctx_r1.isOnboarded() ? 0 : -1);
|
|
67054
67081
|
i0.ɵɵadvance();
|
|
67055
|
-
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("itemStatus", ctx_r1.itemStatus())("
|
|
67082
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("itemStatus", ctx_r1.itemStatus())("currentStatus", (tmp_4_0 = ctx_r1.profile()) == null ? null : tmp_4_0.selfContentStatus)("confettiIntensity", "celebration")("title", "We are generating a new Business Analysis for " + (((tmp_6_0 = ctx_r1.currentProfile()) == null ? null : tmp_6_0.profileStructured == null ? null : tmp_6_0.profileStructured.businessName) || "your business") + ".")("subtitle", "It will appear here when ready. You can check back later as this will take a few minutes to complete.");
|
|
67056
67083
|
} }
|
|
67057
|
-
function
|
|
67084
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_0_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
67058
67085
|
const _r6 = i0.ɵɵgetCurrentView();
|
|
67059
|
-
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator",
|
|
67060
|
-
i0.ɵɵlistener("stepClick", function
|
|
67086
|
+
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 31);
|
|
67087
|
+
i0.ɵɵlistener("stepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_0_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); })("nextStepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_0_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); });
|
|
67061
67088
|
i0.ɵɵelementEnd();
|
|
67062
67089
|
} if (rf & 2) {
|
|
67063
67090
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
67064
67091
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentStepId", ctx_r1.JourneyStepIdEnum.BUSINESS_ANALYSIS)("showNextStepAction", ctx_r1.showNextStepAction())("forDemo", ctx_r1.forDemo())("maxAccessibleStepId", ctx_r1.maxAccessibleStepId());
|
|
67065
67092
|
} }
|
|
67066
|
-
function
|
|
67093
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
67067
67094
|
const _r5 = i0.ɵɵgetCurrentView();
|
|
67068
|
-
i0.ɵɵconditionalCreate(0,
|
|
67069
|
-
i0.ɵɵelementStart(1, "div", 6)(2, "div",
|
|
67070
|
-
i0.ɵɵelement(3, "symphiq-welcome-banner",
|
|
67095
|
+
i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_0_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 29);
|
|
67096
|
+
i0.ɵɵelementStart(1, "div", 6)(2, "div", 32);
|
|
67097
|
+
i0.ɵɵelement(3, "symphiq-welcome-banner", 33);
|
|
67071
67098
|
i0.ɵɵelementEnd();
|
|
67072
|
-
i0.ɵɵelementStart(4, "div",
|
|
67073
|
-
i0.ɵɵlistener("viewMoreClick", function
|
|
67099
|
+
i0.ɵɵelementStart(4, "div", 32)(5, "symphiq-recommendations-tiled-grid", 34);
|
|
67100
|
+
i0.ɵɵlistener("viewMoreClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_0_Template_symphiq_recommendations_tiled_grid_viewMoreClick_5_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.openRecommendationDetailsModal($event)); });
|
|
67074
67101
|
i0.ɵɵelementEnd()();
|
|
67075
67102
|
i0.ɵɵelementStart(6, "div");
|
|
67076
|
-
i0.ɵɵelement(7, "symphiq-collapsible-section-group",
|
|
67103
|
+
i0.ɵɵelement(7, "symphiq-collapsible-section-group", 35);
|
|
67077
67104
|
i0.ɵɵelementEnd()();
|
|
67078
67105
|
} if (rf & 2) {
|
|
67079
67106
|
let tmp_4_0;
|
|
@@ -67086,53 +67113,53 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_
|
|
|
67086
67113
|
i0.ɵɵadvance(2);
|
|
67087
67114
|
i0.ɵɵproperty("sections", ctx_r1.nonRecommendationSections())("viewMode", ctx_r1.viewMode());
|
|
67088
67115
|
} }
|
|
67089
|
-
function
|
|
67090
|
-
i0.ɵɵelementStart(0, "div",
|
|
67091
|
-
i0.ɵɵelement(1, "symphiq-section-divider",
|
|
67116
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_1_For_1_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
67117
|
+
i0.ɵɵelementStart(0, "div", 37);
|
|
67118
|
+
i0.ɵɵelement(1, "symphiq-section-divider", 38);
|
|
67092
67119
|
i0.ɵɵelementEnd();
|
|
67093
67120
|
} if (rf & 2) {
|
|
67094
|
-
const ɵ$
|
|
67121
|
+
const ɵ$index_113_r7 = i0.ɵɵnextContext().$index;
|
|
67095
67122
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
67096
67123
|
i0.ɵɵadvance();
|
|
67097
|
-
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("subsections", ctx_r1.sections()[ɵ$
|
|
67124
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("subsections", ctx_r1.sections()[ɵ$index_113_r7 + 1].subsections || i0.ɵɵpureFunction0(2, _c0$l));
|
|
67098
67125
|
} }
|
|
67099
|
-
function
|
|
67100
|
-
i0.ɵɵelement(0, "symphiq-profile-section",
|
|
67101
|
-
i0.ɵɵconditionalCreate(1,
|
|
67126
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_1_For_1_Template(rf, ctx) { if (rf & 1) {
|
|
67127
|
+
i0.ɵɵelement(0, "symphiq-profile-section", 36);
|
|
67128
|
+
i0.ɵɵconditionalCreate(1, SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_1_For_1_Conditional_1_Template, 2, 3, "div", 37);
|
|
67102
67129
|
} if (rf & 2) {
|
|
67103
67130
|
const section_r8 = ctx.$implicit;
|
|
67104
|
-
const ɵ$
|
|
67105
|
-
const ɵ$
|
|
67131
|
+
const ɵ$index_113_r7 = ctx.$index;
|
|
67132
|
+
const ɵ$count_113_r9 = ctx.$count;
|
|
67106
67133
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
67107
67134
|
i0.ɵɵproperty("section", section_r8)("viewMode", ctx_r1.viewMode())("forceExpanded", !ctx_r1.isCompactView());
|
|
67108
67135
|
i0.ɵɵadvance();
|
|
67109
|
-
i0.ɵɵconditional(!(ɵ$
|
|
67136
|
+
i0.ɵɵconditional(!(ɵ$index_113_r7 === ɵ$count_113_r9 - 1) ? 1 : -1);
|
|
67110
67137
|
} }
|
|
67111
|
-
function
|
|
67112
|
-
i0.ɵɵrepeaterCreate(0,
|
|
67138
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
67139
|
+
i0.ɵɵrepeaterCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_1_For_1_Template, 2, 4, null, null, i0.ɵɵcomponentInstance().trackBySectionId, true);
|
|
67113
67140
|
} if (rf & 2) {
|
|
67114
67141
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
67115
67142
|
i0.ɵɵrepeater(ctx_r1.sections());
|
|
67116
67143
|
} }
|
|
67117
|
-
function
|
|
67118
|
-
i0.ɵɵconditionalCreate(0,
|
|
67144
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Template(rf, ctx) { if (rf & 1) {
|
|
67145
|
+
i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_0_Template, 8, 8)(1, SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_1_Template, 2, 0);
|
|
67119
67146
|
} if (rf & 2) {
|
|
67120
67147
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
67121
67148
|
i0.ɵɵconditional(ctx_r1.isSimplifiedView() ? 0 : 1);
|
|
67122
67149
|
} }
|
|
67123
|
-
function
|
|
67124
|
-
i0.ɵɵelement(0, "symphiq-section-navigation",
|
|
67150
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_28_Template(rf, ctx) { if (rf & 1) {
|
|
67151
|
+
i0.ɵɵelement(0, "symphiq-section-navigation", 15);
|
|
67125
67152
|
} if (rf & 2) {
|
|
67126
67153
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
67127
67154
|
i0.ɵɵproperty("sections", ctx_r1.sections())("viewMode", ctx_r1.viewMode())("embedded", ctx_r1.embedded())("scrollElement", ctx_r1.scrollElement() ?? undefined);
|
|
67128
67155
|
} }
|
|
67129
|
-
function
|
|
67130
|
-
i0.ɵɵelement(0, "symphiq-floating-toc",
|
|
67156
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_29_Template(rf, ctx) { if (rf & 1) {
|
|
67157
|
+
i0.ɵɵelement(0, "symphiq-floating-toc", 15);
|
|
67131
67158
|
} if (rf & 2) {
|
|
67132
67159
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
67133
67160
|
i0.ɵɵproperty("sections", ctx_r1.sections())("viewMode", ctx_r1.viewMode())("embedded", ctx_r1.embedded())("scrollElement", ctx_r1.scrollElement() ?? undefined);
|
|
67134
67161
|
} }
|
|
67135
|
-
function
|
|
67162
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_31_Template(rf, ctx) { if (rf & 1) {
|
|
67136
67163
|
i0.ɵɵelementStart(0, "div", 0);
|
|
67137
67164
|
i0.ɵɵelement(1, "div", 0);
|
|
67138
67165
|
i0.ɵɵelementEnd();
|
|
@@ -67648,7 +67675,7 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
67648
67675
|
static { this.ɵfac = function SymphiqBusinessAnalysisDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqBusinessAnalysisDashboardComponent)(); }; }
|
|
67649
67676
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqBusinessAnalysisDashboardComponent, selectors: [["symphiq-business-analysis-dashboard"]], hostBindings: function SymphiqBusinessAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
67650
67677
|
i0.ɵɵlistener("scroll", function SymphiqBusinessAnalysisDashboardComponent_scroll_HostBindingHandler($event) { return ctx.onScroll($event); }, i0.ɵɵresolveWindow)("keydown", function SymphiqBusinessAnalysisDashboardComponent_keydown_HostBindingHandler($event) { return ctx.handleKeyDown($event); }, i0.ɵɵresolveDocument);
|
|
67651
|
-
} }, inputs: { embedded: [1, "embedded"], profile: [1, "profile"], parentHeaderOffset: [1, "parentHeaderOffset"], requestedByUser: [1, "requestedByUser"], viewMode: [1, "viewMode"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick" }, decls:
|
|
67678
|
+
} }, inputs: { embedded: [1, "embedded"], profile: [1, "profile"], parentHeaderOffset: [1, "parentHeaderOffset"], requestedByUser: [1, "requestedByUser"], viewMode: [1, "viewMode"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick" }, decls: 36, vars: 59, consts: [[3, "ngClass"], [1, "h-full", "transition-all", "duration-200", "ease-out", 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"], [1, "relative", "z-[51]"], [1, "sticky", "top-0", "z-50", 3, "ngClass"], [1, "transition-all", "duration-300", "ease-in-out", "overflow-hidden"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8"], [1, "flex", "items-center", "justify-between"], [1, "flex", "items-center", "gap-2"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-3"], [1, "flex-1", "min-w-0", "mr-4"], [1, "flex", "items-center", "gap-4"], [1, "flex", "items-center", "gap-2", "text-sm", "flex-shrink-0"], [1, "relative"], [1, "flex", "items-center", "justify-center", "min-h-[60vh]"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "viewMode", "embedded"], [3, "viewInContextRequested", "isLightMode"], [3, "searchChange", "resultSelected", "close", "isLightMode", "isOpen", "searchQuery", "results", "hasResults", "selectedIndex", "placeholder"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode", "isLoading"], [3, "searchClick", "isLightMode"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 12a3 3 0 11-6 0 3 3 0 016 0z"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"], [1, "transition-opacity", "duration-300", 3, "ngClass"], [3, "searchClick", "isLightMode", "minimized"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-2", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"], ["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, "mb-8"], [3, "viewMode", "businessName", "isOnboarded"], [3, "viewMoreClick", "recommendations", "viewMode"], [3, "sections", "viewMode"], [3, "section", "viewMode", "forceExpanded"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8"], [3, "viewMode", "subsections"]], template: function SymphiqBusinessAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
67652
67679
|
i0.ɵɵelementStart(0, "div", 0)(1, "div");
|
|
67653
67680
|
i0.ɵɵelement(2, "div", 1);
|
|
67654
67681
|
i0.ɵɵelementEnd();
|
|
@@ -67669,22 +67696,22 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
67669
67696
|
i0.ɵɵconditionalCreate(23, SymphiqBusinessAnalysisDashboardComponent_Conditional_23_Template, 5, 3);
|
|
67670
67697
|
i0.ɵɵelementEnd()()()()();
|
|
67671
67698
|
i0.ɵɵelementStart(24, "main", 13);
|
|
67672
|
-
i0.ɵɵconditionalCreate(25, SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Template, 2,
|
|
67699
|
+
i0.ɵɵconditionalCreate(25, SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Template, 2, 1, "div", 14)(26, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Template, 2, 7)(27, SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Template, 2, 1);
|
|
67673
67700
|
i0.ɵɵelementEnd();
|
|
67674
|
-
i0.ɵɵconditionalCreate(
|
|
67675
|
-
i0.ɵɵconditionalCreate(
|
|
67676
|
-
i0.ɵɵelement(
|
|
67701
|
+
i0.ɵɵconditionalCreate(28, SymphiqBusinessAnalysisDashboardComponent_Conditional_28_Template, 1, 4, "symphiq-section-navigation", 15);
|
|
67702
|
+
i0.ɵɵconditionalCreate(29, SymphiqBusinessAnalysisDashboardComponent_Conditional_29_Template, 1, 4, "symphiq-floating-toc", 15);
|
|
67703
|
+
i0.ɵɵelement(30, "symphiq-floating-back-button", 16);
|
|
67677
67704
|
i0.ɵɵelementEnd();
|
|
67678
|
-
i0.ɵɵconditionalCreate(
|
|
67679
|
-
i0.ɵɵelement(
|
|
67680
|
-
i0.ɵɵelementStart(
|
|
67681
|
-
i0.ɵɵlistener("viewInContextRequested", function
|
|
67705
|
+
i0.ɵɵconditionalCreate(31, SymphiqBusinessAnalysisDashboardComponent_Conditional_31_Template, 2, 2, "div", 0);
|
|
67706
|
+
i0.ɵɵelement(32, "symphiq-tooltip-container");
|
|
67707
|
+
i0.ɵɵelementStart(33, "symphiq-business-analysis-modal", 17);
|
|
67708
|
+
i0.ɵɵlistener("viewInContextRequested", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_business_analysis_modal_viewInContextRequested_33_listener($event) { return ctx.handleViewInContext($event); });
|
|
67682
67709
|
i0.ɵɵelementEnd();
|
|
67683
|
-
i0.ɵɵelementStart(
|
|
67684
|
-
i0.ɵɵlistener("searchChange", function
|
|
67710
|
+
i0.ɵɵelementStart(34, "symphiq-search-modal", 18);
|
|
67711
|
+
i0.ɵɵlistener("searchChange", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_searchChange_34_listener($event) { return ctx.onSearchChange($event); })("resultSelected", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_resultSelected_34_listener($event) { return ctx.onSearchResultSelected($event); })("close", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_close_34_listener() { return ctx.closeSearch(); });
|
|
67685
67712
|
i0.ɵɵelementEnd();
|
|
67686
|
-
i0.ɵɵelementStart(
|
|
67687
|
-
i0.ɵɵlistener("close", function
|
|
67713
|
+
i0.ɵɵelementStart(35, "symphiq-view-mode-switcher-modal", 19);
|
|
67714
|
+
i0.ɵɵlistener("close", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_close_35_listener() { return ctx.closeViewModeSwitcher(); })("modeSelected", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_modeSelected_35_listener($event) { return ctx.handleDisplayModeChange($event); });
|
|
67688
67715
|
i0.ɵɵelementEnd()();
|
|
67689
67716
|
} if (rf & 2) {
|
|
67690
67717
|
let tmp_13_0;
|
|
@@ -67726,26 +67753,26 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
67726
67753
|
i0.ɵɵadvance();
|
|
67727
67754
|
i0.ɵɵconditional(((tmp_25_0 = ctx.profile()) == null ? null : tmp_25_0.selfContentStatus) === ctx.AiDynamicContentStatusEnum.GENERATED ? 23 : -1);
|
|
67728
67755
|
i0.ɵɵadvance(2);
|
|
67729
|
-
i0.ɵɵconditional(ctx.
|
|
67730
|
-
i0.ɵɵadvance(
|
|
67731
|
-
i0.ɵɵconditional(!ctx.isSimplifiedView() ? 27 : -1);
|
|
67732
|
-
i0.ɵɵadvance();
|
|
67756
|
+
i0.ɵɵconditional(ctx.isLoading() ? 25 : ctx.isContentGenerating() ? 26 : 27);
|
|
67757
|
+
i0.ɵɵadvance(3);
|
|
67733
67758
|
i0.ɵɵconditional(!ctx.isSimplifiedView() ? 28 : -1);
|
|
67734
67759
|
i0.ɵɵadvance();
|
|
67760
|
+
i0.ɵɵconditional(!ctx.isSimplifiedView() ? 29 : -1);
|
|
67761
|
+
i0.ɵɵadvance();
|
|
67735
67762
|
i0.ɵɵproperty("viewMode", ctx.viewMode())("embedded", ctx.embedded());
|
|
67736
67763
|
i0.ɵɵadvance();
|
|
67737
|
-
i0.ɵɵconditional(ctx.isLoading() ?
|
|
67764
|
+
i0.ɵɵconditional(ctx.isLoading() ? 31 : -1);
|
|
67738
67765
|
i0.ɵɵadvance(2);
|
|
67739
67766
|
i0.ɵɵproperty("isLightMode", ctx.isLightMode());
|
|
67740
67767
|
i0.ɵɵadvance();
|
|
67741
67768
|
i0.ɵɵproperty("isLightMode", ctx.isLightMode())("isOpen", ctx.searchService.isSearchOpen())("searchQuery", ctx.searchService.getSearchQuery())("results", ctx.searchService.searchResults())("hasResults", ctx.searchService.hasResults())("selectedIndex", ctx.selectedSearchIndex())("placeholder", "Search sections, items, and analysis...");
|
|
67742
67769
|
i0.ɵɵadvance();
|
|
67743
67770
|
i0.ɵɵproperty("isOpen", ctx.isViewModeSwitcherOpen())("currentMode", ctx.displayMode())("viewMode", ctx.viewMode())("isLoading", ctx.isViewModeSwitching());
|
|
67744
|
-
} }, dependencies: [CommonModule, i1$1.NgClass, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchButtonComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent, ContentGenerationProgressWithConfettiComponent], styles: ["[_nghost-%COMP%]{display:block}@keyframes _ngcontent-%COMP%_spin{to{transform:rotate(360deg)}}@keyframes _ngcontent-%COMP%_pulse-highlight{0%,to{transform:scale(1);box-shadow:0 0 #3b82f6b3}50%{transform:scale(1.02);box-shadow:0 0 20px 8px #3b82f64d}}[_nghost-%COMP%] .search-highlight-pulse{animation:_ngcontent-%COMP%_pulse-highlight 2s ease-in-out;border-color:#3b82f6!important}"], changeDetection: 0 }); }
|
|
67771
|
+
} }, dependencies: [CommonModule, i1$1.NgClass, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchButtonComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent, ContentGenerationProgressWithConfettiComponent, IndeterminateSpinnerComponent], styles: ["[_nghost-%COMP%]{display:block}@keyframes _ngcontent-%COMP%_spin{to{transform:rotate(360deg)}}@keyframes _ngcontent-%COMP%_pulse-highlight{0%,to{transform:scale(1);box-shadow:0 0 #3b82f6b3}50%{transform:scale(1.02);box-shadow:0 0 20px 8px #3b82f64d}}[_nghost-%COMP%] .search-highlight-pulse{animation:_ngcontent-%COMP%_pulse-highlight 2s ease-in-out;border-color:#3b82f6!important}"], changeDetection: 0 }); }
|
|
67745
67772
|
}
|
|
67746
67773
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SymphiqBusinessAnalysisDashboardComponent, [{
|
|
67747
67774
|
type: Component,
|
|
67748
|
-
args: [{ selector: 'symphiq-business-analysis-dashboard', standalone: true, imports: [CommonModule, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchButtonComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent, ContentGenerationProgressWithConfettiComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
67775
|
+
args: [{ selector: 'symphiq-business-analysis-dashboard', standalone: true, imports: [CommonModule, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchButtonComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent, ContentGenerationProgressWithConfettiComponent, IndeterminateSpinnerComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
67749
67776
|
<div [ngClass]="getContainerClasses()">
|
|
67750
67777
|
<!-- Scroll Progress Bar (fixed at top) -->
|
|
67751
67778
|
<div [class]="embedded() ? 'sticky top-0 left-0 right-0 h-1 z-[60] bg-slate-200/30' : 'fixed top-0 left-0 right-0 h-1 z-[60] bg-slate-200/30'">
|
|
@@ -67858,7 +67885,15 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
67858
67885
|
</header>
|
|
67859
67886
|
|
|
67860
67887
|
<main class="relative">
|
|
67861
|
-
@if (
|
|
67888
|
+
@if (isLoading()) {
|
|
67889
|
+
<!-- Pure Loading State -->
|
|
67890
|
+
<div class="flex items-center justify-center min-h-[60vh]">
|
|
67891
|
+
<symphiq-indeterminate-spinner
|
|
67892
|
+
[viewMode]="viewMode()"
|
|
67893
|
+
size="large"
|
|
67894
|
+
/>
|
|
67895
|
+
</div>
|
|
67896
|
+
} @else if (isContentGenerating()) {
|
|
67862
67897
|
<!-- Journey Progress Banner (always show when not onboarded) -->
|
|
67863
67898
|
@if (!isOnboarded()) {
|
|
67864
67899
|
<symphiq-journey-progress-indicator
|
|
@@ -67876,7 +67911,7 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
67876
67911
|
<symphiq-content-generation-progress-with-confetti
|
|
67877
67912
|
[viewMode]="viewMode()"
|
|
67878
67913
|
[itemStatus]="itemStatus()"
|
|
67879
|
-
[
|
|
67914
|
+
[currentStatus]="profile()?.selfContentStatus"
|
|
67880
67915
|
[confettiIntensity]="'celebration'"
|
|
67881
67916
|
[title]="'We are generating a new Business Analysis for ' + (currentProfile()?.profileStructured?.businessName || 'your business') + '.'"
|
|
67882
67917
|
[subtitle]="'It will appear here when ready. You can check back later as this will take a few minutes to complete.'"
|
|
@@ -68004,7 +68039,7 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
68004
68039
|
type: HostListener,
|
|
68005
68040
|
args: ['document:keydown', ['$event']]
|
|
68006
68041
|
}] }); })();
|
|
68007
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqBusinessAnalysisDashboardComponent, { className: "SymphiqBusinessAnalysisDashboardComponent", filePath: "lib/components/business-analysis-dashboard/symphiq-business-analysis-dashboard.component.ts", lineNumber:
|
|
68042
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqBusinessAnalysisDashboardComponent, { className: "SymphiqBusinessAnalysisDashboardComponent", filePath: "lib/components/business-analysis-dashboard/symphiq-business-analysis-dashboard.component.ts", lineNumber: 346 }); })();
|
|
68008
68043
|
|
|
68009
68044
|
function DashboardHeaderComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
68010
68045
|
i0.ɵɵelement(0, "div", 6);
|