@eric-emg/symphiq-components 1.2.434 → 1.2.436
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 +198 -126
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +47 -39
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/styles.css +8 -0
|
@@ -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 ");
|
|
@@ -94444,7 +94497,7 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_6_Templa
|
|
|
94444
94497
|
i0.ɵɵelementEnd();
|
|
94445
94498
|
} if (rf & 2) {
|
|
94446
94499
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
94447
|
-
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentStepId", ctx_r1.currentStepId())("showNextStepAction",
|
|
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
94502
|
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
94450
94503
|
i0.ɵɵelementStart(0, "div", 36);
|
|
@@ -94463,7 +94516,7 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_7
|
|
|
94463
94516
|
i0.ɵɵelementEnd();
|
|
94464
94517
|
} }
|
|
94465
94518
|
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_12_For_6_Template(rf, ctx) { if (rf & 1) {
|
|
94466
|
-
i0.ɵɵelementStart(0, "span",
|
|
94519
|
+
i0.ɵɵelementStart(0, "span", 45);
|
|
94467
94520
|
i0.ɵɵtext(1);
|
|
94468
94521
|
i0.ɵɵelementEnd();
|
|
94469
94522
|
} if (rf & 2) {
|
|
@@ -94474,11 +94527,11 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_1
|
|
|
94474
94527
|
i0.ɵɵtextInterpolate1(" ", tool_r5, " ");
|
|
94475
94528
|
} }
|
|
94476
94529
|
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
94477
|
-
i0.ɵɵelementStart(0, "div", 38)(1, "div",
|
|
94530
|
+
i0.ɵɵelementStart(0, "div", 38)(1, "div", 42)(2, "span", 43);
|
|
94478
94531
|
i0.ɵɵtext(3, "Marketing Tools:");
|
|
94479
94532
|
i0.ɵɵelementEnd();
|
|
94480
|
-
i0.ɵɵelementStart(4, "div",
|
|
94481
|
-
i0.ɵɵrepeaterCreate(5, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_12_For_6_Template, 2, 2, "span",
|
|
94533
|
+
i0.ɵɵelementStart(4, "div", 44);
|
|
94534
|
+
i0.ɵɵrepeaterCreate(5, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_12_For_6_Template, 2, 2, "span", 45, i0.ɵɵrepeaterTrackByIdentity);
|
|
94482
94535
|
i0.ɵɵelementEnd()()();
|
|
94483
94536
|
} if (rf & 2) {
|
|
94484
94537
|
const focusArea_r4 = i0.ɵɵnextContext().$implicit;
|
|
@@ -94489,15 +94542,15 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_1
|
|
|
94489
94542
|
i0.ɵɵrepeater(focusArea_r4.tools);
|
|
94490
94543
|
} }
|
|
94491
94544
|
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_13_Template(rf, ctx) { if (rf & 1) {
|
|
94492
|
-
i0.ɵɵelementStart(0, "div", 39)(1, "div",
|
|
94493
|
-
i0.ɵɵelement(2, "div",
|
|
94494
|
-
i0.ɵɵelementStart(3, "span",
|
|
94545
|
+
i0.ɵɵelementStart(0, "div", 39)(1, "div", 42);
|
|
94546
|
+
i0.ɵɵelement(2, "div", 46);
|
|
94547
|
+
i0.ɵɵelementStart(3, "span", 47);
|
|
94495
94548
|
i0.ɵɵtext(4);
|
|
94496
94549
|
i0.ɵɵelementEnd()();
|
|
94497
|
-
i0.ɵɵelementStart(5, "div",
|
|
94498
|
-
i0.ɵɵelement(6, "div",
|
|
94550
|
+
i0.ɵɵelementStart(5, "div", 48);
|
|
94551
|
+
i0.ɵɵelement(6, "div", 49);
|
|
94499
94552
|
i0.ɵɵelementEnd();
|
|
94500
|
-
i0.ɵɵelementStart(7, "div",
|
|
94553
|
+
i0.ɵɵelementStart(7, "div", 50);
|
|
94501
94554
|
i0.ɵɵtext(8);
|
|
94502
94555
|
i0.ɵɵelementEnd()();
|
|
94503
94556
|
} if (rf & 2) {
|
|
@@ -94516,44 +94569,51 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_1
|
|
|
94516
94569
|
i0.ɵɵadvance();
|
|
94517
94570
|
i0.ɵɵtextInterpolate1(" ", (focusArea_r4.itemStatus == null ? null : focusArea_r4.itemStatus.percentageComplete) ?? 0, "% complete ");
|
|
94518
94571
|
} }
|
|
94519
|
-
function
|
|
94520
|
-
i0.ɵɵelementStart(0, "div",
|
|
94572
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
94573
|
+
i0.ɵɵelementStart(0, "div", 40);
|
|
94574
|
+
i0.ɵɵelement(1, "div", 51);
|
|
94575
|
+
i0.ɵɵelementStart(2, "span", 52);
|
|
94576
|
+
i0.ɵɵtext(3, "Profile Generation Pending");
|
|
94577
|
+
i0.ɵɵelementEnd()();
|
|
94578
|
+
} }
|
|
94579
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_15_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
94580
|
+
i0.ɵɵelementStart(0, "div", 54);
|
|
94521
94581
|
i0.ɵɵnamespaceSVG();
|
|
94522
|
-
i0.ɵɵelementStart(1, "svg",
|
|
94582
|
+
i0.ɵɵelementStart(1, "svg", 57);
|
|
94523
94583
|
i0.ɵɵelement(2, "path", 26);
|
|
94524
94584
|
i0.ɵɵelementEnd();
|
|
94525
94585
|
i0.ɵɵtext(3, " Complete ");
|
|
94526
94586
|
i0.ɵɵelementEnd();
|
|
94527
94587
|
} }
|
|
94528
|
-
function
|
|
94529
|
-
i0.ɵɵelementStart(0, "div",
|
|
94588
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_15_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
94589
|
+
i0.ɵɵelementStart(0, "div", 55);
|
|
94530
94590
|
i0.ɵɵnamespaceSVG();
|
|
94531
|
-
i0.ɵɵelementStart(1, "svg",
|
|
94532
|
-
i0.ɵɵelement(2, "path",
|
|
94591
|
+
i0.ɵɵelementStart(1, "svg", 57);
|
|
94592
|
+
i0.ɵɵelement(2, "path", 58);
|
|
94533
94593
|
i0.ɵɵelementEnd();
|
|
94534
94594
|
i0.ɵɵtext(3, " In Progress ");
|
|
94535
94595
|
i0.ɵɵelementEnd();
|
|
94536
94596
|
} }
|
|
94537
|
-
function
|
|
94538
|
-
i0.ɵɵelementStart(0, "div",
|
|
94597
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_15_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
94598
|
+
i0.ɵɵelementStart(0, "div", 56);
|
|
94539
94599
|
i0.ɵɵnamespaceSVG();
|
|
94540
|
-
i0.ɵɵelementStart(1, "svg",
|
|
94541
|
-
i0.ɵɵelement(2, "path",
|
|
94600
|
+
i0.ɵɵelementStart(1, "svg", 57);
|
|
94601
|
+
i0.ɵɵelement(2, "path", 59);
|
|
94542
94602
|
i0.ɵɵelementEnd();
|
|
94543
94603
|
i0.ɵɵtext(3, " Not Started ");
|
|
94544
94604
|
i0.ɵɵelementEnd();
|
|
94545
94605
|
} }
|
|
94546
|
-
function
|
|
94547
|
-
i0.ɵɵelementStart(0, "div",
|
|
94606
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_15_Template(rf, ctx) { if (rf & 1) {
|
|
94607
|
+
i0.ɵɵelementStart(0, "div", 41)(1, "div", 53)(2, "span");
|
|
94548
94608
|
i0.ɵɵtext(3, "Progress");
|
|
94549
94609
|
i0.ɵɵelementEnd();
|
|
94550
94610
|
i0.ɵɵelementStart(4, "span");
|
|
94551
94611
|
i0.ɵɵtext(5);
|
|
94552
94612
|
i0.ɵɵelementEnd()();
|
|
94553
94613
|
i0.ɵɵelementStart(6, "div");
|
|
94554
|
-
i0.ɵɵelement(7, "div",
|
|
94614
|
+
i0.ɵɵelement(7, "div", 49);
|
|
94555
94615
|
i0.ɵɵelementEnd();
|
|
94556
|
-
i0.ɵɵconditionalCreate(8,
|
|
94616
|
+
i0.ɵɵconditionalCreate(8, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_15_Conditional_8_Template, 4, 0, "div", 54)(9, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_15_Conditional_9_Template, 4, 0, "div", 55)(10, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_15_Conditional_10_Template, 4, 0, "div", 56);
|
|
94557
94617
|
i0.ɵɵelementEnd();
|
|
94558
94618
|
} if (rf & 2) {
|
|
94559
94619
|
const focusArea_r4 = i0.ɵɵnextContext().$implicit;
|
|
@@ -94571,13 +94631,13 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_1
|
|
|
94571
94631
|
i0.ɵɵadvance();
|
|
94572
94632
|
i0.ɵɵconditional(focusArea_r4.status === "complete" ? 8 : focusArea_r4.status === "in-progress" ? 9 : 10);
|
|
94573
94633
|
} }
|
|
94574
|
-
function
|
|
94575
|
-
i0.ɵɵelementStart(0, "div")(1, "div",
|
|
94634
|
+
function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_16_Template(rf, ctx) { if (rf & 1) {
|
|
94635
|
+
i0.ɵɵelementStart(0, "div")(1, "div", 60)(2, "span", 61);
|
|
94576
94636
|
i0.ɵɵtext(3, "View Details");
|
|
94577
94637
|
i0.ɵɵelementEnd();
|
|
94578
94638
|
i0.ɵɵnamespaceSVG();
|
|
94579
|
-
i0.ɵɵelementStart(4, "svg",
|
|
94580
|
-
i0.ɵɵelement(5, "path",
|
|
94639
|
+
i0.ɵɵelementStart(4, "svg", 62);
|
|
94640
|
+
i0.ɵɵelement(5, "path", 63);
|
|
94581
94641
|
i0.ɵɵelementEnd()()();
|
|
94582
94642
|
} if (rf & 2) {
|
|
94583
94643
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -94601,9 +94661,9 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Template(rf,
|
|
|
94601
94661
|
i0.ɵɵtext(11);
|
|
94602
94662
|
i0.ɵɵelementEnd();
|
|
94603
94663
|
i0.ɵɵconditionalCreate(12, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_12_Template, 7, 1, "div", 38);
|
|
94604
|
-
i0.ɵɵconditionalCreate(13, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_13_Template, 9, 10, "div", 39)(14, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_14_Template, 11, 11, "div",
|
|
94664
|
+
i0.ɵɵconditionalCreate(13, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_13_Template, 9, 10, "div", 39)(14, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_14_Template, 4, 0, "div", 40)(15, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_15_Template, 11, 11, "div", 41);
|
|
94605
94665
|
i0.ɵɵelementEnd();
|
|
94606
|
-
i0.ɵɵconditionalCreate(
|
|
94666
|
+
i0.ɵɵconditionalCreate(16, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Conditional_16_Template, 6, 2, "div", 28);
|
|
94607
94667
|
i0.ɵɵelementEnd();
|
|
94608
94668
|
} if (rf & 2) {
|
|
94609
94669
|
const focusArea_r4 = ctx.$implicit;
|
|
@@ -94626,9 +94686,9 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Template(rf,
|
|
|
94626
94686
|
i0.ɵɵadvance();
|
|
94627
94687
|
i0.ɵɵconditional(focusArea_r4.engagementStatus === ctx_r1.FocusAreaDetailStatusEnum.ENGAGED && focusArea_r4.tools.length > 0 ? 12 : -1);
|
|
94628
94688
|
i0.ɵɵadvance();
|
|
94629
|
-
i0.ɵɵconditional(focusArea_r4.selfContentStatus !== null && focusArea_r4.selfContentStatus !== ctx_r1.AiDynamicContentStatusEnum.GENERATED && focusArea_r4.engagementStatus !== ctx_r1.FocusAreaDetailStatusEnum.NOT_ENGAGED_AND_NO_INTEREST ? 13 : focusArea_r4.selfContentStatus === ctx_r1.AiDynamicContentStatusEnum.GENERATED || focusArea_r4.status !== "pending" ?
|
|
94630
|
-
i0.ɵɵadvance(
|
|
94631
|
-
i0.ɵɵconditional(focusArea_r4.canViewDetails ?
|
|
94689
|
+
i0.ɵɵconditional(focusArea_r4.selfContentStatus !== null && focusArea_r4.selfContentStatus !== ctx_r1.AiDynamicContentStatusEnum.GENERATED && focusArea_r4.engagementStatus !== ctx_r1.FocusAreaDetailStatusEnum.NOT_ENGAGED_AND_NO_INTEREST ? 13 : focusArea_r4.selfContentStatus === null && focusArea_r4.engagementStatus !== ctx_r1.FocusAreaDetailStatusEnum.NOT_ENGAGED_AND_NO_INTEREST ? 14 : focusArea_r4.selfContentStatus === ctx_r1.AiDynamicContentStatusEnum.GENERATED || focusArea_r4.status !== "pending" ? 15 : -1);
|
|
94690
|
+
i0.ɵɵadvance(3);
|
|
94691
|
+
i0.ɵɵconditional(focusArea_r4.canViewDetails ? 16 : -1);
|
|
94632
94692
|
} }
|
|
94633
94693
|
function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_55_For_8_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
94634
94694
|
i0.ɵɵelementStart(0, "div", 36);
|
|
@@ -94642,12 +94702,12 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_55_For_8
|
|
|
94642
94702
|
i0.ɵɵtextInterpolate1(" ", ctx_r1.getEngagementStatusLabel(focusArea_r7.engagementStatus), " ");
|
|
94643
94703
|
} }
|
|
94644
94704
|
function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_55_For_8_Conditional_11_Template(rf, ctx) { if (rf & 1) {
|
|
94645
|
-
i0.ɵɵelementStart(0, "div")(1, "div",
|
|
94705
|
+
i0.ɵɵelementStart(0, "div")(1, "div", 60)(2, "span", 61);
|
|
94646
94706
|
i0.ɵɵtext(3, "View Details");
|
|
94647
94707
|
i0.ɵɵelementEnd();
|
|
94648
94708
|
i0.ɵɵnamespaceSVG();
|
|
94649
|
-
i0.ɵɵelementStart(4, "svg",
|
|
94650
|
-
i0.ɵɵelement(5, "path",
|
|
94709
|
+
i0.ɵɵelementStart(4, "svg", 62);
|
|
94710
|
+
i0.ɵɵelement(5, "path", 63);
|
|
94651
94711
|
i0.ɵɵelementEnd()()();
|
|
94652
94712
|
} if (rf & 2) {
|
|
94653
94713
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
@@ -94691,14 +94751,14 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_55_For_8
|
|
|
94691
94751
|
i0.ɵɵconditional(focusArea_r7.canViewDetails ? 11 : -1);
|
|
94692
94752
|
} }
|
|
94693
94753
|
function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_55_Template(rf, ctx) { if (rf & 1) {
|
|
94694
|
-
i0.ɵɵelementStart(0, "div", 29)(1, "div",
|
|
94695
|
-
i0.ɵɵelement(2, "div",
|
|
94696
|
-
i0.ɵɵelementStart(3, "span",
|
|
94754
|
+
i0.ɵɵelementStart(0, "div", 29)(1, "div", 64);
|
|
94755
|
+
i0.ɵɵelement(2, "div", 65);
|
|
94756
|
+
i0.ɵɵelementStart(3, "span", 66);
|
|
94697
94757
|
i0.ɵɵtext(4, "Not Interested");
|
|
94698
94758
|
i0.ɵɵelementEnd();
|
|
94699
|
-
i0.ɵɵelement(5, "div",
|
|
94759
|
+
i0.ɵɵelement(5, "div", 65);
|
|
94700
94760
|
i0.ɵɵelementEnd();
|
|
94701
|
-
i0.ɵɵelementStart(6, "div",
|
|
94761
|
+
i0.ɵɵelementStart(6, "div", 67);
|
|
94702
94762
|
i0.ɵɵrepeaterCreate(7, SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_55_For_8_Template, 12, 11, "div", 28, _forTrack0);
|
|
94703
94763
|
i0.ɵɵelementEnd()();
|
|
94704
94764
|
} if (rf & 2) {
|
|
@@ -94714,7 +94774,7 @@ function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_55_Templ
|
|
|
94714
94774
|
} }
|
|
94715
94775
|
function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_56_Template(rf, ctx) { if (rf & 1) {
|
|
94716
94776
|
const _r8 = i0.ɵɵgetCurrentView();
|
|
94717
|
-
i0.ɵɵelementStart(0, "symphiq-search-modal",
|
|
94777
|
+
i0.ɵɵelementStart(0, "symphiq-search-modal", 68);
|
|
94718
94778
|
i0.ɵɵlistener("closeModal", function SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_56_Template_symphiq_search_modal_closeModal_0_listener() { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleCloseSearchModal()); });
|
|
94719
94779
|
i0.ɵɵelementEnd();
|
|
94720
94780
|
} }
|
|
@@ -94896,6 +94956,13 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
94896
94956
|
this.notInterestedFocusAreaCards = computed(() => {
|
|
94897
94957
|
return this.focusAreaCards().filter(card => card.engagementStatus === FocusAreaDetailStatusEnum.NOT_ENGAGED_AND_NO_INTEREST);
|
|
94898
94958
|
}, ...(ngDevMode ? [{ debugName: "notInterestedFocusAreaCards" }] : []));
|
|
94959
|
+
this.allInterestedFocusAreasGenerated = computed(() => {
|
|
94960
|
+
const interestedCards = this.interestedFocusAreaCards();
|
|
94961
|
+
if (interestedCards.length === 0) {
|
|
94962
|
+
return false;
|
|
94963
|
+
}
|
|
94964
|
+
return interestedCards.every(card => card.selfContentStatus === AiDynamicContentStatusEnum.GENERATED);
|
|
94965
|
+
}, ...(ngDevMode ? [{ debugName: "allInterestedFocusAreasGenerated" }] : []));
|
|
94899
94966
|
}
|
|
94900
94967
|
onScroll() {
|
|
94901
94968
|
this.headerScrollService.handleScroll(this.embedded());
|
|
@@ -95044,7 +95111,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95044
95111
|
static { this.ɵfac = function SymphiqProfileFocusAreasAnalysesDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqProfileFocusAreasAnalysesDashboardComponent)(); }; }
|
|
95045
95112
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqProfileFocusAreasAnalysesDashboardComponent, selectors: [["symphiq-profile-focus-areas-analyses-dashboard"]], hostBindings: function SymphiqProfileFocusAreasAnalysesDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
95046
95113
|
i0.ɵɵlistener("scroll", function SymphiqProfileFocusAreasAnalysesDashboardComponent_scroll_HostBindingHandler($event) { return ctx.onScroll($event); }, i0.ɵɵresolveWindow);
|
|
95047
|
-
} }, 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: 57, vars: 23, 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, "space-y-3", "mb-6"], [1, "text-base", "leading-relaxed", 3, "ngClass"], [1, "font-semibold"], [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, "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"], [3, "click"], [1, "p-6"], [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, "space-y-2"], [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, "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, "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", "group-hover:text-blue-500", "dark:group-hover:text-blue-400", "group-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) {
|
|
95114
|
+
} }, 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: 57, vars: 23, 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, "space-y-3", "mb-6"], [1, "text-base", "leading-relaxed", 3, "ngClass"], [1, "font-semibold"], [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, "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"], [3, "click"], [1, "p-6"], [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, "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, "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", "group-hover:text-blue-500", "dark:group-hover:text-blue-400", "group-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) {
|
|
95048
95115
|
i0.ɵɵelementStart(0, "div", 0);
|
|
95049
95116
|
i0.ɵɵelement(1, "div", 1);
|
|
95050
95117
|
i0.ɵɵelementStart(2, "div", 2);
|
|
@@ -95113,7 +95180,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95113
95180
|
i0.ɵɵtext(51, " \u2014 Complete assessments to receive tailored recommendations and insights");
|
|
95114
95181
|
i0.ɵɵelementEnd()()()()()()()()();
|
|
95115
95182
|
i0.ɵɵelementStart(52, "div", 27);
|
|
95116
|
-
i0.ɵɵrepeaterCreate(53, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Template,
|
|
95183
|
+
i0.ɵɵrepeaterCreate(53, SymphiqProfileFocusAreasAnalysesDashboardComponent_For_54_Template, 17, 14, "div", 28, _forTrack0);
|
|
95117
95184
|
i0.ɵɵelementEnd();
|
|
95118
95185
|
i0.ɵɵconditionalCreate(55, SymphiqProfileFocusAreasAnalysesDashboardComponent_Conditional_55_Template, 9, 3, "div", 29);
|
|
95119
95186
|
i0.ɵɵelementEnd()();
|
|
@@ -95186,7 +95253,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95186
95253
|
<symphiq-journey-progress-indicator
|
|
95187
95254
|
[viewMode]="viewMode()"
|
|
95188
95255
|
[currentStepId]="currentStepId()"
|
|
95189
|
-
[showNextStepAction]="
|
|
95256
|
+
[showNextStepAction]="forDemo() || allInterestedFocusAreasGenerated()"
|
|
95190
95257
|
[forDemo]="forDemo()"
|
|
95191
95258
|
[maxAccessibleStepId]="maxAccessibleStepId()"
|
|
95192
95259
|
(nextStepClick)="nextStepClick.emit()"
|
|
@@ -95320,6 +95387,11 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95320
95387
|
{{ focusArea.itemStatus?.percentageComplete ?? 0 }}% complete
|
|
95321
95388
|
</div>
|
|
95322
95389
|
</div>
|
|
95390
|
+
} @else if (focusArea.selfContentStatus === null && focusArea.engagementStatus !== FocusAreaDetailStatusEnum.NOT_ENGAGED_AND_NO_INTEREST) {
|
|
95391
|
+
<div class="flex items-center gap-2 py-2">
|
|
95392
|
+
<div class="animate-spin w-4 h-4 border-2 border-amber-500/30 border-t-amber-500 rounded-full"></div>
|
|
95393
|
+
<span class="text-xs text-amber-600 dark:text-amber-400 font-medium">Profile Generation Pending</span>
|
|
95394
|
+
</div>
|
|
95323
95395
|
} @else if (focusArea.selfContentStatus === AiDynamicContentStatusEnum.GENERATED || focusArea.status !== 'pending') {
|
|
95324
95396
|
<div class="space-y-2">
|
|
95325
95397
|
<div class="flex items-center justify-between text-sm">
|
|
@@ -95442,7 +95514,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95442
95514
|
type: HostListener,
|
|
95443
95515
|
args: ['window:scroll', ['$event']]
|
|
95444
95516
|
}] }); })();
|
|
95445
|
-
(() => { (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:
|
|
95517
|
+
(() => { (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: 397 }); })();
|
|
95446
95518
|
|
|
95447
95519
|
function FocusAreaStatusCardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
95448
95520
|
i0.ɵɵelementStart(0, "div", 7)(1, "div", 8)(2, "div", 9);
|