@eric-emg/symphiq-components 1.2.435 → 1.2.437
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 +420 -264
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +15 -1
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/styles.css +22 -9
|
@@ -24919,6 +24919,10 @@ class ConfidenceLevelCardComponent {
|
|
|
24919
24919
|
this.elementRef = inject(ElementRef);
|
|
24920
24920
|
this.hasAnimated = signal(false, ...(ngDevMode ? [{ debugName: "hasAnimated" }] : []));
|
|
24921
24921
|
this.animatedPercentage = signal(0, ...(ngDevMode ? [{ debugName: "animatedPercentage" }] : []));
|
|
24922
|
+
this.isGradeChanging = signal(false, ...(ngDevMode ? [{ debugName: "isGradeChanging" }] : []));
|
|
24923
|
+
this.previousPercentage = signal(null, ...(ngDevMode ? [{ debugName: "previousPercentage" }] : []));
|
|
24924
|
+
this.previousGrade = signal(null, ...(ngDevMode ? [{ debugName: "previousGrade" }] : []));
|
|
24925
|
+
this.isInitialLoad = signal(true, ...(ngDevMode ? [{ debugName: "isInitialLoad" }] : []));
|
|
24922
24926
|
this.confidenceData = computed(() => {
|
|
24923
24927
|
const stepId = this.currentStepId();
|
|
24924
24928
|
const dataMap = {
|
|
@@ -25173,6 +25177,27 @@ class ConfidenceLevelCardComponent {
|
|
|
25173
25177
|
}
|
|
25174
25178
|
return 'bg-gradient-to-r from-red-500 to-rose-500';
|
|
25175
25179
|
}, ...(ngDevMode ? [{ debugName: "progressGlowClasses" }] : []));
|
|
25180
|
+
effect(() => {
|
|
25181
|
+
const currentData = this.confidenceData();
|
|
25182
|
+
const prevPercentage = this.previousPercentage();
|
|
25183
|
+
const prevGrade = this.previousGrade();
|
|
25184
|
+
if (this.isInitialLoad() && this.hasAnimated()) {
|
|
25185
|
+
this.isInitialLoad.set(false);
|
|
25186
|
+
this.previousPercentage.set(currentData.percentage);
|
|
25187
|
+
this.previousGrade.set(currentData.grade);
|
|
25188
|
+
return;
|
|
25189
|
+
}
|
|
25190
|
+
if (!this.isInitialLoad() && this.hasAnimated()) {
|
|
25191
|
+
if (prevPercentage !== null && prevPercentage !== currentData.percentage) {
|
|
25192
|
+
this.animateValueChange(prevPercentage, currentData.percentage);
|
|
25193
|
+
this.previousPercentage.set(currentData.percentage);
|
|
25194
|
+
}
|
|
25195
|
+
if (prevGrade !== null && prevGrade !== currentData.grade) {
|
|
25196
|
+
this.triggerGradeChangeAnimation();
|
|
25197
|
+
this.previousGrade.set(currentData.grade);
|
|
25198
|
+
}
|
|
25199
|
+
}
|
|
25200
|
+
});
|
|
25176
25201
|
}
|
|
25177
25202
|
ngOnInit() {
|
|
25178
25203
|
this.setupObserver();
|
|
@@ -25226,6 +25251,33 @@ class ConfidenceLevelCardComponent {
|
|
|
25226
25251
|
};
|
|
25227
25252
|
this.animationFrame = requestAnimationFrame(animate);
|
|
25228
25253
|
}
|
|
25254
|
+
animateValueChange(fromValue, toValue) {
|
|
25255
|
+
if (this.animationFrame) {
|
|
25256
|
+
cancelAnimationFrame(this.animationFrame);
|
|
25257
|
+
}
|
|
25258
|
+
const startTime = performance.now();
|
|
25259
|
+
const duration = 1000;
|
|
25260
|
+
const animate = (currentTime) => {
|
|
25261
|
+
const elapsed = currentTime - startTime;
|
|
25262
|
+
const progress = Math.min(elapsed / duration, 1);
|
|
25263
|
+
const easeOutCubic = 1 - Math.pow(1 - progress, 3);
|
|
25264
|
+
const currentValue = fromValue + (toValue - fromValue) * easeOutCubic;
|
|
25265
|
+
this.animatedPercentage.set(Math.round(currentValue));
|
|
25266
|
+
if (progress < 1) {
|
|
25267
|
+
this.animationFrame = requestAnimationFrame(animate);
|
|
25268
|
+
}
|
|
25269
|
+
else {
|
|
25270
|
+
this.animatedPercentage.set(toValue);
|
|
25271
|
+
}
|
|
25272
|
+
};
|
|
25273
|
+
this.animationFrame = requestAnimationFrame(animate);
|
|
25274
|
+
}
|
|
25275
|
+
triggerGradeChangeAnimation() {
|
|
25276
|
+
this.isGradeChanging.set(true);
|
|
25277
|
+
setTimeout(() => {
|
|
25278
|
+
this.isGradeChanging.set(false);
|
|
25279
|
+
}, 800);
|
|
25280
|
+
}
|
|
25229
25281
|
calculateFocusAreaPercentage() {
|
|
25230
25282
|
const BASE_PERCENTAGE = 55;
|
|
25231
25283
|
const MAX_PERCENTAGE = 75;
|
|
@@ -25326,7 +25378,7 @@ class ConfidenceLevelCardComponent {
|
|
|
25326
25378
|
return `Strong context building. Symphiq has comprehensive business, operational, and marketing knowledge with detailed metric analysis (${completedCount}/${totalCount} metrics complete). Continue analyzing remaining metrics to achieve maximum confidence.`;
|
|
25327
25379
|
}
|
|
25328
25380
|
static { this.ɵfac = function ConfidenceLevelCardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ConfidenceLevelCardComponent)(); }; }
|
|
25329
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ConfidenceLevelCardComponent, selectors: [["symphiq-confidence-level-card"]], inputs: { viewMode: [1, "viewMode"], currentStepId: [1, "currentStepId"], focusAreaDetails: [1, "focusAreaDetails"], currentFocusAreaDomain: [1, "currentFocusAreaDomain"], currentMetric: [1, "currentMetric"] }, decls: 29, vars:
|
|
25381
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ConfidenceLevelCardComponent, selectors: [["symphiq-confidence-level-card"]], inputs: { viewMode: [1, "viewMode"], currentStepId: [1, "currentStepId"], focusAreaDetails: [1, "focusAreaDetails"], currentFocusAreaDomain: [1, "currentFocusAreaDomain"], currentMetric: [1, "currentMetric"] }, decls: 29, vars: 31, consts: [[1, "rounded-2xl", "p-6", "transition-all", "duration-500", "hover:scale-[1.02]", "relative", "overflow-hidden", "group", 3, "ngClass"], [1, "absolute", "inset-0", "opacity-30", "transition-opacity", "duration-500", "group-hover:opacity-50", 3, "ngClass"], [1, "relative", "z-10"], [1, "flex", "items-start", "justify-between", "gap-4", "mb-4"], [1, "flex-1", "min-w-0"], [1, "text-lg", "font-bold", "mb-1", 3, "ngClass"], [1, "text-xs", "font-medium", 3, "ngClass"], [1, "relative", "flex-shrink-0", "transition-all", "duration-300", "hover:scale-110", 3, "ngClass"], [1, "absolute", "inset-0", "rounded-xl", "blur-xl", "opacity-60", "transition-all", "duration-500", "group-hover:opacity-80", 3, "ngClass"], [1, "relative", "px-5", "py-3", "rounded-xl", "text-center", "backdrop-blur-sm", "transition-all", "duration-500", 3, "ngClass"], [1, "text-[10px]", "font-bold", "uppercase", "tracking-wider", "mb-0.5", "transition-colors", "duration-500", 3, "ngClass"], [1, "text-3xl", "font-bold", "transition-all", "duration-500", 3, "ngClass"], [1, "text-sm", "leading-relaxed", "mb-4", 3, "ngClass"], [1, "space-y-2"], [1, "flex", "items-center", "justify-between"], [1, "text-xs", "font-semibold", 3, "ngClass"], [1, "text-xs", "font-bold", 3, "ngClass"], [1, "relative"], [1, "h-3", "rounded-full", "overflow-hidden", "relative", 3, "ngClass"], [1, "h-full", "transition-all", "duration-1000", "ease-out", "relative", 3, "ngClass"], [1, "absolute", "inset-0", "opacity-30", 3, "ngClass"], [1, "absolute", "top-0", "left-0", "h-3", "rounded-full", "blur-md", "opacity-40", "transition-all", "duration-1000", "ease-out", "-z-10", 3, "ngClass"]], template: function ConfidenceLevelCardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
25330
25382
|
i0.ɵɵelementStart(0, "div", 0);
|
|
25331
25383
|
i0.ɵɵelement(1, "div", 1);
|
|
25332
25384
|
i0.ɵɵelementStart(2, "div", 2)(3, "div", 3)(4, "div", 4)(5, "h3", 5);
|
|
@@ -25369,7 +25421,7 @@ class ConfidenceLevelCardComponent {
|
|
|
25369
25421
|
i0.ɵɵadvance();
|
|
25370
25422
|
i0.ɵɵtextInterpolate2(" ", ctx.confidenceData().qualitativeStatus, " + ", ctx.confidenceData().quantitativeStatus, " ");
|
|
25371
25423
|
i0.ɵɵadvance();
|
|
25372
|
-
i0.ɵɵclassProp("animate-pulse-glow", ctx.shouldPulse());
|
|
25424
|
+
i0.ɵɵclassProp("animate-pulse-glow", ctx.shouldPulse())("grade-change-animate", ctx.isGradeChanging());
|
|
25373
25425
|
i0.ɵɵproperty("ngClass", ctx.gradeBadgeContainerClasses());
|
|
25374
25426
|
i0.ɵɵadvance();
|
|
25375
25427
|
i0.ɵɵproperty("ngClass", ctx.glowEffectClasses());
|
|
@@ -25401,85 +25453,86 @@ class ConfidenceLevelCardComponent {
|
|
|
25401
25453
|
i0.ɵɵadvance();
|
|
25402
25454
|
i0.ɵɵstyleProp("width", ctx.animatedPercentage(), "%");
|
|
25403
25455
|
i0.ɵɵproperty("ngClass", ctx.progressGlowClasses());
|
|
25404
|
-
} }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_confidence-fade-in-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes _ngcontent-%COMP%_pulse-glow{0%,to{opacity:1;transform:scale(1)}50%{opacity:.8;transform:scale(1.05)}}@keyframes _ngcontent-%COMP%_shimmer{0%{background-position:-200% center}to{background-position:200% center}}.confidence-card-animate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_confidence-fade-in-up .6s ease-out forwards}.animate-pulse-glow[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_pulse-glow 2s ease-in-out infinite}@media (prefers-reduced-motion: reduce){.confidence-card-animate[_ngcontent-%COMP%], .animate-pulse-glow[_ngcontent-%COMP%]{animation:none;opacity:1}}"], changeDetection: 0 }); }
|
|
25456
|
+
} }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_confidence-fade-in-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes _ngcontent-%COMP%_pulse-glow{0%,to{opacity:1;transform:scale(1)}50%{opacity:.8;transform:scale(1.05)}}@keyframes _ngcontent-%COMP%_shimmer{0%{background-position:-200% center}to{background-position:200% center}}@keyframes _ngcontent-%COMP%_grade-change{0%{transform:scale(1);opacity:1}50%{transform:scale(1.1);opacity:.9}to{transform:scale(1);opacity:1}}.confidence-card-animate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_confidence-fade-in-up .6s ease-out forwards}.animate-pulse-glow[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_pulse-glow 2s ease-in-out infinite}.grade-change-animate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_grade-change .8s ease-out}@media (prefers-reduced-motion: reduce){.confidence-card-animate[_ngcontent-%COMP%], .animate-pulse-glow[_ngcontent-%COMP%], .grade-change-animate[_ngcontent-%COMP%]{animation:none;opacity:1}}"], changeDetection: 0 }); }
|
|
25405
25457
|
}
|
|
25406
25458
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ConfidenceLevelCardComponent, [{
|
|
25407
25459
|
type: Component,
|
|
25408
|
-
args: [{ selector: 'symphiq-confidence-level-card', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
25409
|
-
<div
|
|
25410
|
-
[ngClass]="cardContainerClasses()"
|
|
25411
|
-
class="rounded-2xl p-6 transition-all duration-500 hover:scale-[1.02] relative overflow-hidden group"
|
|
25412
|
-
[class.confidence-card-animate]="hasAnimated()">
|
|
25413
|
-
|
|
25414
|
-
<!-- Animated background gradient overlay -->
|
|
25415
|
-
<div [ngClass]="backgroundOverlayClasses()" class="absolute inset-0 opacity-30 transition-opacity duration-500 group-hover:opacity-50"></div>
|
|
25416
|
-
|
|
25417
|
-
<!-- Content -->
|
|
25418
|
-
<div class="relative z-10">
|
|
25419
|
-
<!-- Header with Title and Grade Badge -->
|
|
25420
|
-
<div class="flex items-start justify-between gap-4 mb-4">
|
|
25421
|
-
<div class="flex-1 min-w-0">
|
|
25422
|
-
<h3 [ngClass]="titleClasses()" class="text-lg font-bold mb-1">
|
|
25423
|
-
Confidence Level
|
|
25424
|
-
</h3>
|
|
25425
|
-
<p [ngClass]="subtitleClasses()" class="text-xs font-medium">
|
|
25426
|
-
{{ confidenceData().qualitativeStatus }} + {{ confidenceData().quantitativeStatus }}
|
|
25427
|
-
</p>
|
|
25428
|
-
</div>
|
|
25429
|
-
|
|
25430
|
-
<!-- Grade Badge with Glow -->
|
|
25431
|
-
<div
|
|
25432
|
-
[ngClass]="gradeBadgeContainerClasses()"
|
|
25433
|
-
class="relative flex-shrink-0 transition-all duration-300 hover:scale-110"
|
|
25434
|
-
[class.animate-pulse-glow]="shouldPulse()"
|
|
25435
|
-
|
|
25436
|
-
|
|
25437
|
-
|
|
25438
|
-
|
|
25439
|
-
|
|
25440
|
-
<div [ngClass]="
|
|
25441
|
-
|
|
25442
|
-
|
|
25443
|
-
|
|
25444
|
-
|
|
25445
|
-
|
|
25446
|
-
|
|
25447
|
-
|
|
25448
|
-
|
|
25449
|
-
|
|
25450
|
-
|
|
25451
|
-
|
|
25452
|
-
|
|
25453
|
-
|
|
25454
|
-
<span [ngClass]="
|
|
25455
|
-
|
|
25456
|
-
|
|
25457
|
-
|
|
25458
|
-
|
|
25459
|
-
|
|
25460
|
-
|
|
25461
|
-
|
|
25462
|
-
|
|
25463
|
-
|
|
25464
|
-
[
|
|
25465
|
-
|
|
25466
|
-
|
|
25467
|
-
|
|
25468
|
-
|
|
25469
|
-
|
|
25470
|
-
|
|
25471
|
-
|
|
25472
|
-
|
|
25473
|
-
[
|
|
25474
|
-
|
|
25475
|
-
|
|
25476
|
-
|
|
25477
|
-
|
|
25478
|
-
|
|
25479
|
-
|
|
25480
|
-
|
|
25481
|
-
|
|
25482
|
-
(
|
|
25460
|
+
args: [{ selector: 'symphiq-confidence-level-card', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
25461
|
+
<div
|
|
25462
|
+
[ngClass]="cardContainerClasses()"
|
|
25463
|
+
class="rounded-2xl p-6 transition-all duration-500 hover:scale-[1.02] relative overflow-hidden group"
|
|
25464
|
+
[class.confidence-card-animate]="hasAnimated()">
|
|
25465
|
+
|
|
25466
|
+
<!-- Animated background gradient overlay -->
|
|
25467
|
+
<div [ngClass]="backgroundOverlayClasses()" class="absolute inset-0 opacity-30 transition-opacity duration-500 group-hover:opacity-50"></div>
|
|
25468
|
+
|
|
25469
|
+
<!-- Content -->
|
|
25470
|
+
<div class="relative z-10">
|
|
25471
|
+
<!-- Header with Title and Grade Badge -->
|
|
25472
|
+
<div class="flex items-start justify-between gap-4 mb-4">
|
|
25473
|
+
<div class="flex-1 min-w-0">
|
|
25474
|
+
<h3 [ngClass]="titleClasses()" class="text-lg font-bold mb-1">
|
|
25475
|
+
Confidence Level
|
|
25476
|
+
</h3>
|
|
25477
|
+
<p [ngClass]="subtitleClasses()" class="text-xs font-medium">
|
|
25478
|
+
{{ confidenceData().qualitativeStatus }} + {{ confidenceData().quantitativeStatus }}
|
|
25479
|
+
</p>
|
|
25480
|
+
</div>
|
|
25481
|
+
|
|
25482
|
+
<!-- Grade Badge with Glow -->
|
|
25483
|
+
<div
|
|
25484
|
+
[ngClass]="gradeBadgeContainerClasses()"
|
|
25485
|
+
class="relative flex-shrink-0 transition-all duration-300 hover:scale-110"
|
|
25486
|
+
[class.animate-pulse-glow]="shouldPulse()"
|
|
25487
|
+
[class.grade-change-animate]="isGradeChanging()">
|
|
25488
|
+
<!-- Glow effect -->
|
|
25489
|
+
<div [ngClass]="glowEffectClasses()" class="absolute inset-0 rounded-xl blur-xl opacity-60 transition-all duration-500 group-hover:opacity-80"></div>
|
|
25490
|
+
<!-- Badge content -->
|
|
25491
|
+
<div [ngClass]="gradeBadgeClasses()" class="relative px-5 py-3 rounded-xl text-center backdrop-blur-sm transition-all duration-500">
|
|
25492
|
+
<div [ngClass]="gradeLabelClasses()" class="text-[10px] font-bold uppercase tracking-wider mb-0.5 transition-colors duration-500">Grade</div>
|
|
25493
|
+
<div [ngClass]="gradeValueClasses()" class="text-3xl font-bold transition-all duration-500">{{ confidenceData().grade }}</div>
|
|
25494
|
+
</div>
|
|
25495
|
+
</div>
|
|
25496
|
+
</div>
|
|
25497
|
+
|
|
25498
|
+
<!-- Description -->
|
|
25499
|
+
<p [ngClass]="descriptionClasses()" class="text-sm leading-relaxed mb-4">
|
|
25500
|
+
{{ confidenceData().description }}
|
|
25501
|
+
</p>
|
|
25502
|
+
|
|
25503
|
+
<!-- Progress Bar -->
|
|
25504
|
+
<div class="space-y-2">
|
|
25505
|
+
<div class="flex items-center justify-between">
|
|
25506
|
+
<span [ngClass]="progressLabelClasses()" class="text-xs font-semibold">Context Completeness</span>
|
|
25507
|
+
<span [ngClass]="progressValueClasses()" class="text-xs font-bold">{{ animatedPercentage() }}%</span>
|
|
25508
|
+
</div>
|
|
25509
|
+
|
|
25510
|
+
<!-- Progress Track -->
|
|
25511
|
+
<div class="relative">
|
|
25512
|
+
<!-- Background track -->
|
|
25513
|
+
<div [ngClass]="progressTrackClasses()" class="h-3 rounded-full overflow-hidden relative">
|
|
25514
|
+
<!-- Progress bar with shimmer -->
|
|
25515
|
+
<div
|
|
25516
|
+
[style.width.%]="animatedPercentage()"
|
|
25517
|
+
[ngClass]="progressBarClasses()"
|
|
25518
|
+
class="h-full transition-all duration-1000 ease-out relative">
|
|
25519
|
+
<!-- Shimmer effect -->
|
|
25520
|
+
<div [ngClass]="shimmerClasses()" class="absolute inset-0 opacity-30"></div>
|
|
25521
|
+
</div>
|
|
25522
|
+
</div>
|
|
25523
|
+
<!-- Glow underneath -->
|
|
25524
|
+
<div
|
|
25525
|
+
[style.width.%]="animatedPercentage()"
|
|
25526
|
+
[ngClass]="progressGlowClasses()"
|
|
25527
|
+
class="absolute top-0 left-0 h-3 rounded-full blur-md opacity-40 transition-all duration-1000 ease-out -z-10">
|
|
25528
|
+
</div>
|
|
25529
|
+
</div>
|
|
25530
|
+
</div>
|
|
25531
|
+
</div>
|
|
25532
|
+
</div>
|
|
25533
|
+
`, styles: ["@keyframes confidence-fade-in-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes pulse-glow{0%,to{opacity:1;transform:scale(1)}50%{opacity:.8;transform:scale(1.05)}}@keyframes shimmer{0%{background-position:-200% center}to{background-position:200% center}}@keyframes grade-change{0%{transform:scale(1);opacity:1}50%{transform:scale(1.1);opacity:.9}to{transform:scale(1);opacity:1}}.confidence-card-animate{animation:confidence-fade-in-up .6s ease-out forwards}.animate-pulse-glow{animation:pulse-glow 2s ease-in-out infinite}.grade-change-animate{animation:grade-change .8s ease-out}@media (prefers-reduced-motion: reduce){.confidence-card-animate,.animate-pulse-glow,.grade-change-animate{animation:none;opacity:1}}\n"] }]
|
|
25534
|
+
}], () => [], { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], currentStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentStepId", required: false }] }], focusAreaDetails: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaDetails", required: false }] }], currentFocusAreaDomain: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentFocusAreaDomain", required: false }] }], currentMetric: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentMetric", required: false }] }] }); })();
|
|
25535
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ConfidenceLevelCardComponent, { className: "ConfidenceLevelCardComponent", filePath: "lib/components/shared/confidence-level-card.component.ts", lineNumber: 161 }); })();
|
|
25483
25536
|
|
|
25484
25537
|
function FunnelWelcomeBannerComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
25485
25538
|
i0.ɵɵtext(0, " Your Funnel Analysis ");
|
|
@@ -94439,167 +94492,182 @@ class SymphiqProfileShopAnalysisDashboardComponent {
|
|
|
94439
94492
|
const _forTrack0 = ($index, $item) => $item.domain;
|
|
94440
94493
|
function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
94441
94494
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
94442
|
-
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator",
|
|
94495
|
+
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 36);
|
|
94443
94496
|
i0.ɵɵlistener("nextStepClick", function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_6_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); })("stepClick", function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_6_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); });
|
|
94444
94497
|
i0.ɵɵelementEnd();
|
|
94445
94498
|
} if (rf & 2) {
|
|
94446
94499
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
94447
94500
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentStepId", ctx_r1.currentStepId())("showNextStepAction", ctx_r1.forDemo() || ctx_r1.allInterestedFocusAreasGenerated())("forDemo", ctx_r1.forDemo())("maxAccessibleStepId", ctx_r1.maxAccessibleStepId());
|
|
94448
94501
|
} }
|
|
94449
|
-
function
|
|
94450
|
-
i0.ɵɵelementStart(0, "div",
|
|
94502
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
94503
|
+
i0.ɵɵelementStart(0, "div", 41);
|
|
94451
94504
|
i0.ɵɵtext(1);
|
|
94452
94505
|
i0.ɵɵelementEnd();
|
|
94453
94506
|
} if (rf & 2) {
|
|
94454
|
-
const
|
|
94507
|
+
const focusArea_r3 = i0.ɵɵnextContext().$implicit;
|
|
94455
94508
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
94456
|
-
i0.ɵɵproperty("ngClass", ctx_r1.getEngagementBadgeClasses(
|
|
94509
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getEngagementBadgeClasses(focusArea_r3.engagementStatus));
|
|
94457
94510
|
i0.ɵɵadvance();
|
|
94458
|
-
i0.ɵɵtextInterpolate1(" ", ctx_r1.getEngagementStatusLabel(
|
|
94511
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r1.getEngagementStatusLabel(focusArea_r3.engagementStatus), " ");
|
|
94459
94512
|
} }
|
|
94460
|
-
function
|
|
94461
|
-
i0.ɵɵelementStart(0, "div",
|
|
94513
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_7_Template(rf, ctx) { if (rf & 1) {
|
|
94514
|
+
i0.ɵɵelementStart(0, "div", 42);
|
|
94462
94515
|
i0.ɵɵtext(1, " Analysis Ready ");
|
|
94463
94516
|
i0.ɵɵelementEnd();
|
|
94464
94517
|
} }
|
|
94465
|
-
function
|
|
94466
|
-
i0.ɵɵelementStart(0, "span",
|
|
94518
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_12_For_6_Template(rf, ctx) { if (rf & 1) {
|
|
94519
|
+
i0.ɵɵelementStart(0, "span", 51);
|
|
94467
94520
|
i0.ɵɵtext(1);
|
|
94468
94521
|
i0.ɵɵelementEnd();
|
|
94469
94522
|
} if (rf & 2) {
|
|
94470
|
-
const
|
|
94523
|
+
const tool_r4 = ctx.$implicit;
|
|
94471
94524
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
94472
94525
|
i0.ɵɵproperty("ngClass", ctx_r1.getToolChipClasses());
|
|
94473
94526
|
i0.ɵɵadvance();
|
|
94474
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
94527
|
+
i0.ɵɵtextInterpolate1(" ", tool_r4, " ");
|
|
94475
94528
|
} }
|
|
94476
|
-
function
|
|
94477
|
-
i0.ɵɵelementStart(0, "div",
|
|
94529
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
94530
|
+
i0.ɵɵelementStart(0, "div", 43)(1, "div", 48)(2, "span", 49);
|
|
94478
94531
|
i0.ɵɵtext(3, "Marketing Tools:");
|
|
94479
94532
|
i0.ɵɵelementEnd();
|
|
94480
|
-
i0.ɵɵelementStart(4, "div",
|
|
94481
|
-
i0.ɵɵrepeaterCreate(5,
|
|
94533
|
+
i0.ɵɵelementStart(4, "div", 50);
|
|
94534
|
+
i0.ɵɵrepeaterCreate(5, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_12_For_6_Template, 2, 2, "span", 51, i0.ɵɵrepeaterTrackByIdentity);
|
|
94482
94535
|
i0.ɵɵelementEnd()()();
|
|
94483
94536
|
} if (rf & 2) {
|
|
94484
|
-
const
|
|
94537
|
+
const focusArea_r3 = i0.ɵɵnextContext().$implicit;
|
|
94485
94538
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
94486
94539
|
i0.ɵɵadvance(2);
|
|
94487
94540
|
i0.ɵɵproperty("ngClass", ctx_r1.getToolsLabelClasses());
|
|
94488
94541
|
i0.ɵɵadvance(3);
|
|
94489
|
-
i0.ɵɵrepeater(
|
|
94542
|
+
i0.ɵɵrepeater(focusArea_r3.tools);
|
|
94490
94543
|
} }
|
|
94491
|
-
function
|
|
94492
|
-
i0.ɵɵelementStart(0, "div",
|
|
94493
|
-
i0.ɵɵelement(2, "div",
|
|
94494
|
-
i0.ɵɵelementStart(3, "span",
|
|
94544
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_13_Template(rf, ctx) { if (rf & 1) {
|
|
94545
|
+
i0.ɵɵelementStart(0, "div", 44)(1, "div", 48);
|
|
94546
|
+
i0.ɵɵelement(2, "div", 52);
|
|
94547
|
+
i0.ɵɵelementStart(3, "span", 53);
|
|
94495
94548
|
i0.ɵɵtext(4);
|
|
94496
94549
|
i0.ɵɵelementEnd()();
|
|
94497
|
-
i0.ɵɵelementStart(5, "div",
|
|
94498
|
-
i0.ɵɵelement(6, "div",
|
|
94550
|
+
i0.ɵɵelementStart(5, "div", 54);
|
|
94551
|
+
i0.ɵɵelement(6, "div", 55);
|
|
94499
94552
|
i0.ɵɵelementEnd();
|
|
94500
|
-
i0.ɵɵelementStart(7, "div",
|
|
94553
|
+
i0.ɵɵelementStart(7, "div", 56);
|
|
94501
94554
|
i0.ɵɵtext(8);
|
|
94502
94555
|
i0.ɵɵelementEnd()();
|
|
94503
94556
|
} if (rf & 2) {
|
|
94504
|
-
const
|
|
94557
|
+
const focusArea_r3 = i0.ɵɵnextContext().$implicit;
|
|
94505
94558
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
94506
94559
|
i0.ɵɵadvance(3);
|
|
94507
94560
|
i0.ɵɵclassMap(ctx_r1.isLightMode() ? "text-blue-600" : "text-blue-400");
|
|
94508
94561
|
i0.ɵɵadvance();
|
|
94509
|
-
i0.ɵɵtextInterpolate1(" ", (
|
|
94562
|
+
i0.ɵɵtextInterpolate1(" ", (focusArea_r3.itemStatus == null ? null : focusArea_r3.itemStatus.message) || "Generating Profile...", " ");
|
|
94510
94563
|
i0.ɵɵadvance();
|
|
94511
94564
|
i0.ɵɵclassMap(ctx_r1.isLightMode() ? "bg-slate-200" : "bg-slate-700");
|
|
94512
94565
|
i0.ɵɵadvance();
|
|
94513
|
-
i0.ɵɵstyleProp("width", (
|
|
94566
|
+
i0.ɵɵstyleProp("width", (focusArea_r3.itemStatus == null ? null : focusArea_r3.itemStatus.percentageComplete) ?? 0, "%");
|
|
94514
94567
|
i0.ɵɵadvance();
|
|
94515
94568
|
i0.ɵɵclassMap(ctx_r1.isLightMode() ? "text-slate-500" : "text-slate-400");
|
|
94516
94569
|
i0.ɵɵadvance();
|
|
94517
|
-
i0.ɵɵtextInterpolate1(" ", (
|
|
94570
|
+
i0.ɵɵtextInterpolate1(" ", (focusArea_r3.itemStatus == null ? null : focusArea_r3.itemStatus.percentageComplete) ?? 0, "% complete ");
|
|
94518
94571
|
} }
|
|
94519
|
-
function
|
|
94520
|
-
i0.ɵɵelementStart(0, "div",
|
|
94521
|
-
i0.ɵɵelement(1, "div",
|
|
94522
|
-
i0.ɵɵelementStart(2, "span",
|
|
94572
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
94573
|
+
i0.ɵɵelementStart(0, "div", 45);
|
|
94574
|
+
i0.ɵɵelement(1, "div", 57);
|
|
94575
|
+
i0.ɵɵelementStart(2, "span", 58);
|
|
94523
94576
|
i0.ɵɵtext(3, "Profile Generation Pending");
|
|
94524
94577
|
i0.ɵɵelementEnd()();
|
|
94525
94578
|
} }
|
|
94526
|
-
function
|
|
94527
|
-
i0.ɵɵelementStart(0, "div",
|
|
94579
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_15_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
94580
|
+
i0.ɵɵelementStart(0, "div", 60);
|
|
94528
94581
|
i0.ɵɵnamespaceSVG();
|
|
94529
|
-
i0.ɵɵelementStart(1, "svg",
|
|
94530
|
-
i0.ɵɵelement(2, "path",
|
|
94582
|
+
i0.ɵɵelementStart(1, "svg", 63);
|
|
94583
|
+
i0.ɵɵelement(2, "path", 29);
|
|
94531
94584
|
i0.ɵɵelementEnd();
|
|
94532
94585
|
i0.ɵɵtext(3, " Complete ");
|
|
94533
94586
|
i0.ɵɵelementEnd();
|
|
94534
94587
|
} }
|
|
94535
|
-
function
|
|
94536
|
-
i0.ɵɵelementStart(0, "div",
|
|
94588
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_15_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
94589
|
+
i0.ɵɵelementStart(0, "div", 61);
|
|
94537
94590
|
i0.ɵɵnamespaceSVG();
|
|
94538
|
-
i0.ɵɵelementStart(1, "svg",
|
|
94539
|
-
i0.ɵɵelement(2, "path",
|
|
94591
|
+
i0.ɵɵelementStart(1, "svg", 63);
|
|
94592
|
+
i0.ɵɵelement(2, "path", 64);
|
|
94540
94593
|
i0.ɵɵelementEnd();
|
|
94541
94594
|
i0.ɵɵtext(3, " In Progress ");
|
|
94542
94595
|
i0.ɵɵelementEnd();
|
|
94543
94596
|
} }
|
|
94544
|
-
function
|
|
94545
|
-
i0.ɵɵelementStart(0, "div",
|
|
94597
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_15_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
94598
|
+
i0.ɵɵelementStart(0, "div", 62);
|
|
94546
94599
|
i0.ɵɵnamespaceSVG();
|
|
94547
|
-
i0.ɵɵelementStart(1, "svg",
|
|
94548
|
-
i0.ɵɵelement(2, "path",
|
|
94600
|
+
i0.ɵɵelementStart(1, "svg", 63);
|
|
94601
|
+
i0.ɵɵelement(2, "path", 65);
|
|
94549
94602
|
i0.ɵɵelementEnd();
|
|
94550
94603
|
i0.ɵɵtext(3, " Not Started ");
|
|
94551
94604
|
i0.ɵɵelementEnd();
|
|
94552
94605
|
} }
|
|
94553
|
-
function
|
|
94554
|
-
i0.ɵɵelementStart(0, "div",
|
|
94606
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_15_Template(rf, ctx) { if (rf & 1) {
|
|
94607
|
+
i0.ɵɵelementStart(0, "div", 46)(1, "div", 59)(2, "span");
|
|
94555
94608
|
i0.ɵɵtext(3, "Progress");
|
|
94556
94609
|
i0.ɵɵelementEnd();
|
|
94557
94610
|
i0.ɵɵelementStart(4, "span");
|
|
94558
94611
|
i0.ɵɵtext(5);
|
|
94559
94612
|
i0.ɵɵelementEnd()();
|
|
94560
94613
|
i0.ɵɵelementStart(6, "div");
|
|
94561
|
-
i0.ɵɵelement(7, "div",
|
|
94614
|
+
i0.ɵɵelement(7, "div", 55);
|
|
94562
94615
|
i0.ɵɵelementEnd();
|
|
94563
|
-
i0.ɵɵconditionalCreate(8,
|
|
94616
|
+
i0.ɵɵconditionalCreate(8, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_15_Conditional_8_Template, 4, 0, "div", 60)(9, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_15_Conditional_9_Template, 4, 0, "div", 61)(10, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_15_Conditional_10_Template, 4, 0, "div", 62);
|
|
94564
94617
|
i0.ɵɵelementEnd();
|
|
94565
94618
|
} if (rf & 2) {
|
|
94566
|
-
const
|
|
94619
|
+
const focusArea_r3 = i0.ɵɵnextContext().$implicit;
|
|
94567
94620
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
94568
94621
|
i0.ɵɵadvance(2);
|
|
94569
94622
|
i0.ɵɵclassMap(ctx_r1.getLabelClasses());
|
|
94570
94623
|
i0.ɵɵadvance(2);
|
|
94571
94624
|
i0.ɵɵclassMap(ctx_r1.getValueClasses());
|
|
94572
94625
|
i0.ɵɵadvance();
|
|
94573
|
-
i0.ɵɵtextInterpolate2(" ",
|
|
94626
|
+
i0.ɵɵtextInterpolate2(" ", focusArea_r3.questionsAnswered, " / ", focusArea_r3.totalQuestions, " ");
|
|
94574
94627
|
i0.ɵɵadvance();
|
|
94575
94628
|
i0.ɵɵclassMap(ctx_r1.getProgressBarContainerClasses());
|
|
94576
94629
|
i0.ɵɵadvance();
|
|
94577
|
-
i0.ɵɵstyleProp("width",
|
|
94630
|
+
i0.ɵɵstyleProp("width", focusArea_r3.progressPercent, "%");
|
|
94578
94631
|
i0.ɵɵadvance();
|
|
94579
|
-
i0.ɵɵconditional(
|
|
94632
|
+
i0.ɵɵconditional(focusArea_r3.status === "complete" ? 8 : focusArea_r3.status === "in-progress" ? 9 : 10);
|
|
94580
94633
|
} }
|
|
94581
|
-
function
|
|
94582
|
-
i0.ɵɵ
|
|
94583
|
-
|
|
94634
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_16_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
94635
|
+
i0.ɵɵtext(0, " View Details ");
|
|
94636
|
+
} }
|
|
94637
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_16_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
94638
|
+
i0.ɵɵtext(0, " All Questions Answered ");
|
|
94639
|
+
} }
|
|
94640
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_16_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
94641
|
+
i0.ɵɵtext(0, " Continue Answering Questions ");
|
|
94642
|
+
} }
|
|
94643
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_16_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
94644
|
+
i0.ɵɵtext(0, " Start Answering Questions ");
|
|
94645
|
+
} }
|
|
94646
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_16_Template(rf, ctx) { if (rf & 1) {
|
|
94647
|
+
const _r5 = i0.ɵɵgetCurrentView();
|
|
94648
|
+
i0.ɵɵelementStart(0, "div", 66);
|
|
94649
|
+
i0.ɵɵlistener("click", function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_16_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r5); const focusArea_r3 = i0.ɵɵnextContext().$implicit; const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleFooterClick(focusArea_r3.profileFocusArea)); });
|
|
94650
|
+
i0.ɵɵelementStart(1, "div", 67)(2, "span", 68);
|
|
94651
|
+
i0.ɵɵconditionalCreate(3, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_16_Conditional_3_Template, 1, 0)(4, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_16_Conditional_4_Template, 1, 0)(5, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_16_Conditional_5_Template, 1, 0)(6, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_16_Conditional_6_Template, 1, 0);
|
|
94584
94652
|
i0.ɵɵelementEnd();
|
|
94585
94653
|
i0.ɵɵnamespaceSVG();
|
|
94586
|
-
i0.ɵɵelementStart(
|
|
94587
|
-
i0.ɵɵelement(
|
|
94654
|
+
i0.ɵɵelementStart(7, "svg", 69);
|
|
94655
|
+
i0.ɵɵelement(8, "path", 70);
|
|
94588
94656
|
i0.ɵɵelementEnd()()();
|
|
94589
94657
|
} if (rf & 2) {
|
|
94590
|
-
const
|
|
94658
|
+
const focusArea_r3 = i0.ɵɵnextContext().$implicit;
|
|
94659
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
94591
94660
|
i0.ɵɵclassMap(ctx_r1.getCardFooterClasses());
|
|
94661
|
+
i0.ɵɵadvance(3);
|
|
94662
|
+
i0.ɵɵconditional(focusArea_r3.hasAnalysis ? 3 : focusArea_r3.status === "complete" ? 4 : focusArea_r3.status === "in-progress" ? 5 : 6);
|
|
94592
94663
|
} }
|
|
94593
|
-
function
|
|
94594
|
-
|
|
94595
|
-
i0.ɵɵelementStart(0, "div", 31);
|
|
94596
|
-
i0.ɵɵlistener("click", function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Template_div_click_0_listener() { const focusArea_r4 = i0.ɵɵrestoreView(_r3).$implicit; const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleFocusAreaClick(focusArea_r4.domain)); });
|
|
94597
|
-
i0.ɵɵelementStart(1, "div", 32)(2, "div", 33)(3, "div", 34);
|
|
94664
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Template(rf, ctx) { if (rf & 1) {
|
|
94665
|
+
i0.ɵɵelementStart(0, "div")(1, "div", 37)(2, "div", 38)(3, "div", 39);
|
|
94598
94666
|
i0.ɵɵtext(4);
|
|
94599
94667
|
i0.ɵɵelementEnd();
|
|
94600
|
-
i0.ɵɵelementStart(5, "div",
|
|
94601
|
-
i0.ɵɵconditionalCreate(6,
|
|
94602
|
-
i0.ɵɵconditionalCreate(7,
|
|
94668
|
+
i0.ɵɵelementStart(5, "div", 40);
|
|
94669
|
+
i0.ɵɵconditionalCreate(6, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_6_Template, 2, 2, "div", 41);
|
|
94670
|
+
i0.ɵɵconditionalCreate(7, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_7_Template, 2, 0, "div", 42);
|
|
94603
94671
|
i0.ɵɵelementEnd()();
|
|
94604
94672
|
i0.ɵɵelementStart(8, "h3");
|
|
94605
94673
|
i0.ɵɵtext(9);
|
|
@@ -94607,68 +94675,68 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Template(rf,
|
|
|
94607
94675
|
i0.ɵɵelementStart(10, "p");
|
|
94608
94676
|
i0.ɵɵtext(11);
|
|
94609
94677
|
i0.ɵɵelementEnd();
|
|
94610
|
-
i0.ɵɵconditionalCreate(12,
|
|
94611
|
-
i0.ɵɵconditionalCreate(13,
|
|
94678
|
+
i0.ɵɵconditionalCreate(12, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_12_Template, 7, 1, "div", 43);
|
|
94679
|
+
i0.ɵɵconditionalCreate(13, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_13_Template, 9, 10, "div", 44)(14, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_14_Template, 4, 0, "div", 45)(15, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_15_Template, 11, 11, "div", 46);
|
|
94612
94680
|
i0.ɵɵelementEnd();
|
|
94613
|
-
i0.ɵɵconditionalCreate(16,
|
|
94681
|
+
i0.ɵɵconditionalCreate(16, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Conditional_16_Template, 9, 3, "div", 47);
|
|
94614
94682
|
i0.ɵɵelementEnd();
|
|
94615
94683
|
} if (rf & 2) {
|
|
94616
|
-
const
|
|
94684
|
+
const focusArea_r3 = ctx.$implicit;
|
|
94617
94685
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
94618
94686
|
i0.ɵɵclassMap(ctx_r1.getCardClasses());
|
|
94619
94687
|
i0.ɵɵadvance(4);
|
|
94620
|
-
i0.ɵɵtextInterpolate(
|
|
94688
|
+
i0.ɵɵtextInterpolate(focusArea_r3.icon);
|
|
94621
94689
|
i0.ɵɵadvance(2);
|
|
94622
|
-
i0.ɵɵconditional(
|
|
94690
|
+
i0.ɵɵconditional(focusArea_r3.engagementStatus ? 6 : -1);
|
|
94623
94691
|
i0.ɵɵadvance();
|
|
94624
|
-
i0.ɵɵconditional(
|
|
94692
|
+
i0.ɵɵconditional(focusArea_r3.hasAnalysis ? 7 : -1);
|
|
94625
94693
|
i0.ɵɵadvance();
|
|
94626
94694
|
i0.ɵɵclassMap(ctx_r1.getTitleClasses());
|
|
94627
94695
|
i0.ɵɵadvance();
|
|
94628
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
94696
|
+
i0.ɵɵtextInterpolate1(" ", focusArea_r3.title, " ");
|
|
94629
94697
|
i0.ɵɵadvance();
|
|
94630
94698
|
i0.ɵɵclassMap(ctx_r1.getDescriptionClasses());
|
|
94631
94699
|
i0.ɵɵadvance();
|
|
94632
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
94700
|
+
i0.ɵɵtextInterpolate1(" ", focusArea_r3.description, " ");
|
|
94633
94701
|
i0.ɵɵadvance();
|
|
94634
|
-
i0.ɵɵconditional(
|
|
94702
|
+
i0.ɵɵconditional(focusArea_r3.engagementStatus === ctx_r1.FocusAreaDetailStatusEnum.ENGAGED && focusArea_r3.tools.length > 0 ? 12 : -1);
|
|
94635
94703
|
i0.ɵɵadvance();
|
|
94636
|
-
i0.ɵɵconditional(
|
|
94704
|
+
i0.ɵɵconditional(focusArea_r3.selfContentStatus !== null && focusArea_r3.selfContentStatus !== ctx_r1.AiDynamicContentStatusEnum.GENERATED && focusArea_r3.engagementStatus !== ctx_r1.FocusAreaDetailStatusEnum.NOT_ENGAGED_AND_NO_INTEREST ? 13 : focusArea_r3.selfContentStatus === null && focusArea_r3.engagementStatus !== ctx_r1.FocusAreaDetailStatusEnum.NOT_ENGAGED_AND_NO_INTEREST ? 14 : focusArea_r3.selfContentStatus === ctx_r1.AiDynamicContentStatusEnum.GENERATED || focusArea_r3.status !== "pending" ? 15 : -1);
|
|
94637
94705
|
i0.ɵɵadvance(3);
|
|
94638
|
-
i0.ɵɵconditional(
|
|
94706
|
+
i0.ɵɵconditional(focusArea_r3.canViewDetails && focusArea_r3.profileFocusArea ? 16 : -1);
|
|
94639
94707
|
} }
|
|
94640
|
-
function
|
|
94641
|
-
i0.ɵɵelementStart(0, "div",
|
|
94708
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_66_For_8_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
94709
|
+
i0.ɵɵelementStart(0, "div", 41);
|
|
94642
94710
|
i0.ɵɵtext(1);
|
|
94643
94711
|
i0.ɵɵelementEnd();
|
|
94644
94712
|
} if (rf & 2) {
|
|
94645
|
-
const
|
|
94713
|
+
const focusArea_r6 = i0.ɵɵnextContext().$implicit;
|
|
94646
94714
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
94647
|
-
i0.ɵɵproperty("ngClass", ctx_r1.getEngagementBadgeClasses(
|
|
94715
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getEngagementBadgeClasses(focusArea_r6.engagementStatus));
|
|
94648
94716
|
i0.ɵɵadvance();
|
|
94649
|
-
i0.ɵɵtextInterpolate1(" ", ctx_r1.getEngagementStatusLabel(
|
|
94717
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r1.getEngagementStatusLabel(focusArea_r6.engagementStatus), " ");
|
|
94650
94718
|
} }
|
|
94651
|
-
function
|
|
94652
|
-
|
|
94719
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_66_For_8_Conditional_11_Template(rf, ctx) { if (rf & 1) {
|
|
94720
|
+
const _r7 = i0.ɵɵgetCurrentView();
|
|
94721
|
+
i0.ɵɵelementStart(0, "div", 66);
|
|
94722
|
+
i0.ɵɵlistener("click", function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_66_For_8_Conditional_11_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r7); const focusArea_r6 = i0.ɵɵnextContext().$implicit; const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleFooterClick(focusArea_r6.profileFocusArea)); });
|
|
94723
|
+
i0.ɵɵelementStart(1, "div", 67)(2, "span", 68);
|
|
94653
94724
|
i0.ɵɵtext(3, "View Details");
|
|
94654
94725
|
i0.ɵɵelementEnd();
|
|
94655
94726
|
i0.ɵɵnamespaceSVG();
|
|
94656
|
-
i0.ɵɵelementStart(4, "svg",
|
|
94657
|
-
i0.ɵɵelement(5, "path",
|
|
94727
|
+
i0.ɵɵelementStart(4, "svg", 69);
|
|
94728
|
+
i0.ɵɵelement(5, "path", 70);
|
|
94658
94729
|
i0.ɵɵelementEnd()()();
|
|
94659
94730
|
} if (rf & 2) {
|
|
94660
94731
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
94661
94732
|
i0.ɵɵclassMap(ctx_r1.getCardFooterClasses());
|
|
94662
94733
|
} }
|
|
94663
|
-
function
|
|
94664
|
-
|
|
94665
|
-
i0.ɵɵelementStart(0, "div", 31);
|
|
94666
|
-
i0.ɵɵlistener("click", function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_55_For_8_Template_div_click_0_listener() { const focusArea_r7 = i0.ɵɵrestoreView(_r6).$implicit; const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleFocusAreaClick(focusArea_r7.domain)); });
|
|
94667
|
-
i0.ɵɵelementStart(1, "div", 32)(2, "div", 33)(3, "div", 34);
|
|
94734
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_66_For_8_Template(rf, ctx) { if (rf & 1) {
|
|
94735
|
+
i0.ɵɵelementStart(0, "div")(1, "div", 37)(2, "div", 38)(3, "div", 39);
|
|
94668
94736
|
i0.ɵɵtext(4);
|
|
94669
94737
|
i0.ɵɵelementEnd();
|
|
94670
|
-
i0.ɵɵelementStart(5, "div",
|
|
94671
|
-
i0.ɵɵconditionalCreate(6,
|
|
94738
|
+
i0.ɵɵelementStart(5, "div", 40);
|
|
94739
|
+
i0.ɵɵconditionalCreate(6, SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_66_For_8_Conditional_6_Template, 2, 2, "div", 41);
|
|
94672
94740
|
i0.ɵɵelementEnd()();
|
|
94673
94741
|
i0.ɵɵelementStart(7, "h3");
|
|
94674
94742
|
i0.ɵɵtext(8);
|
|
@@ -94676,37 +94744,37 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_55_For_8
|
|
|
94676
94744
|
i0.ɵɵelementStart(9, "p");
|
|
94677
94745
|
i0.ɵɵtext(10);
|
|
94678
94746
|
i0.ɵɵelementEnd()();
|
|
94679
|
-
i0.ɵɵconditionalCreate(11,
|
|
94747
|
+
i0.ɵɵconditionalCreate(11, SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_66_For_8_Conditional_11_Template, 6, 2, "div", 47);
|
|
94680
94748
|
i0.ɵɵelementEnd();
|
|
94681
94749
|
} if (rf & 2) {
|
|
94682
|
-
const
|
|
94750
|
+
const focusArea_r6 = ctx.$implicit;
|
|
94683
94751
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
94684
94752
|
i0.ɵɵclassMap(ctx_r1.getCardClasses());
|
|
94685
94753
|
i0.ɵɵadvance(4);
|
|
94686
|
-
i0.ɵɵtextInterpolate(
|
|
94754
|
+
i0.ɵɵtextInterpolate(focusArea_r6.icon);
|
|
94687
94755
|
i0.ɵɵadvance(2);
|
|
94688
|
-
i0.ɵɵconditional(
|
|
94756
|
+
i0.ɵɵconditional(focusArea_r6.engagementStatus ? 6 : -1);
|
|
94689
94757
|
i0.ɵɵadvance();
|
|
94690
94758
|
i0.ɵɵclassMap(ctx_r1.getTitleClasses());
|
|
94691
94759
|
i0.ɵɵadvance();
|
|
94692
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
94760
|
+
i0.ɵɵtextInterpolate1(" ", focusArea_r6.title, " ");
|
|
94693
94761
|
i0.ɵɵadvance();
|
|
94694
94762
|
i0.ɵɵclassMap(ctx_r1.getDescriptionClasses());
|
|
94695
94763
|
i0.ɵɵadvance();
|
|
94696
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
94764
|
+
i0.ɵɵtextInterpolate1(" ", focusArea_r6.description, " ");
|
|
94697
94765
|
i0.ɵɵadvance();
|
|
94698
|
-
i0.ɵɵconditional(
|
|
94766
|
+
i0.ɵɵconditional(focusArea_r6.canViewDetails && focusArea_r6.profileFocusArea ? 11 : -1);
|
|
94699
94767
|
} }
|
|
94700
|
-
function
|
|
94701
|
-
i0.ɵɵelementStart(0, "div",
|
|
94702
|
-
i0.ɵɵelement(2, "div",
|
|
94703
|
-
i0.ɵɵelementStart(3, "span",
|
|
94768
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_66_Template(rf, ctx) { if (rf & 1) {
|
|
94769
|
+
i0.ɵɵelementStart(0, "div", 35)(1, "div", 71);
|
|
94770
|
+
i0.ɵɵelement(2, "div", 72);
|
|
94771
|
+
i0.ɵɵelementStart(3, "span", 73);
|
|
94704
94772
|
i0.ɵɵtext(4, "Not Interested");
|
|
94705
94773
|
i0.ɵɵelementEnd();
|
|
94706
|
-
i0.ɵɵelement(5, "div",
|
|
94774
|
+
i0.ɵɵelement(5, "div", 72);
|
|
94707
94775
|
i0.ɵɵelementEnd();
|
|
94708
|
-
i0.ɵɵelementStart(6, "div",
|
|
94709
|
-
i0.ɵɵrepeaterCreate(7,
|
|
94776
|
+
i0.ɵɵelementStart(6, "div", 74);
|
|
94777
|
+
i0.ɵɵrepeaterCreate(7, SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_66_For_8_Template, 12, 11, "div", 34, _forTrack0);
|
|
94710
94778
|
i0.ɵɵelementEnd()();
|
|
94711
94779
|
} if (rf & 2) {
|
|
94712
94780
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -94719,10 +94787,10 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_55_Templ
|
|
|
94719
94787
|
i0.ɵɵadvance(2);
|
|
94720
94788
|
i0.ɵɵrepeater(ctx_r1.notInterestedFocusAreaCards());
|
|
94721
94789
|
} }
|
|
94722
|
-
function
|
|
94790
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_67_Template(rf, ctx) { if (rf & 1) {
|
|
94723
94791
|
const _r8 = i0.ɵɵgetCurrentView();
|
|
94724
|
-
i0.ɵɵelementStart(0, "symphiq-search-modal",
|
|
94725
|
-
i0.ɵɵlistener("closeModal", function
|
|
94792
|
+
i0.ɵɵelementStart(0, "symphiq-search-modal", 75);
|
|
94793
|
+
i0.ɵɵlistener("closeModal", function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_67_Template_symphiq_search_modal_closeModal_0_listener() { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleCloseSearchModal()); });
|
|
94726
94794
|
i0.ɵɵelementEnd();
|
|
94727
94795
|
} }
|
|
94728
94796
|
class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
@@ -94750,6 +94818,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
94750
94818
|
this.displayMode = input(DisplayModeEnum.SIMPLIFIED, ...(ngDevMode ? [{ debugName: "displayMode" }] : []));
|
|
94751
94819
|
this.currentStepId = input(JourneyStepIdEnum.FOCUS_AREA_ANALYSIS, ...(ngDevMode ? [{ debugName: "currentStepId" }] : []));
|
|
94752
94820
|
this.focusAreaClicked = output();
|
|
94821
|
+
this.focusAreaFooterClicked = output();
|
|
94753
94822
|
this.stepClick = output();
|
|
94754
94823
|
this.nextStepClick = output();
|
|
94755
94824
|
this.answerFocusAreaProfileQuestions = output();
|
|
@@ -94834,6 +94903,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
94834
94903
|
let canViewDetails = false;
|
|
94835
94904
|
let selfContentStatus = null;
|
|
94836
94905
|
let itemStatus = null;
|
|
94906
|
+
let profileFocusArea = null;
|
|
94837
94907
|
if (isDemo) {
|
|
94838
94908
|
const mockData = mockProgressData[domain];
|
|
94839
94909
|
questionsAnswered = mockData.answered;
|
|
@@ -94852,7 +94922,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
94852
94922
|
}
|
|
94853
94923
|
}
|
|
94854
94924
|
else {
|
|
94855
|
-
|
|
94925
|
+
profileFocusArea = profileFocusAreasMap.get(domain) ?? null;
|
|
94856
94926
|
const profileAnalysis = profileAnalysesMap.get(domain);
|
|
94857
94927
|
hasAnalysis = !!profileAnalysis;
|
|
94858
94928
|
if (profileFocusArea) {
|
|
@@ -94893,7 +94963,8 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
94893
94963
|
tools,
|
|
94894
94964
|
canViewDetails,
|
|
94895
94965
|
selfContentStatus,
|
|
94896
|
-
itemStatus
|
|
94966
|
+
itemStatus,
|
|
94967
|
+
profileFocusArea
|
|
94897
94968
|
};
|
|
94898
94969
|
});
|
|
94899
94970
|
}, ...(ngDevMode ? [{ debugName: "focusAreaCards" }] : []));
|
|
@@ -94917,6 +94988,9 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
94917
94988
|
handleFocusAreaClick(domain) {
|
|
94918
94989
|
this.focusAreaClicked.emit(domain);
|
|
94919
94990
|
}
|
|
94991
|
+
handleFooterClick(profileFocusArea) {
|
|
94992
|
+
this.focusAreaFooterClicked.emit(profileFocusArea);
|
|
94993
|
+
}
|
|
94920
94994
|
handleSearchClick() {
|
|
94921
94995
|
this.showSearchModal.set(true);
|
|
94922
94996
|
}
|
|
@@ -94929,7 +95003,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
94929
95003
|
: 'bg-gradient-to-br from-slate-900 to-slate-800';
|
|
94930
95004
|
}
|
|
94931
95005
|
getCardClasses() {
|
|
94932
|
-
return 'group bg-white dark:bg-slate-800 rounded-xl shadow-md hover:shadow-
|
|
95006
|
+
return 'group flex flex-col h-full bg-white dark:bg-slate-800 rounded-xl shadow-md hover:shadow-lg transition-all duration-300 overflow-hidden border border-slate-200 dark:border-slate-700';
|
|
94933
95007
|
}
|
|
94934
95008
|
getTitleClasses() {
|
|
94935
95009
|
return 'text-xl font-bold text-slate-900 dark:text-white mb-2 group-hover:text-blue-600 dark:group-hover:text-blue-400 transition-colors';
|
|
@@ -94989,6 +95063,26 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
94989
95063
|
? 'text-slate-700'
|
|
94990
95064
|
: 'text-slate-300';
|
|
94991
95065
|
}
|
|
95066
|
+
getWelcomeBannerNextStepsClasses() {
|
|
95067
|
+
return this.isLightMode()
|
|
95068
|
+
? 'bg-amber-50/50 border-amber-200'
|
|
95069
|
+
: 'bg-amber-500/10 border-amber-500/30';
|
|
95070
|
+
}
|
|
95071
|
+
getWelcomeBannerNextStepsIconClasses() {
|
|
95072
|
+
return this.isLightMode()
|
|
95073
|
+
? 'text-amber-600'
|
|
95074
|
+
: 'text-amber-400';
|
|
95075
|
+
}
|
|
95076
|
+
getWelcomeBannerNextStepsTitleClasses() {
|
|
95077
|
+
return this.isLightMode()
|
|
95078
|
+
? 'text-slate-900'
|
|
95079
|
+
: 'text-white';
|
|
95080
|
+
}
|
|
95081
|
+
getWelcomeBannerNextStepsTextClasses() {
|
|
95082
|
+
return this.isLightMode()
|
|
95083
|
+
? 'text-slate-700'
|
|
95084
|
+
: 'text-slate-300';
|
|
95085
|
+
}
|
|
94992
95086
|
getIconForDomain(domain) {
|
|
94993
95087
|
const iconMap = {
|
|
94994
95088
|
[FocusAreaDomainEnum.AFFILIATE_AND_REFERRAL_PROGRAMS]: '🤝',
|
|
@@ -95058,7 +95152,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95058
95152
|
static { this.ɵfac = function SymphiqProfileFocusAreasAnalysesDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqProfileFocusAreasAnalysesDashboardComponent)(); }; }
|
|
95059
95153
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqProfileFocusAreasAnalysesDashboardComponent, selectors: [["symphiq-profile-focus-areas-analyses-dashboard"]], hostBindings: function SymphiqProfileFocusAreasAnalysesDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
95060
95154
|
i0.ɵɵlistener("scroll", function SymphiqProfileFocusAreasAnalysesDashboardComponent_scroll_HostBindingHandler($event) { return ctx.onScroll($event); }, i0.ɵɵresolveWindow);
|
|
95061
|
-
} }, inputs: { requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], embedded: [1, "embedded"], profileAnalyses: [1, "profileAnalyses"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], focusAreaDetails: [1, "focusAreaDetails"], account: [1, "account"], profileFocusAreas: [1, "profileFocusAreas"], itemStatusesProfileFocusArea: [1, "itemStatusesProfileFocusArea"], itemStatusesProfileAnalysis: [1, "itemStatusesProfileAnalysis"], isOnboarded: [1, "isOnboarded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], users: [1, "users"], isLoading: [1, "isLoading"], forDemo: [1, "forDemo"], currentUser: [1, "currentUser"], maxAccessibleStepId: [1, "maxAccessibleStepId"], viewMode: [1, "viewMode"], displayMode: [1, "displayMode"], currentStepId: [1, "currentStepId"] }, outputs: { focusAreaClicked: "focusAreaClicked", stepClick: "stepClick", nextStepClick: "nextStepClick", answerFocusAreaProfileQuestions: "answerFocusAreaProfileQuestions", continueFocusAreaProfileQuestions: "continueFocusAreaProfileQuestions", profileQuestionAnswerSave: "profileQuestionAnswerSave", focusAreaProfileAdminAnswerAction: "focusAreaProfileAdminAnswerAction" }, decls:
|
|
95155
|
+
} }, inputs: { requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], embedded: [1, "embedded"], profileAnalyses: [1, "profileAnalyses"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], focusAreaDetails: [1, "focusAreaDetails"], account: [1, "account"], profileFocusAreas: [1, "profileFocusAreas"], itemStatusesProfileFocusArea: [1, "itemStatusesProfileFocusArea"], itemStatusesProfileAnalysis: [1, "itemStatusesProfileAnalysis"], isOnboarded: [1, "isOnboarded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], users: [1, "users"], isLoading: [1, "isLoading"], forDemo: [1, "forDemo"], currentUser: [1, "currentUser"], maxAccessibleStepId: [1, "maxAccessibleStepId"], viewMode: [1, "viewMode"], displayMode: [1, "displayMode"], currentStepId: [1, "currentStepId"] }, outputs: { focusAreaClicked: "focusAreaClicked", focusAreaFooterClicked: "focusAreaFooterClicked", stepClick: "stepClick", nextStepClick: "nextStepClick", answerFocusAreaProfileQuestions: "answerFocusAreaProfileQuestions", continueFocusAreaProfileQuestions: "continueFocusAreaProfileQuestions", profileQuestionAnswerSave: "profileQuestionAnswerSave", focusAreaProfileAdminAnswerAction: "focusAreaProfileAdminAnswerAction" }, decls: 68, vars: 29, consts: [[1, "min-h-screen", "relative"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "fixed", "top-0", "left-0", "right-0", "h-1", "z-[60]", "bg-slate-200/30"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "relative", "z-[51]"], [3, "title", "subtitle", "viewMode", "showControls"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "container", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8", "md:py-12", "relative", "z-10"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", "mb-8", 3, "ngClass"], [1, "px-8", "py-8"], [1, "flex", "items-start", "gap-6"], [1, "flex-shrink-0", "w-16", "h-16", "rounded-2xl", "flex", "items-center", "justify-center", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-8", "h-8"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"], [1, "flex-1"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-3", 3, "ngClass"], [1, "grid", "grid-cols-1", "lg:grid-cols-3", "gap-6", "mb-6"], [1, "lg:col-span-2", "space-y-3"], [1, "text-base", "leading-relaxed", 3, "ngClass"], [1, "font-semibold"], [1, "lg:col-span-1"], ["currentStepId", "focus-areas", 3, "viewMode", "focusAreaDetails"], [1, "mt-6", "p-5", "rounded-xl", "border-l-4", "flex", "items-start", "gap-4", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", "flex-shrink-0", "mt-0.5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "font-bold", "text-lg", "mb-2", 3, "ngClass"], [1, "space-y-2", "text-sm", 3, "ngClass"], [1, "flex", "items-start", "gap-2"], ["fill", "currentColor", "viewBox", "0 0 20 20", 1, "w-5", "h-5", "flex-shrink-0", "mt-0.5"], ["fill-rule", "evenodd", "d", "M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z", "clip-rule", "evenodd"], [1, "mt-6", "p-5", "rounded-xl", "border", "flex", "items-start", "gap-4", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 7l5 5m0 0l-5 5m5-5H6"], [1, "text-sm", "leading-relaxed", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-6"], [3, "class"], [1, "mt-12"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "p-6", "flex-1"], [1, "flex", "items-start", "justify-between", "mb-4"], [1, "text-4xl"], [1, "flex", "flex-col", "items-end", "gap-2"], [3, "ngClass"], [1, "px-3", "py-1", "bg-green-100", "dark:bg-green-900/30", "text-green-700", "dark:text-green-400", "text-xs", "font-semibold", "rounded-full"], [1, "mt-3", "mb-2"], [1, "w-full", "space-y-2", "py-2"], [1, "flex", "items-center", "gap-2", "py-2"], [1, "space-y-2"], [1, "mt-auto", "cursor-pointer", "hover:bg-slate-100", "dark:hover:bg-slate-700/50", "transition-colors", 3, "class"], [1, "flex", "items-center", "gap-2"], [1, "text-xs", "font-medium", 3, "ngClass"], [1, "flex", "flex-wrap", "gap-1.5"], [1, "px-2", "py-0.5", "rounded", "text-xs", 3, "ngClass"], [1, "animate-spin", "w-4", "h-4", "border-2", "border-blue-500/30", "border-t-blue-500", "rounded-full"], [1, "text-xs", "font-medium"], [1, "w-full", "h-2", "rounded-full"], [1, "h-full", "bg-gradient-to-r", "from-blue-500", "to-cyan-500", "rounded-full", "transition-all", "duration-500"], [1, "text-xs", "tabular-nums"], [1, "animate-spin", "w-4", "h-4", "border-2", "border-amber-500/30", "border-t-amber-500", "rounded-full"], [1, "text-xs", "text-amber-600", "dark:text-amber-400", "font-medium"], [1, "flex", "items-center", "justify-between", "text-sm"], [1, "flex", "items-center", "gap-1", "text-xs", "text-green-600", "dark:text-green-400", "font-medium"], [1, "flex", "items-center", "gap-1", "text-xs", "text-blue-600", "dark:text-blue-400", "font-medium"], [1, "flex", "items-center", "gap-1", "text-xs", "text-slate-500", "dark:text-slate-400", "font-medium"], ["fill", "currentColor", "viewBox", "0 0 20 20", 1, "w-4", "h-4"], ["fill-rule", "evenodd", "d", "M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z", "clip-rule", "evenodd"], ["fill-rule", "evenodd", "d", "M10 18a8 8 0 100-16 8 8 0 000 16zM9.555 7.168A1 1 0 008 8v4a1 1 0 001.555.832l3-2a1 1 0 000-1.664l-3-2z", "clip-rule", "evenodd"], [1, "mt-auto", "cursor-pointer", "hover:bg-slate-100", "dark:hover:bg-slate-700/50", "transition-colors", 3, "click"], [1, "flex", "items-center", "justify-between"], [1, "text-sm", "font-medium", "text-slate-600", "dark:text-slate-400"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "text-slate-400", "dark:text-slate-500", "hover:text-blue-500", "dark:hover:text-blue-400", "hover:translate-x-1", "transition-all"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"], [1, "flex", "items-center", "gap-4", "mb-6"], [1, "flex-1", "h-px", 3, "ngClass"], [1, "text-sm", "font-medium", "px-3", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-6", "opacity-60"], [3, "closeModal"]], template: function SymphiqProfileFocusAreasAnalysesDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
95062
95156
|
i0.ɵɵelementStart(0, "div", 0);
|
|
95063
95157
|
i0.ɵɵelement(1, "div", 1);
|
|
95064
95158
|
i0.ɵɵelementStart(2, "div", 2);
|
|
@@ -95076,62 +95170,77 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95076
95170
|
i0.ɵɵelementStart(14, "div", 14)(15, "h2", 15);
|
|
95077
95171
|
i0.ɵɵtext(16, " Welcome to Your Focus Area Analyses ");
|
|
95078
95172
|
i0.ɵɵelementEnd();
|
|
95079
|
-
i0.ɵɵelementStart(17, "div", 16)(18, "
|
|
95080
|
-
i0.ɵɵtext(
|
|
95173
|
+
i0.ɵɵelementStart(17, "div", 16)(18, "div", 17)(19, "p", 18);
|
|
95174
|
+
i0.ɵɵtext(20, " Focus Areas represent the marketing domains where your business operates\u2014from SEO and email marketing to paid media and customer retention. Each focus area contains tailored questions about your current tools, tactics, and capabilities, helping Symphiq understand exactly what you're doing today and where you want to grow. ");
|
|
95081
95175
|
i0.ɵɵelementEnd();
|
|
95082
|
-
i0.ɵɵelementStart(
|
|
95083
|
-
i0.ɵɵtext(
|
|
95176
|
+
i0.ɵɵelementStart(21, "p", 18)(22, "strong", 19);
|
|
95177
|
+
i0.ɵɵtext(23, "Why this matters:");
|
|
95084
95178
|
i0.ɵɵelementEnd();
|
|
95085
|
-
i0.ɵɵtext(
|
|
95179
|
+
i0.ɵɵtext(24, " By completing focus area assessments, Symphiq learns your marketing reality across every channel. This means recommendations are grounded in what you can actually execute with your current team and tools\u2014while also surfacing high-impact opportunities to expand your capabilities. No generic advice, only strategies that fit your specific operational context. ");
|
|
95180
|
+
i0.ɵɵelementEnd()();
|
|
95181
|
+
i0.ɵɵelementStart(25, "div", 20);
|
|
95182
|
+
i0.ɵɵelement(26, "symphiq-confidence-level-card", 21);
|
|
95086
95183
|
i0.ɵɵelementEnd()();
|
|
95087
|
-
i0.ɵɵelementStart(
|
|
95184
|
+
i0.ɵɵelementStart(27, "div", 22);
|
|
95088
95185
|
i0.ɵɵnamespaceSVG();
|
|
95089
|
-
i0.ɵɵelementStart(
|
|
95090
|
-
i0.ɵɵelement(
|
|
95186
|
+
i0.ɵɵelementStart(28, "svg", 23);
|
|
95187
|
+
i0.ɵɵelement(29, "path", 24);
|
|
95091
95188
|
i0.ɵɵelementEnd();
|
|
95092
95189
|
i0.ɵɵnamespaceHTML();
|
|
95093
|
-
i0.ɵɵelementStart(
|
|
95094
|
-
i0.ɵɵtext(
|
|
95190
|
+
i0.ɵɵelementStart(30, "div", 14)(31, "h3", 25);
|
|
95191
|
+
i0.ɵɵtext(32, " What You'll See Below ");
|
|
95095
95192
|
i0.ɵɵelementEnd();
|
|
95096
|
-
i0.ɵɵelementStart(
|
|
95193
|
+
i0.ɵɵelementStart(33, "ul", 26)(34, "li", 27);
|
|
95097
95194
|
i0.ɵɵnamespaceSVG();
|
|
95098
|
-
i0.ɵɵelementStart(
|
|
95099
|
-
i0.ɵɵelement(
|
|
95195
|
+
i0.ɵɵelementStart(35, "svg", 28);
|
|
95196
|
+
i0.ɵɵelement(36, "path", 29);
|
|
95100
95197
|
i0.ɵɵelementEnd();
|
|
95101
95198
|
i0.ɵɵnamespaceHTML();
|
|
95102
|
-
i0.ɵɵelementStart(
|
|
95103
|
-
i0.ɵɵtext(
|
|
95199
|
+
i0.ɵɵelementStart(37, "span")(38, "strong", 19);
|
|
95200
|
+
i0.ɵɵtext(39, "Select Focus Areas");
|
|
95104
95201
|
i0.ɵɵelementEnd();
|
|
95105
|
-
i0.ɵɵtext(
|
|
95202
|
+
i0.ɵɵtext(40, " \u2014 Mark which marketing domains are relevant to your business\u2014no need to complete areas you don't use");
|
|
95106
95203
|
i0.ɵɵelementEnd()();
|
|
95107
|
-
i0.ɵɵelementStart(
|
|
95204
|
+
i0.ɵɵelementStart(41, "li", 27);
|
|
95108
95205
|
i0.ɵɵnamespaceSVG();
|
|
95109
|
-
i0.ɵɵelementStart(
|
|
95110
|
-
i0.ɵɵelement(
|
|
95206
|
+
i0.ɵɵelementStart(42, "svg", 28);
|
|
95207
|
+
i0.ɵɵelement(43, "path", 29);
|
|
95111
95208
|
i0.ɵɵelementEnd();
|
|
95112
95209
|
i0.ɵɵnamespaceHTML();
|
|
95113
|
-
i0.ɵɵelementStart(
|
|
95114
|
-
i0.ɵɵtext(
|
|
95210
|
+
i0.ɵɵelementStart(44, "span")(45, "strong", 19);
|
|
95211
|
+
i0.ɵɵtext(46, "Answer Targeted Questions");
|
|
95115
95212
|
i0.ɵɵelementEnd();
|
|
95116
|
-
i0.ɵɵtext(
|
|
95213
|
+
i0.ɵɵtext(47, " \u2014 Share specific details about your tools, processes, and current performance in each domain");
|
|
95117
95214
|
i0.ɵɵelementEnd()();
|
|
95118
|
-
i0.ɵɵelementStart(
|
|
95215
|
+
i0.ɵɵelementStart(48, "li", 27);
|
|
95216
|
+
i0.ɵɵnamespaceSVG();
|
|
95217
|
+
i0.ɵɵelementStart(49, "svg", 28);
|
|
95218
|
+
i0.ɵɵelement(50, "path", 29);
|
|
95219
|
+
i0.ɵɵelementEnd();
|
|
95220
|
+
i0.ɵɵnamespaceHTML();
|
|
95221
|
+
i0.ɵɵelementStart(51, "span")(52, "strong", 19);
|
|
95222
|
+
i0.ɵɵtext(53, "Unlock Domain Insights");
|
|
95223
|
+
i0.ɵɵelementEnd();
|
|
95224
|
+
i0.ɵɵtext(54, " \u2014 Receive focused analysis and recommendations tailored to each marketing channel's unique context");
|
|
95225
|
+
i0.ɵɵelementEnd()()()()();
|
|
95226
|
+
i0.ɵɵelementStart(55, "div", 30);
|
|
95119
95227
|
i0.ɵɵnamespaceSVG();
|
|
95120
|
-
i0.ɵɵelementStart(
|
|
95121
|
-
i0.ɵɵelement(
|
|
95228
|
+
i0.ɵɵelementStart(56, "svg", 23);
|
|
95229
|
+
i0.ɵɵelement(57, "path", 31);
|
|
95122
95230
|
i0.ɵɵelementEnd();
|
|
95123
95231
|
i0.ɵɵnamespaceHTML();
|
|
95124
|
-
i0.ɵɵelementStart(
|
|
95125
|
-
i0.ɵɵtext(
|
|
95232
|
+
i0.ɵɵelementStart(58, "div", 14)(59, "h3", 25);
|
|
95233
|
+
i0.ɵɵtext(60, " Continue Your Journey ");
|
|
95126
95234
|
i0.ɵɵelementEnd();
|
|
95127
|
-
i0.ɵɵ
|
|
95128
|
-
i0.ɵɵ
|
|
95129
|
-
i0.ɵɵ
|
|
95130
|
-
i0.ɵɵ
|
|
95235
|
+
i0.ɵɵelementStart(61, "p", 32);
|
|
95236
|
+
i0.ɵɵtext(62, " The final step\u2014Metric Analysis\u2014lets you provide funnel-specific context for each conversion point. This granular knowledge ensures recommendations address the precise bottlenecks in your customer journey, creating a complete picture from top-of-funnel awareness to revenue. ");
|
|
95237
|
+
i0.ɵɵelementEnd()()()()()()();
|
|
95238
|
+
i0.ɵɵelementStart(63, "div", 33);
|
|
95239
|
+
i0.ɵɵrepeaterCreate(64, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_65_Template, 17, 14, "div", 34, _forTrack0);
|
|
95131
95240
|
i0.ɵɵelementEnd();
|
|
95132
|
-
i0.ɵɵconditionalCreate(
|
|
95241
|
+
i0.ɵɵconditionalCreate(66, SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_66_Template, 9, 3, "div", 35);
|
|
95133
95242
|
i0.ɵɵelementEnd()();
|
|
95134
|
-
i0.ɵɵconditionalCreate(
|
|
95243
|
+
i0.ɵɵconditionalCreate(67, SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_67_Template, 1, 0, "symphiq-search-modal");
|
|
95135
95244
|
i0.ɵɵelementEnd();
|
|
95136
95245
|
} if (rf & 2) {
|
|
95137
95246
|
i0.ɵɵclassMap(ctx.getContainerClasses());
|
|
@@ -95150,11 +95259,13 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95150
95259
|
i0.ɵɵproperty("ngClass", ctx.getWelcomeBannerIconClasses());
|
|
95151
95260
|
i0.ɵɵadvance(4);
|
|
95152
95261
|
i0.ɵɵproperty("ngClass", ctx.getWelcomeBannerTitleClasses());
|
|
95153
|
-
i0.ɵɵadvance(
|
|
95262
|
+
i0.ɵɵadvance(4);
|
|
95154
95263
|
i0.ɵɵproperty("ngClass", ctx.getWelcomeBannerTextClasses());
|
|
95155
95264
|
i0.ɵɵadvance(2);
|
|
95156
95265
|
i0.ɵɵproperty("ngClass", ctx.getWelcomeBannerTextClasses());
|
|
95157
|
-
i0.ɵɵadvance(
|
|
95266
|
+
i0.ɵɵadvance(5);
|
|
95267
|
+
i0.ɵɵproperty("viewMode", ctx.viewMode())("focusAreaDetails", ctx.focusAreaDetails());
|
|
95268
|
+
i0.ɵɵadvance();
|
|
95158
95269
|
i0.ɵɵproperty("ngClass", ctx.getWelcomeBannerHighlightClasses());
|
|
95159
95270
|
i0.ɵɵadvance();
|
|
95160
95271
|
i0.ɵɵproperty("ngClass", ctx.getWelcomeBannerHighlightIconClasses());
|
|
@@ -95162,17 +95273,25 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95162
95273
|
i0.ɵɵproperty("ngClass", ctx.getWelcomeBannerHighlightTitleClasses());
|
|
95163
95274
|
i0.ɵɵadvance(2);
|
|
95164
95275
|
i0.ɵɵproperty("ngClass", ctx.getWelcomeBannerHighlightListClasses());
|
|
95165
|
-
i0.ɵɵadvance(
|
|
95276
|
+
i0.ɵɵadvance(22);
|
|
95277
|
+
i0.ɵɵproperty("ngClass", ctx.getWelcomeBannerNextStepsClasses());
|
|
95278
|
+
i0.ɵɵadvance();
|
|
95279
|
+
i0.ɵɵproperty("ngClass", ctx.getWelcomeBannerNextStepsIconClasses());
|
|
95280
|
+
i0.ɵɵadvance(3);
|
|
95281
|
+
i0.ɵɵproperty("ngClass", ctx.getWelcomeBannerNextStepsTitleClasses());
|
|
95282
|
+
i0.ɵɵadvance(2);
|
|
95283
|
+
i0.ɵɵproperty("ngClass", ctx.getWelcomeBannerNextStepsTextClasses());
|
|
95284
|
+
i0.ɵɵadvance(3);
|
|
95166
95285
|
i0.ɵɵrepeater(ctx.interestedFocusAreaCards());
|
|
95167
95286
|
i0.ɵɵadvance(2);
|
|
95168
|
-
i0.ɵɵconditional(ctx.notInterestedFocusAreaCards().length > 0 ?
|
|
95287
|
+
i0.ɵɵconditional(ctx.notInterestedFocusAreaCards().length > 0 ? 66 : -1);
|
|
95169
95288
|
i0.ɵɵadvance();
|
|
95170
|
-
i0.ɵɵconditional(ctx.showSearchModal() ?
|
|
95171
|
-
} }, dependencies: [CommonModule, i1$1.NgClass, DashboardHeaderComponent, SearchModalComponent, JourneyProgressIndicatorComponent], styles: [".animated-bubbles[_ngcontent-%COMP%]{background:linear-gradient(135deg,#6366f10d,#a855f70d)}.animated-bubbles.light-mode[_ngcontent-%COMP%]{background:linear-gradient(135deg,#3b82f608,#9333ea08)}.animated-bubbles[_ngcontent-%COMP%]:before, .animated-bubbles[_ngcontent-%COMP%]:after{content:\"\";position:absolute;border-radius:50%;animation:_ngcontent-%COMP%_float 20s infinite ease-in-out}.animated-bubbles[_ngcontent-%COMP%]:before{width:500px;height:500px;background:radial-gradient(circle,rgba(99,102,241,.1) 0%,transparent 70%);top:-250px;right:-250px;animation-delay:-5s}.animated-bubbles[_ngcontent-%COMP%]:after{width:400px;height:400px;background:radial-gradient(circle,rgba(168,85,247,.1) 0%,transparent 70%);bottom:-200px;left:-200px;animation-delay:-10s}@keyframes _ngcontent-%COMP%_float{0%,to{transform:translateY(0) translate(0)}25%{transform:translateY(-50px) translate(50px)}50%{transform:translateY(-100px) translate(-50px)}75%{transform:translateY(-50px) translate(-100px)}}"], changeDetection: 0 }); }
|
|
95289
|
+
i0.ɵɵconditional(ctx.showSearchModal() ? 67 : -1);
|
|
95290
|
+
} }, dependencies: [CommonModule, i1$1.NgClass, DashboardHeaderComponent, SearchModalComponent, JourneyProgressIndicatorComponent, ConfidenceLevelCardComponent], styles: [".animated-bubbles[_ngcontent-%COMP%]{background:linear-gradient(135deg,#6366f10d,#a855f70d)}.animated-bubbles.light-mode[_ngcontent-%COMP%]{background:linear-gradient(135deg,#3b82f608,#9333ea08)}.animated-bubbles[_ngcontent-%COMP%]:before, .animated-bubbles[_ngcontent-%COMP%]:after{content:\"\";position:absolute;border-radius:50%;animation:_ngcontent-%COMP%_float 20s infinite ease-in-out}.animated-bubbles[_ngcontent-%COMP%]:before{width:500px;height:500px;background:radial-gradient(circle,rgba(99,102,241,.1) 0%,transparent 70%);top:-250px;right:-250px;animation-delay:-5s}.animated-bubbles[_ngcontent-%COMP%]:after{width:400px;height:400px;background:radial-gradient(circle,rgba(168,85,247,.1) 0%,transparent 70%);bottom:-200px;left:-200px;animation-delay:-10s}@keyframes _ngcontent-%COMP%_float{0%,to{transform:translateY(0) translate(0)}25%{transform:translateY(-50px) translate(50px)}50%{transform:translateY(-100px) translate(-50px)}75%{transform:translateY(-50px) translate(-100px)}}"], changeDetection: 0 }); }
|
|
95172
95291
|
}
|
|
95173
95292
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SymphiqProfileFocusAreasAnalysesDashboardComponent, [{
|
|
95174
95293
|
type: Component,
|
|
95175
|
-
args: [{ selector: 'symphiq-profile-focus-areas-analyses-dashboard', standalone: true, imports: [CommonModule, DashboardHeaderComponent, SearchModalComponent, JourneyProgressIndicatorComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
95294
|
+
args: [{ selector: 'symphiq-profile-focus-areas-analyses-dashboard', standalone: true, imports: [CommonModule, DashboardHeaderComponent, SearchModalComponent, JourneyProgressIndicatorComponent, ConfidenceLevelCardComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
95176
95295
|
<div [class]="getContainerClasses()" class="min-h-screen relative">
|
|
95177
95296
|
<div class="animated-bubbles" [class.light-mode]="isLightMode()"
|
|
95178
95297
|
style="position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100vw; height: 100vh; z-index: 1; pointer-events: none;"></div>
|
|
@@ -95225,13 +95344,26 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95225
95344
|
Welcome to Your Focus Area Analyses
|
|
95226
95345
|
</h2>
|
|
95227
95346
|
|
|
95228
|
-
|
|
95229
|
-
|
|
95230
|
-
|
|
95231
|
-
|
|
95232
|
-
|
|
95233
|
-
|
|
95234
|
-
|
|
95347
|
+
<!-- Description and Confidence Card in Responsive Layout -->
|
|
95348
|
+
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-6">
|
|
95349
|
+
<!-- Description (takes 2 columns on large screens) -->
|
|
95350
|
+
<div class="lg:col-span-2 space-y-3">
|
|
95351
|
+
<p [ngClass]="getWelcomeBannerTextClasses()" class="text-base leading-relaxed">
|
|
95352
|
+
Focus Areas represent the marketing domains where your business operates—from SEO and email marketing to paid media and customer retention. Each focus area contains tailored questions about your current tools, tactics, and capabilities, helping Symphiq understand exactly what you're doing today and where you want to grow.
|
|
95353
|
+
</p>
|
|
95354
|
+
<p [ngClass]="getWelcomeBannerTextClasses()" class="text-base leading-relaxed">
|
|
95355
|
+
<strong class="font-semibold">Why this matters:</strong> By completing focus area assessments, Symphiq learns your marketing reality across every channel. This means recommendations are grounded in what you can actually execute with your current team and tools—while also surfacing high-impact opportunities to expand your capabilities. No generic advice, only strategies that fit your specific operational context.
|
|
95356
|
+
</p>
|
|
95357
|
+
</div>
|
|
95358
|
+
|
|
95359
|
+
<!-- Confidence Card (takes 1 column on large screens, full width on mobile) -->
|
|
95360
|
+
<div class="lg:col-span-1">
|
|
95361
|
+
<symphiq-confidence-level-card
|
|
95362
|
+
[viewMode]="viewMode()"
|
|
95363
|
+
currentStepId="focus-areas"
|
|
95364
|
+
[focusAreaDetails]="focusAreaDetails()"
|
|
95365
|
+
/>
|
|
95366
|
+
</div>
|
|
95235
95367
|
</div>
|
|
95236
95368
|
|
|
95237
95369
|
<div [ngClass]="getWelcomeBannerHighlightClasses()" class="mt-6 p-5 rounded-xl border-l-4 flex items-start gap-4">
|
|
@@ -95240,30 +95372,44 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95240
95372
|
</svg>
|
|
95241
95373
|
<div class="flex-1">
|
|
95242
95374
|
<h3 [ngClass]="getWelcomeBannerHighlightTitleClasses()" class="font-bold text-lg mb-2">
|
|
95243
|
-
|
|
95375
|
+
What You'll See Below
|
|
95244
95376
|
</h3>
|
|
95245
95377
|
<ul [ngClass]="getWelcomeBannerHighlightListClasses()" class="space-y-2 text-sm">
|
|
95246
95378
|
<li class="flex items-start gap-2">
|
|
95247
95379
|
<svg class="w-5 h-5 flex-shrink-0 mt-0.5" fill="currentColor" viewBox="0 0 20 20">
|
|
95248
95380
|
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path>
|
|
95249
95381
|
</svg>
|
|
95250
|
-
<span><strong class="font-semibold">Select
|
|
95382
|
+
<span><strong class="font-semibold">Select Focus Areas</strong> — Mark which marketing domains are relevant to your business—no need to complete areas you don't use</span>
|
|
95251
95383
|
</li>
|
|
95252
95384
|
<li class="flex items-start gap-2">
|
|
95253
95385
|
<svg class="w-5 h-5 flex-shrink-0 mt-0.5" fill="currentColor" viewBox="0 0 20 20">
|
|
95254
95386
|
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path>
|
|
95255
95387
|
</svg>
|
|
95256
|
-
<span><strong class="font-semibold">Answer Questions</strong> —
|
|
95388
|
+
<span><strong class="font-semibold">Answer Targeted Questions</strong> — Share specific details about your tools, processes, and current performance in each domain</span>
|
|
95257
95389
|
</li>
|
|
95258
95390
|
<li class="flex items-start gap-2">
|
|
95259
95391
|
<svg class="w-5 h-5 flex-shrink-0 mt-0.5" fill="currentColor" viewBox="0 0 20 20">
|
|
95260
95392
|
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path>
|
|
95261
95393
|
</svg>
|
|
95262
|
-
<span><strong class="font-semibold">Unlock
|
|
95394
|
+
<span><strong class="font-semibold">Unlock Domain Insights</strong> — Receive focused analysis and recommendations tailored to each marketing channel's unique context</span>
|
|
95263
95395
|
</li>
|
|
95264
95396
|
</ul>
|
|
95265
95397
|
</div>
|
|
95266
95398
|
</div>
|
|
95399
|
+
|
|
95400
|
+
<div [ngClass]="getWelcomeBannerNextStepsClasses()" class="mt-6 p-5 rounded-xl border flex items-start gap-4">
|
|
95401
|
+
<svg class="w-6 h-6 flex-shrink-0 mt-0.5" [ngClass]="getWelcomeBannerNextStepsIconClasses()" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
95402
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7l5 5m0 0l-5 5m5-5H6"></path>
|
|
95403
|
+
</svg>
|
|
95404
|
+
<div class="flex-1">
|
|
95405
|
+
<h3 [ngClass]="getWelcomeBannerNextStepsTitleClasses()" class="font-bold text-lg mb-2">
|
|
95406
|
+
Continue Your Journey
|
|
95407
|
+
</h3>
|
|
95408
|
+
<p [ngClass]="getWelcomeBannerNextStepsTextClasses()" class="text-sm leading-relaxed">
|
|
95409
|
+
The final step—Metric Analysis—lets you provide funnel-specific context for each conversion point. This granular knowledge ensures recommendations address the precise bottlenecks in your customer journey, creating a complete picture from top-of-funnel awareness to revenue.
|
|
95410
|
+
</p>
|
|
95411
|
+
</div>
|
|
95412
|
+
</div>
|
|
95267
95413
|
</div>
|
|
95268
95414
|
</div>
|
|
95269
95415
|
</div>
|
|
@@ -95272,11 +95418,8 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95272
95418
|
<!-- Focus Areas Grid -->
|
|
95273
95419
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
95274
95420
|
@for (focusArea of interestedFocusAreaCards(); track focusArea.domain) {
|
|
95275
|
-
<div
|
|
95276
|
-
|
|
95277
|
-
[class]="getCardClasses()"
|
|
95278
|
-
>
|
|
95279
|
-
<div class="p-6">
|
|
95421
|
+
<div [class]="getCardClasses()">
|
|
95422
|
+
<div class="p-6 flex-1">
|
|
95280
95423
|
<div class="flex items-start justify-between mb-4">
|
|
95281
95424
|
<div class="text-4xl">{{ focusArea.icon }}</div>
|
|
95282
95425
|
<div class="flex flex-col items-end gap-2">
|
|
@@ -95381,11 +95524,24 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95381
95524
|
}
|
|
95382
95525
|
</div>
|
|
95383
95526
|
|
|
95384
|
-
@if (focusArea.canViewDetails) {
|
|
95385
|
-
<div
|
|
95527
|
+
@if (focusArea.canViewDetails && focusArea.profileFocusArea) {
|
|
95528
|
+
<div
|
|
95529
|
+
[class]="getCardFooterClasses()"
|
|
95530
|
+
class="mt-auto cursor-pointer hover:bg-slate-100 dark:hover:bg-slate-700/50 transition-colors"
|
|
95531
|
+
(click)="handleFooterClick(focusArea.profileFocusArea)">
|
|
95386
95532
|
<div class="flex items-center justify-between">
|
|
95387
|
-
<span class="text-sm font-medium text-slate-600 dark:text-slate-400">
|
|
95388
|
-
|
|
95533
|
+
<span class="text-sm font-medium text-slate-600 dark:text-slate-400">
|
|
95534
|
+
@if (focusArea.hasAnalysis) {
|
|
95535
|
+
View Details
|
|
95536
|
+
} @else if (focusArea.status === 'complete') {
|
|
95537
|
+
All Questions Answered
|
|
95538
|
+
} @else if (focusArea.status === 'in-progress') {
|
|
95539
|
+
Continue Answering Questions
|
|
95540
|
+
} @else {
|
|
95541
|
+
Start Answering Questions
|
|
95542
|
+
}
|
|
95543
|
+
</span>
|
|
95544
|
+
<svg class="w-5 h-5 text-slate-400 dark:text-slate-500 hover:text-blue-500 dark:hover:text-blue-400 hover:translate-x-1 transition-all" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
95389
95545
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
|
|
95390
95546
|
</svg>
|
|
95391
95547
|
</div>
|
|
@@ -95406,11 +95562,8 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95406
95562
|
|
|
95407
95563
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 opacity-60">
|
|
95408
95564
|
@for (focusArea of notInterestedFocusAreaCards(); track focusArea.domain) {
|
|
95409
|
-
<div
|
|
95410
|
-
|
|
95411
|
-
[class]="getCardClasses()"
|
|
95412
|
-
>
|
|
95413
|
-
<div class="p-6">
|
|
95565
|
+
<div [class]="getCardClasses()">
|
|
95566
|
+
<div class="p-6 flex-1">
|
|
95414
95567
|
<div class="flex items-start justify-between mb-4">
|
|
95415
95568
|
<div class="text-4xl">{{ focusArea.icon }}</div>
|
|
95416
95569
|
<div class="flex flex-col items-end gap-2">
|
|
@@ -95431,11 +95584,14 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95431
95584
|
</p>
|
|
95432
95585
|
</div>
|
|
95433
95586
|
|
|
95434
|
-
@if (focusArea.canViewDetails) {
|
|
95435
|
-
<div
|
|
95587
|
+
@if (focusArea.canViewDetails && focusArea.profileFocusArea) {
|
|
95588
|
+
<div
|
|
95589
|
+
[class]="getCardFooterClasses()"
|
|
95590
|
+
class="mt-auto cursor-pointer hover:bg-slate-100 dark:hover:bg-slate-700/50 transition-colors"
|
|
95591
|
+
(click)="handleFooterClick(focusArea.profileFocusArea)">
|
|
95436
95592
|
<div class="flex items-center justify-between">
|
|
95437
95593
|
<span class="text-sm font-medium text-slate-600 dark:text-slate-400">View Details</span>
|
|
95438
|
-
<svg class="w-5 h-5 text-slate-400 dark:text-slate-500
|
|
95594
|
+
<svg class="w-5 h-5 text-slate-400 dark:text-slate-500 hover:text-blue-500 dark:hover:text-blue-400 hover:translate-x-1 transition-all" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
95439
95595
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
|
|
95440
95596
|
</svg>
|
|
95441
95597
|
</div>
|
|
@@ -95457,11 +95613,11 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95457
95613
|
}
|
|
95458
95614
|
</div>
|
|
95459
95615
|
`, styles: [".animated-bubbles{background:linear-gradient(135deg,#6366f10d,#a855f70d)}.animated-bubbles.light-mode{background:linear-gradient(135deg,#3b82f608,#9333ea08)}.animated-bubbles:before,.animated-bubbles:after{content:\"\";position:absolute;border-radius:50%;animation:float 20s infinite ease-in-out}.animated-bubbles:before{width:500px;height:500px;background:radial-gradient(circle,rgba(99,102,241,.1) 0%,transparent 70%);top:-250px;right:-250px;animation-delay:-5s}.animated-bubbles:after{width:400px;height:400px;background:radial-gradient(circle,rgba(168,85,247,.1) 0%,transparent 70%);bottom:-200px;left:-200px;animation-delay:-10s}@keyframes float{0%,to{transform:translateY(0) translate(0)}25%{transform:translateY(-50px) translate(50px)}50%{transform:translateY(-100px) translate(-50px)}75%{transform:translateY(-50px) translate(-100px)}}\n"] }]
|
|
95460
|
-
}], null, { requestedByUser: [{ type: i0.Input, args: [{ isSignal: true, alias: "requestedByUser", required: false }] }], createdDate: [{ type: i0.Input, args: [{ isSignal: true, alias: "createdDate", required: false }] }], embedded: [{ type: i0.Input, args: [{ isSignal: true, alias: "embedded", required: false }] }], profileAnalyses: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileAnalyses", required: false }] }], profile: [{ type: i0.Input, args: [{ isSignal: true, alias: "profile", required: false }] }], funnelAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "funnelAnalysis", required: false }] }], focusAreaDetails: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaDetails", required: false }] }], account: [{ type: i0.Input, args: [{ isSignal: true, alias: "account", required: false }] }], profileFocusAreas: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileFocusAreas", required: false }] }], itemStatusesProfileFocusArea: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemStatusesProfileFocusArea", required: false }] }], itemStatusesProfileAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemStatusesProfileAnalysis", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }], scrollEvent: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollEvent", required: false }] }], scrollElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollElement", required: false }] }], users: [{ type: i0.Input, args: [{ isSignal: true, alias: "users", required: false }] }], isLoading: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoading", required: false }] }], forDemo: [{ type: i0.Input, args: [{ isSignal: true, alias: "forDemo", required: false }] }], currentUser: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentUser", required: false }] }], maxAccessibleStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxAccessibleStepId", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], displayMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "displayMode", required: false }] }], currentStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentStepId", required: false }] }], focusAreaClicked: [{ type: i0.Output, args: ["focusAreaClicked"] }], stepClick: [{ type: i0.Output, args: ["stepClick"] }], nextStepClick: [{ type: i0.Output, args: ["nextStepClick"] }], answerFocusAreaProfileQuestions: [{ type: i0.Output, args: ["answerFocusAreaProfileQuestions"] }], continueFocusAreaProfileQuestions: [{ type: i0.Output, args: ["continueFocusAreaProfileQuestions"] }], profileQuestionAnswerSave: [{ type: i0.Output, args: ["profileQuestionAnswerSave"] }], focusAreaProfileAdminAnswerAction: [{ type: i0.Output, args: ["focusAreaProfileAdminAnswerAction"] }], onScroll: [{
|
|
95616
|
+
}], null, { requestedByUser: [{ type: i0.Input, args: [{ isSignal: true, alias: "requestedByUser", required: false }] }], createdDate: [{ type: i0.Input, args: [{ isSignal: true, alias: "createdDate", required: false }] }], embedded: [{ type: i0.Input, args: [{ isSignal: true, alias: "embedded", required: false }] }], profileAnalyses: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileAnalyses", required: false }] }], profile: [{ type: i0.Input, args: [{ isSignal: true, alias: "profile", required: false }] }], funnelAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "funnelAnalysis", required: false }] }], focusAreaDetails: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaDetails", required: false }] }], account: [{ type: i0.Input, args: [{ isSignal: true, alias: "account", required: false }] }], profileFocusAreas: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileFocusAreas", required: false }] }], itemStatusesProfileFocusArea: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemStatusesProfileFocusArea", required: false }] }], itemStatusesProfileAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemStatusesProfileAnalysis", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }], scrollEvent: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollEvent", required: false }] }], scrollElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollElement", required: false }] }], users: [{ type: i0.Input, args: [{ isSignal: true, alias: "users", required: false }] }], isLoading: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoading", required: false }] }], forDemo: [{ type: i0.Input, args: [{ isSignal: true, alias: "forDemo", required: false }] }], currentUser: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentUser", required: false }] }], maxAccessibleStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxAccessibleStepId", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], displayMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "displayMode", required: false }] }], currentStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentStepId", required: false }] }], focusAreaClicked: [{ type: i0.Output, args: ["focusAreaClicked"] }], focusAreaFooterClicked: [{ type: i0.Output, args: ["focusAreaFooterClicked"] }], stepClick: [{ type: i0.Output, args: ["stepClick"] }], nextStepClick: [{ type: i0.Output, args: ["nextStepClick"] }], answerFocusAreaProfileQuestions: [{ type: i0.Output, args: ["answerFocusAreaProfileQuestions"] }], continueFocusAreaProfileQuestions: [{ type: i0.Output, args: ["continueFocusAreaProfileQuestions"] }], profileQuestionAnswerSave: [{ type: i0.Output, args: ["profileQuestionAnswerSave"] }], focusAreaProfileAdminAnswerAction: [{ type: i0.Output, args: ["focusAreaProfileAdminAnswerAction"] }], onScroll: [{
|
|
95461
95617
|
type: HostListener,
|
|
95462
95618
|
args: ['window:scroll', ['$event']]
|
|
95463
95619
|
}] }); })();
|
|
95464
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileFocusAreasAnalysesDashboardComponent, { className: "SymphiqProfileFocusAreasAnalysesDashboardComponent", filePath: "lib/components/profile-analyses-focus-areas-dashboard/symphiq-profile-focus-areas-analyses-dashboard.component.ts", lineNumber:
|
|
95620
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileFocusAreasAnalysesDashboardComponent, { className: "SymphiqProfileFocusAreasAnalysesDashboardComponent", filePath: "lib/components/profile-analyses-focus-areas-dashboard/symphiq-profile-focus-areas-analyses-dashboard.component.ts", lineNumber: 436 }); })();
|
|
95465
95621
|
|
|
95466
95622
|
function FocusAreaStatusCardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
95467
95623
|
i0.ɵɵelementStart(0, "div", 7)(1, "div", 8)(2, "div", 9);
|