@eric-emg/symphiq-components 1.2.145 → 1.2.147
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 +509 -197
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +28 -2
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/styles.css +50 -0
|
@@ -56362,121 +56362,425 @@ class CollapsibleSectionGroupComponent {
|
|
|
56362
56362
|
}], null, { sections: [{ type: i0.Input, args: [{ isSignal: true, alias: "sections", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }] }); })();
|
|
56363
56363
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CollapsibleSectionGroupComponent, { className: "CollapsibleSectionGroupComponent", filePath: "lib/components/business-analysis-dashboard/collapsible-section-group.component.ts", lineNumber: 100 }); })();
|
|
56364
56364
|
|
|
56365
|
+
function ContentGenerationProgressComponent_Conditional_27_Template(rf, ctx) { if (rf & 1) {
|
|
56366
|
+
i0.ɵɵelement(0, "div", 26);
|
|
56367
|
+
} if (rf & 2) {
|
|
56368
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
56369
|
+
i0.ɵɵstyleProp("left", ctx_r0.progressPercentage(), "%");
|
|
56370
|
+
i0.ɵɵproperty("ngClass", ctx_r0.progressGlowClasses());
|
|
56371
|
+
} }
|
|
56372
|
+
class ContentGenerationProgressComponent {
|
|
56373
|
+
constructor() {
|
|
56374
|
+
this.itemStatus = input(...(ngDevMode ? [undefined, { debugName: "itemStatus" }] : []));
|
|
56375
|
+
this.title = input('Generating Your Analysis', ...(ngDevMode ? [{ debugName: "title" }] : []));
|
|
56376
|
+
this.subtitle = input('This will appear when ready. You can check back later as this will take a few minutes to complete.', ...(ngDevMode ? [{ debugName: "subtitle" }] : []));
|
|
56377
|
+
this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
|
|
56378
|
+
this.showIcon = input(true, ...(ngDevMode ? [{ debugName: "showIcon" }] : []));
|
|
56379
|
+
this.progressPercentage = computed(() => {
|
|
56380
|
+
const status = this.itemStatus();
|
|
56381
|
+
if (!status?.percentageComplete)
|
|
56382
|
+
return 0;
|
|
56383
|
+
return Math.min(100, Math.max(0, status.percentageComplete));
|
|
56384
|
+
}, ...(ngDevMode ? [{ debugName: "progressPercentage" }] : []));
|
|
56385
|
+
this.progressMessage = computed(() => {
|
|
56386
|
+
const status = this.itemStatus();
|
|
56387
|
+
return status?.message || 'Initializing';
|
|
56388
|
+
}, ...(ngDevMode ? [{ debugName: "progressMessage" }] : []));
|
|
56389
|
+
this.isLightMode = computed(() => this.viewMode() === ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "isLightMode" }] : []));
|
|
56390
|
+
this.containerClasses = computed(() => {
|
|
56391
|
+
return this.isLightMode()
|
|
56392
|
+
? 'bg-gradient-to-br from-slate-50 to-white'
|
|
56393
|
+
: 'bg-gradient-to-br from-slate-900 to-slate-800';
|
|
56394
|
+
}, ...(ngDevMode ? [{ debugName: "containerClasses" }] : []));
|
|
56395
|
+
this.iconContainerClasses = computed(() => {
|
|
56396
|
+
if (this.isLightMode()) {
|
|
56397
|
+
return 'bg-gradient-to-br from-blue-500 to-purple-500 text-white shadow-lg shadow-blue-500/30';
|
|
56398
|
+
}
|
|
56399
|
+
return 'bg-gradient-to-br from-blue-400 to-purple-400 text-white shadow-lg shadow-blue-400/30';
|
|
56400
|
+
}, ...(ngDevMode ? [{ debugName: "iconContainerClasses" }] : []));
|
|
56401
|
+
this.titleClasses = computed(() => {
|
|
56402
|
+
if (this.isLightMode()) {
|
|
56403
|
+
return 'bg-gradient-to-r from-blue-600 via-purple-600 to-blue-600 bg-clip-text text-transparent';
|
|
56404
|
+
}
|
|
56405
|
+
return 'bg-gradient-to-r from-blue-400 via-purple-400 to-blue-400 bg-clip-text text-transparent';
|
|
56406
|
+
}, ...(ngDevMode ? [{ debugName: "titleClasses" }] : []));
|
|
56407
|
+
this.subtitleClasses = computed(() => {
|
|
56408
|
+
return this.isLightMode()
|
|
56409
|
+
? 'text-slate-600'
|
|
56410
|
+
: 'text-slate-400';
|
|
56411
|
+
}, ...(ngDevMode ? [{ debugName: "subtitleClasses" }] : []));
|
|
56412
|
+
this.progressMessageClasses = computed(() => {
|
|
56413
|
+
return this.isLightMode()
|
|
56414
|
+
? 'text-slate-700'
|
|
56415
|
+
: 'text-slate-300';
|
|
56416
|
+
}, ...(ngDevMode ? [{ debugName: "progressMessageClasses" }] : []));
|
|
56417
|
+
this.progressBarContainerClasses = computed(() => {
|
|
56418
|
+
return 'w-full';
|
|
56419
|
+
}, ...(ngDevMode ? [{ debugName: "progressBarContainerClasses" }] : []));
|
|
56420
|
+
this.progressBarBackgroundClasses = computed(() => {
|
|
56421
|
+
return this.isLightMode()
|
|
56422
|
+
? 'bg-slate-200'
|
|
56423
|
+
: 'bg-slate-700';
|
|
56424
|
+
}, ...(ngDevMode ? [{ debugName: "progressBarBackgroundClasses" }] : []));
|
|
56425
|
+
this.progressBarFillClasses = computed(() => {
|
|
56426
|
+
if (this.isLightMode()) {
|
|
56427
|
+
return 'bg-gradient-to-r from-blue-500 via-cyan-500 to-blue-600 shadow-lg shadow-blue-500/40';
|
|
56428
|
+
}
|
|
56429
|
+
return 'bg-gradient-to-r from-blue-400 via-cyan-400 to-blue-500 shadow-lg shadow-blue-400/40';
|
|
56430
|
+
}, ...(ngDevMode ? [{ debugName: "progressBarFillClasses" }] : []));
|
|
56431
|
+
this.dotClasses = computed(() => {
|
|
56432
|
+
return this.isLightMode()
|
|
56433
|
+
? 'bg-blue-400 shadow-lg shadow-blue-400/60'
|
|
56434
|
+
: 'bg-cyan-300 shadow-lg shadow-cyan-300/60';
|
|
56435
|
+
}, ...(ngDevMode ? [{ debugName: "dotClasses" }] : []));
|
|
56436
|
+
this.progressGlowClasses = computed(() => {
|
|
56437
|
+
return this.isLightMode()
|
|
56438
|
+
? 'bg-blue-400 shadow-xl'
|
|
56439
|
+
: 'bg-cyan-300 shadow-xl';
|
|
56440
|
+
}, ...(ngDevMode ? [{ debugName: "progressGlowClasses" }] : []));
|
|
56441
|
+
this.percentageClasses = computed(() => {
|
|
56442
|
+
return this.isLightMode()
|
|
56443
|
+
? 'text-slate-600'
|
|
56444
|
+
: 'text-slate-400';
|
|
56445
|
+
}, ...(ngDevMode ? [{ debugName: "percentageClasses" }] : []));
|
|
56446
|
+
}
|
|
56447
|
+
static { this.ɵfac = function ContentGenerationProgressComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ContentGenerationProgressComponent)(); }; }
|
|
56448
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ContentGenerationProgressComponent, selectors: [["symphiq-content-generation-progress"]], inputs: { itemStatus: [1, "itemStatus"], title: [1, "title"], subtitle: [1, "subtitle"], viewMode: [1, "viewMode"], showIcon: [1, "showIcon"] }, decls: 31, vars: 21, consts: [[1, "flex-1", "flex", "items-center", "justify-center", "px-4", "py-12", 3, "ngClass"], [1, "max-w-3xl", "w-full", "space-y-8"], [1, "text-center", "space-y-3"], [1, "flex", "items-center", "justify-center", "mb-4"], [1, "relative", "w-20", "h-20", "rounded-2xl", "flex", "items-center", "justify-center", "icon-pulse", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-10", "h-10"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 10V3L4 14h7v7l9-11h-7z"], [1, "absolute", "inset-0", "rounded-2xl", "icon-glow"], [1, "text-3xl", "sm:text-4xl", "font-bold", 3, "ngClass"], [1, "text-base", "sm:text-lg", "max-w-2xl", "mx-auto", 3, "ngClass"], [1, "space-y-4"], [1, "text-center"], [1, "text-lg", "sm:text-xl", "font-medium", "message-fade", 3, "ngClass"], [1, "relative", "h-3", "rounded-full", "overflow-visible", 3, "ngClass"], [1, "absolute", "inset-0", "rounded-full", 3, "ngClass"], [1, "absolute", "inset-y-0", "left-0", "rounded-full", "transition-all", "duration-700", "ease-out", "overflow-hidden", 3, "ngClass"], [1, "absolute", "inset-0", "shimmer-effect"], [1, "absolute", "inset-0", "overflow-hidden", "rounded-full"], [1, "dots-container", "h-full"], [1, "dot", "dot-1", 3, "ngClass"], [1, "dot", "dot-2", 3, "ngClass"], [1, "dot", "dot-3", 3, "ngClass"], [1, "dot", "dot-4", 3, "ngClass"], [1, "dot", "dot-5", 3, "ngClass"], [1, "absolute", "top-1/2", "-translate-y-1/2", "w-4", "h-4", "rounded-full", "blur-md", "transition-all", "duration-700", "ease-out", 2, "margin-left", "-8px", 3, "ngClass", "left"], [1, "text-sm", "font-medium", "tabular-nums", 3, "ngClass"], [1, "absolute", "top-1/2", "-translate-y-1/2", "w-4", "h-4", "rounded-full", "blur-md", "transition-all", "duration-700", "ease-out", 2, "margin-left", "-8px", 3, "ngClass"]], template: function ContentGenerationProgressComponent_Template(rf, ctx) { if (rf & 1) {
|
|
56449
|
+
i0.ɵɵelementStart(0, "div", 0)(1, "div", 1)(2, "div", 2)(3, "div", 3)(4, "div", 4);
|
|
56450
|
+
i0.ɵɵnamespaceSVG();
|
|
56451
|
+
i0.ɵɵelementStart(5, "svg", 5);
|
|
56452
|
+
i0.ɵɵelement(6, "path", 6);
|
|
56453
|
+
i0.ɵɵelementEnd();
|
|
56454
|
+
i0.ɵɵnamespaceHTML();
|
|
56455
|
+
i0.ɵɵelement(7, "div", 7);
|
|
56456
|
+
i0.ɵɵelementEnd()();
|
|
56457
|
+
i0.ɵɵelementStart(8, "h2", 8);
|
|
56458
|
+
i0.ɵɵtext(9);
|
|
56459
|
+
i0.ɵɵelementEnd();
|
|
56460
|
+
i0.ɵɵelementStart(10, "p", 9);
|
|
56461
|
+
i0.ɵɵtext(11);
|
|
56462
|
+
i0.ɵɵelementEnd()();
|
|
56463
|
+
i0.ɵɵelementStart(12, "div", 10)(13, "div", 11)(14, "p", 12);
|
|
56464
|
+
i0.ɵɵtext(15);
|
|
56465
|
+
i0.ɵɵelementEnd()();
|
|
56466
|
+
i0.ɵɵelementStart(16, "div", 13);
|
|
56467
|
+
i0.ɵɵelement(17, "div", 14);
|
|
56468
|
+
i0.ɵɵelementStart(18, "div", 15);
|
|
56469
|
+
i0.ɵɵelement(19, "div", 16);
|
|
56470
|
+
i0.ɵɵelementEnd();
|
|
56471
|
+
i0.ɵɵelementStart(20, "div", 17)(21, "div", 18);
|
|
56472
|
+
i0.ɵɵelement(22, "div", 19)(23, "div", 20)(24, "div", 21)(25, "div", 22)(26, "div", 23);
|
|
56473
|
+
i0.ɵɵelementEnd()();
|
|
56474
|
+
i0.ɵɵconditionalCreate(27, ContentGenerationProgressComponent_Conditional_27_Template, 1, 3, "div", 24);
|
|
56475
|
+
i0.ɵɵelementEnd();
|
|
56476
|
+
i0.ɵɵelementStart(28, "div", 11)(29, "span", 25);
|
|
56477
|
+
i0.ɵɵtext(30);
|
|
56478
|
+
i0.ɵɵelementEnd()()()()();
|
|
56479
|
+
} if (rf & 2) {
|
|
56480
|
+
i0.ɵɵproperty("ngClass", ctx.containerClasses());
|
|
56481
|
+
i0.ɵɵadvance(4);
|
|
56482
|
+
i0.ɵɵproperty("ngClass", ctx.iconContainerClasses());
|
|
56483
|
+
i0.ɵɵadvance(4);
|
|
56484
|
+
i0.ɵɵproperty("ngClass", ctx.titleClasses());
|
|
56485
|
+
i0.ɵɵadvance();
|
|
56486
|
+
i0.ɵɵtextInterpolate1(" ", ctx.title(), " ");
|
|
56487
|
+
i0.ɵɵadvance();
|
|
56488
|
+
i0.ɵɵproperty("ngClass", ctx.subtitleClasses());
|
|
56489
|
+
i0.ɵɵadvance();
|
|
56490
|
+
i0.ɵɵtextInterpolate1(" ", ctx.subtitle(), " ");
|
|
56491
|
+
i0.ɵɵadvance(3);
|
|
56492
|
+
i0.ɵɵproperty("ngClass", ctx.progressMessageClasses());
|
|
56493
|
+
i0.ɵɵadvance();
|
|
56494
|
+
i0.ɵɵtextInterpolate1(" ", ctx.progressMessage(), " ");
|
|
56495
|
+
i0.ɵɵadvance();
|
|
56496
|
+
i0.ɵɵproperty("ngClass", ctx.progressBarContainerClasses());
|
|
56497
|
+
i0.ɵɵadvance();
|
|
56498
|
+
i0.ɵɵproperty("ngClass", ctx.progressBarBackgroundClasses());
|
|
56499
|
+
i0.ɵɵadvance();
|
|
56500
|
+
i0.ɵɵstyleProp("width", ctx.progressPercentage(), "%");
|
|
56501
|
+
i0.ɵɵproperty("ngClass", ctx.progressBarFillClasses());
|
|
56502
|
+
i0.ɵɵadvance(4);
|
|
56503
|
+
i0.ɵɵproperty("ngClass", ctx.dotClasses());
|
|
56504
|
+
i0.ɵɵadvance();
|
|
56505
|
+
i0.ɵɵproperty("ngClass", ctx.dotClasses());
|
|
56506
|
+
i0.ɵɵadvance();
|
|
56507
|
+
i0.ɵɵproperty("ngClass", ctx.dotClasses());
|
|
56508
|
+
i0.ɵɵadvance();
|
|
56509
|
+
i0.ɵɵproperty("ngClass", ctx.dotClasses());
|
|
56510
|
+
i0.ɵɵadvance();
|
|
56511
|
+
i0.ɵɵproperty("ngClass", ctx.dotClasses());
|
|
56512
|
+
i0.ɵɵadvance();
|
|
56513
|
+
i0.ɵɵconditional(ctx.progressPercentage() > 0 && ctx.progressPercentage() < 100 ? 27 : -1);
|
|
56514
|
+
i0.ɵɵadvance(2);
|
|
56515
|
+
i0.ɵɵproperty("ngClass", ctx.percentageClasses());
|
|
56516
|
+
i0.ɵɵadvance();
|
|
56517
|
+
i0.ɵɵtextInterpolate1(" ", ctx.progressPercentage(), "% complete ");
|
|
56518
|
+
} }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_icon-pulse{0%,to{transform:scale(1);opacity:1}50%{transform:scale(1.05);opacity:.9}}@keyframes _ngcontent-%COMP%_icon-glow-pulse{0%,to{opacity:.3;transform:scale(1)}50%{opacity:.6;transform:scale(1.2)}}@keyframes _ngcontent-%COMP%_shimmer{0%{transform:translate(-100%)}to{transform:translate(100%)}}@keyframes _ngcontent-%COMP%_dots-move{0%{transform:translate(-20px);opacity:0}20%{opacity:1}80%{opacity:1}to{transform:translate(calc(100vw + 20px));opacity:0}}@keyframes _ngcontent-%COMP%_message-fade{0%,to{opacity:1}50%{opacity:.7}}.icon-pulse[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_icon-pulse 2s ease-in-out infinite}.icon-glow[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_icon-glow-pulse 2s ease-in-out infinite}.shimmer-effect[_ngcontent-%COMP%]{background:linear-gradient(90deg,transparent 0%,rgba(255,255,255,.3) 50%,transparent 100%);animation:_ngcontent-%COMP%_shimmer 2s ease-in-out infinite}.message-fade[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_message-fade 3s ease-in-out infinite}.dots-container[_ngcontent-%COMP%]{position:relative;width:100%}.dot[_ngcontent-%COMP%]{position:absolute;top:50%;width:8px;height:8px;border-radius:50%;transform:translateY(-50%);animation:_ngcontent-%COMP%_dots-move 3s linear infinite}.dot-1[_ngcontent-%COMP%]{animation-delay:0s}.dot-2[_ngcontent-%COMP%]{animation-delay:.6s}.dot-3[_ngcontent-%COMP%]{animation-delay:1.2s}.dot-4[_ngcontent-%COMP%]{animation-delay:1.8s}.dot-5[_ngcontent-%COMP%]{animation-delay:2.4s}@media (prefers-reduced-motion: reduce){.icon-pulse[_ngcontent-%COMP%], .icon-glow[_ngcontent-%COMP%], .shimmer-effect[_ngcontent-%COMP%], .message-fade[_ngcontent-%COMP%], .dot[_ngcontent-%COMP%]{animation:none}}"], changeDetection: 0 }); }
|
|
56519
|
+
}
|
|
56520
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ContentGenerationProgressComponent, [{
|
|
56521
|
+
type: Component,
|
|
56522
|
+
args: [{ selector: 'symphiq-content-generation-progress', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
56523
|
+
<div [ngClass]="containerClasses()" class="flex-1 flex items-center justify-center px-4 py-12">
|
|
56524
|
+
<div class="max-w-3xl w-full space-y-8">
|
|
56525
|
+
<!-- Title Section -->
|
|
56526
|
+
<div class="text-center space-y-3">
|
|
56527
|
+
<div class="flex items-center justify-center mb-4">
|
|
56528
|
+
<div [ngClass]="iconContainerClasses()" class="relative w-20 h-20 rounded-2xl flex items-center justify-center icon-pulse">
|
|
56529
|
+
<svg class="w-10 h-10" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
56530
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"></path>
|
|
56531
|
+
</svg>
|
|
56532
|
+
<div class="absolute inset-0 rounded-2xl icon-glow"></div>
|
|
56533
|
+
</div>
|
|
56534
|
+
</div>
|
|
56535
|
+
|
|
56536
|
+
<h2 [ngClass]="titleClasses()" class="text-3xl sm:text-4xl font-bold">
|
|
56537
|
+
{{ title() }}
|
|
56538
|
+
</h2>
|
|
56539
|
+
|
|
56540
|
+
<p [ngClass]="subtitleClasses()" class="text-base sm:text-lg max-w-2xl mx-auto">
|
|
56541
|
+
{{ subtitle() }}
|
|
56542
|
+
</p>
|
|
56543
|
+
</div>
|
|
56544
|
+
|
|
56545
|
+
<!-- Progress Section -->
|
|
56546
|
+
<div class="space-y-4">
|
|
56547
|
+
<!-- Progress Message -->
|
|
56548
|
+
<div class="text-center">
|
|
56549
|
+
<p [ngClass]="progressMessageClasses()" class="text-lg sm:text-xl font-medium message-fade">
|
|
56550
|
+
{{ progressMessage() }}
|
|
56551
|
+
</p>
|
|
56552
|
+
</div>
|
|
56553
|
+
|
|
56554
|
+
<!-- Progress Bar Container -->
|
|
56555
|
+
<div [ngClass]="progressBarContainerClasses()" class="relative h-3 rounded-full overflow-visible">
|
|
56556
|
+
<!-- Background Track -->
|
|
56557
|
+
<div [ngClass]="progressBarBackgroundClasses()" class="absolute inset-0 rounded-full"></div>
|
|
56558
|
+
|
|
56559
|
+
<!-- Solid Fill with Gradient -->
|
|
56560
|
+
<div
|
|
56561
|
+
[ngClass]="progressBarFillClasses()"
|
|
56562
|
+
[style.width.%]="progressPercentage()"
|
|
56563
|
+
class="absolute inset-y-0 left-0 rounded-full transition-all duration-700 ease-out overflow-hidden">
|
|
56564
|
+
<!-- Inner shimmer effect -->
|
|
56565
|
+
<div class="absolute inset-0 shimmer-effect"></div>
|
|
56566
|
+
</div>
|
|
56567
|
+
|
|
56568
|
+
<!-- Animated Dots Overlay (shows beyond the solid bar) -->
|
|
56569
|
+
<div class="absolute inset-0 overflow-hidden rounded-full">
|
|
56570
|
+
<div class="dots-container h-full">
|
|
56571
|
+
<div [ngClass]="dotClasses()" class="dot dot-1"></div>
|
|
56572
|
+
<div [ngClass]="dotClasses()" class="dot dot-2"></div>
|
|
56573
|
+
<div [ngClass]="dotClasses()" class="dot dot-3"></div>
|
|
56574
|
+
<div [ngClass]="dotClasses()" class="dot dot-4"></div>
|
|
56575
|
+
<div [ngClass]="dotClasses()" class="dot dot-5"></div>
|
|
56576
|
+
</div>
|
|
56577
|
+
</div>
|
|
56578
|
+
|
|
56579
|
+
<!-- Glow effect at the progress edge -->
|
|
56580
|
+
@if (progressPercentage() > 0 && progressPercentage() < 100) {
|
|
56581
|
+
<div
|
|
56582
|
+
[ngClass]="progressGlowClasses()"
|
|
56583
|
+
[style.left.%]="progressPercentage()"
|
|
56584
|
+
class="absolute top-1/2 -translate-y-1/2 w-4 h-4 rounded-full blur-md transition-all duration-700 ease-out"
|
|
56585
|
+
style="margin-left: -8px;">
|
|
56586
|
+
</div>
|
|
56587
|
+
}
|
|
56588
|
+
</div>
|
|
56589
|
+
|
|
56590
|
+
<!-- Progress Percentage -->
|
|
56591
|
+
<div class="text-center">
|
|
56592
|
+
<span [ngClass]="percentageClasses()" class="text-sm font-medium tabular-nums">
|
|
56593
|
+
{{ progressPercentage() }}% complete
|
|
56594
|
+
</span>
|
|
56595
|
+
</div>
|
|
56596
|
+
</div>
|
|
56597
|
+
</div>
|
|
56598
|
+
</div>
|
|
56599
|
+
`, styles: ["@keyframes icon-pulse{0%,to{transform:scale(1);opacity:1}50%{transform:scale(1.05);opacity:.9}}@keyframes icon-glow-pulse{0%,to{opacity:.3;transform:scale(1)}50%{opacity:.6;transform:scale(1.2)}}@keyframes shimmer{0%{transform:translate(-100%)}to{transform:translate(100%)}}@keyframes dots-move{0%{transform:translate(-20px);opacity:0}20%{opacity:1}80%{opacity:1}to{transform:translate(calc(100vw + 20px));opacity:0}}@keyframes message-fade{0%,to{opacity:1}50%{opacity:.7}}.icon-pulse{animation:icon-pulse 2s ease-in-out infinite}.icon-glow{animation:icon-glow-pulse 2s ease-in-out infinite}.shimmer-effect{background:linear-gradient(90deg,transparent 0%,rgba(255,255,255,.3) 50%,transparent 100%);animation:shimmer 2s ease-in-out infinite}.message-fade{animation:message-fade 3s ease-in-out infinite}.dots-container{position:relative;width:100%}.dot{position:absolute;top:50%;width:8px;height:8px;border-radius:50%;transform:translateY(-50%);animation:dots-move 3s linear infinite}.dot-1{animation-delay:0s}.dot-2{animation-delay:.6s}.dot-3{animation-delay:1.2s}.dot-4{animation-delay:1.8s}.dot-5{animation-delay:2.4s}@media (prefers-reduced-motion: reduce){.icon-pulse,.icon-glow,.shimmer-effect,.message-fade,.dot{animation:none}}\n"] }]
|
|
56600
|
+
}], null, { itemStatus: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemStatus", required: false }] }], title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], subtitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "subtitle", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], showIcon: [{ type: i0.Input, args: [{ isSignal: true, alias: "showIcon", required: false }] }] }); })();
|
|
56601
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ContentGenerationProgressComponent, { className: "ContentGenerationProgressComponent", filePath: "lib/components/shared/content-generation-progress.component.ts", lineNumber: 214 }); })();
|
|
56602
|
+
|
|
56365
56603
|
const _c0$n = () => [];
|
|
56366
|
-
function
|
|
56367
|
-
i0.ɵɵ
|
|
56604
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
56605
|
+
const _r1 = i0.ɵɵgetCurrentView();
|
|
56606
|
+
i0.ɵɵelementStart(0, "div", 8)(1, "symphiq-search-button", 19);
|
|
56607
|
+
i0.ɵɵlistener("searchClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template_symphiq_search_button_searchClick_1_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openSearch()); });
|
|
56608
|
+
i0.ɵɵelementEnd();
|
|
56609
|
+
i0.ɵɵelementStart(2, "button", 20);
|
|
56610
|
+
i0.ɵɵlistener("click", function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template_button_click_2_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openViewModeSwitcher()); });
|
|
56611
|
+
i0.ɵɵnamespaceSVG();
|
|
56612
|
+
i0.ɵɵelementStart(3, "svg", 21);
|
|
56613
|
+
i0.ɵɵelement(4, "path", 22)(5, "path", 23);
|
|
56614
|
+
i0.ɵɵelementEnd();
|
|
56615
|
+
i0.ɵɵnamespaceHTML();
|
|
56616
|
+
i0.ɵɵelementStart(6, "span");
|
|
56617
|
+
i0.ɵɵtext(7);
|
|
56618
|
+
i0.ɵɵelementEnd()()();
|
|
56619
|
+
} if (rf & 2) {
|
|
56620
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
56621
|
+
i0.ɵɵadvance();
|
|
56622
|
+
i0.ɵɵproperty("isLightMode", ctx_r1.isLightMode());
|
|
56623
|
+
i0.ɵɵadvance();
|
|
56624
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getViewModeButtonClasses());
|
|
56625
|
+
i0.ɵɵadvance(5);
|
|
56626
|
+
i0.ɵɵtextInterpolate(ctx_r1.displayModeLabel());
|
|
56627
|
+
} }
|
|
56628
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_22_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
56629
|
+
i0.ɵɵelementStart(0, "span", 24);
|
|
56368
56630
|
i0.ɵɵtext(1, "\u203A");
|
|
56369
56631
|
i0.ɵɵelementEnd();
|
|
56370
|
-
i0.ɵɵelementStart(2, "span",
|
|
56632
|
+
i0.ɵɵelementStart(2, "span", 24);
|
|
56371
56633
|
i0.ɵɵtext(3);
|
|
56372
56634
|
i0.ɵɵelementEnd();
|
|
56373
56635
|
} if (rf & 2) {
|
|
56374
|
-
const
|
|
56375
|
-
i0.ɵɵclassProp("opacity-0",
|
|
56376
|
-
i0.ɵɵproperty("ngClass",
|
|
56636
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
56637
|
+
i0.ɵɵclassProp("opacity-0", ctx_r1.subsectionTitleFading())("opacity-100", !ctx_r1.subsectionTitleFading());
|
|
56638
|
+
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-400" : "text-slate-500");
|
|
56377
56639
|
i0.ɵɵadvance(2);
|
|
56378
|
-
i0.ɵɵclassProp("opacity-0",
|
|
56379
|
-
i0.ɵɵproperty("ngClass",
|
|
56640
|
+
i0.ɵɵclassProp("opacity-0", ctx_r1.subsectionTitleFading())("opacity-100", !ctx_r1.subsectionTitleFading());
|
|
56641
|
+
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-500" : "text-slate-500");
|
|
56380
56642
|
i0.ɵɵadvance();
|
|
56381
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
56643
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r1.currentSubsectionTitle(), " ");
|
|
56382
56644
|
} }
|
|
56383
|
-
function
|
|
56384
|
-
i0.ɵɵelementStart(0, "div",
|
|
56645
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_22_Template(rf, ctx) { if (rf & 1) {
|
|
56646
|
+
i0.ɵɵelementStart(0, "div", 12)(1, "span", 24);
|
|
56385
56647
|
i0.ɵɵtext(2);
|
|
56386
56648
|
i0.ɵɵelementEnd();
|
|
56387
|
-
i0.ɵɵconditionalCreate(3,
|
|
56649
|
+
i0.ɵɵconditionalCreate(3, SymphiqBusinessAnalysisDashboardComponent_Conditional_22_Conditional_3_Template, 4, 11);
|
|
56388
56650
|
i0.ɵɵelementEnd();
|
|
56389
56651
|
} if (rf & 2) {
|
|
56390
|
-
const
|
|
56652
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
56391
56653
|
i0.ɵɵadvance();
|
|
56392
|
-
i0.ɵɵclassProp("opacity-0",
|
|
56393
|
-
i0.ɵɵproperty("ngClass",
|
|
56654
|
+
i0.ɵɵclassProp("opacity-0", ctx_r1.sectionTitleFading())("opacity-100", !ctx_r1.sectionTitleFading());
|
|
56655
|
+
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-600 font-medium" : "text-slate-400 font-medium");
|
|
56394
56656
|
i0.ɵɵadvance();
|
|
56395
|
-
i0.ɵɵtextInterpolate1(" ",
|
|
56657
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r1.currentSectionTitle(), " ");
|
|
56396
56658
|
i0.ɵɵadvance();
|
|
56397
|
-
i0.ɵɵconditional(
|
|
56659
|
+
i0.ɵɵconditional(ctx_r1.currentSubsectionTitle() ? 3 : -1);
|
|
56398
56660
|
} }
|
|
56399
|
-
function
|
|
56661
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_23_Template(rf, ctx) { if (rf & 1) {
|
|
56400
56662
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
56401
|
-
i0.ɵɵelementStart(0, "symphiq-
|
|
56402
|
-
i0.ɵɵlistener("
|
|
56663
|
+
i0.ɵɵelementStart(0, "symphiq-search-button", 25);
|
|
56664
|
+
i0.ɵɵlistener("searchClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_23_Template_symphiq_search_button_searchClick_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openSearch()); });
|
|
56403
56665
|
i0.ɵɵelementEnd();
|
|
56666
|
+
i0.ɵɵelementStart(1, "button", 26);
|
|
56667
|
+
i0.ɵɵlistener("click", function SymphiqBusinessAnalysisDashboardComponent_Conditional_23_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openViewModeSwitcher()); });
|
|
56668
|
+
i0.ɵɵnamespaceSVG();
|
|
56669
|
+
i0.ɵɵelementStart(2, "svg", 21);
|
|
56670
|
+
i0.ɵɵelement(3, "path", 22)(4, "path", 23);
|
|
56671
|
+
i0.ɵɵelementEnd()();
|
|
56404
56672
|
} if (rf & 2) {
|
|
56405
|
-
const
|
|
56406
|
-
i0.ɵɵproperty("
|
|
56673
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
56674
|
+
i0.ɵɵproperty("isLightMode", ctx_r1.isLightMode())("minimized", true);
|
|
56675
|
+
i0.ɵɵadvance();
|
|
56676
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getViewModeButtonClasses());
|
|
56407
56677
|
} }
|
|
56408
|
-
function
|
|
56409
|
-
const
|
|
56410
|
-
i0.ɵɵ
|
|
56411
|
-
i0.ɵɵ
|
|
56412
|
-
i0.ɵɵelement(3, "symphiq-welcome-banner", 29);
|
|
56678
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
56679
|
+
const _r4 = i0.ɵɵgetCurrentView();
|
|
56680
|
+
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 29);
|
|
56681
|
+
i0.ɵɵlistener("stepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); })("nextStepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); });
|
|
56413
56682
|
i0.ɵɵelementEnd();
|
|
56414
|
-
|
|
56415
|
-
|
|
56683
|
+
} if (rf & 2) {
|
|
56684
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
56685
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentStepId", ctx_r1.JourneyStepIdEnum.BUSINESS_ANALYSIS)("showNextStepAction", false)("forDemo", ctx_r1.forDemo())("maxAccessibleStepId", ctx_r1.maxAccessibleStepId());
|
|
56686
|
+
} }
|
|
56687
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Template(rf, ctx) { if (rf & 1) {
|
|
56688
|
+
i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 27);
|
|
56689
|
+
i0.ɵɵelement(1, "symphiq-content-generation-progress", 28);
|
|
56690
|
+
} if (rf & 2) {
|
|
56691
|
+
let tmp_3_0;
|
|
56692
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
56693
|
+
i0.ɵɵconditional(!ctx_r1.isOnboarded() ? 0 : -1);
|
|
56694
|
+
i0.ɵɵadvance();
|
|
56695
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("title", "We are generating a new Business Analysis for " + (((tmp_3_0 = ctx_r1.currentProfile()) == null ? null : tmp_3_0.profileStructured == null ? null : tmp_3_0.profileStructured.businessName) || "your business") + ".")("subtitle", "It will appear here when ready. You can check back later as this will take a few minutes to complete.");
|
|
56696
|
+
} }
|
|
56697
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
56698
|
+
const _r6 = i0.ɵɵgetCurrentView();
|
|
56699
|
+
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 29);
|
|
56700
|
+
i0.ɵɵlistener("stepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); })("nextStepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); });
|
|
56701
|
+
i0.ɵɵelementEnd();
|
|
56702
|
+
} if (rf & 2) {
|
|
56703
|
+
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
56704
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentStepId", ctx_r1.JourneyStepIdEnum.BUSINESS_ANALYSIS)("showNextStepAction", ctx_r1.showNextStepAction())("forDemo", ctx_r1.forDemo())("maxAccessibleStepId", ctx_r1.maxAccessibleStepId());
|
|
56705
|
+
} }
|
|
56706
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
56707
|
+
const _r5 = i0.ɵɵgetCurrentView();
|
|
56708
|
+
i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 27);
|
|
56709
|
+
i0.ɵɵelementStart(1, "div", 6)(2, "div", 30);
|
|
56710
|
+
i0.ɵɵelement(3, "symphiq-welcome-banner", 31);
|
|
56711
|
+
i0.ɵɵelementEnd();
|
|
56712
|
+
i0.ɵɵelementStart(4, "div", 30)(5, "symphiq-recommendations-tiled-grid", 32);
|
|
56713
|
+
i0.ɵɵlistener("viewMoreClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Template_symphiq_recommendations_tiled_grid_viewMoreClick_5_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.openRecommendationDetailsModal($event)); });
|
|
56416
56714
|
i0.ɵɵelementEnd()();
|
|
56417
56715
|
i0.ɵɵelementStart(6, "div");
|
|
56418
|
-
i0.ɵɵelement(7, "symphiq-collapsible-section-group",
|
|
56716
|
+
i0.ɵɵelement(7, "symphiq-collapsible-section-group", 33);
|
|
56419
56717
|
i0.ɵɵelementEnd()();
|
|
56420
56718
|
} if (rf & 2) {
|
|
56421
|
-
let
|
|
56422
|
-
const
|
|
56423
|
-
i0.ɵɵconditional(!
|
|
56719
|
+
let tmp_4_0;
|
|
56720
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
56721
|
+
i0.ɵɵconditional(!ctx_r1.isOnboarded() ? 0 : -1);
|
|
56424
56722
|
i0.ɵɵadvance(3);
|
|
56425
|
-
i0.ɵɵproperty("viewMode",
|
|
56723
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("businessName", ((tmp_4_0 = ctx_r1.currentProfile()) == null ? null : tmp_4_0.profileStructured == null ? null : tmp_4_0.profileStructured.businessName) || "your business")("isOnboarded", ctx_r1.isOnboarded());
|
|
56426
56724
|
i0.ɵɵadvance(2);
|
|
56427
|
-
i0.ɵɵproperty("recommendations",
|
|
56725
|
+
i0.ɵɵproperty("recommendations", ctx_r1.recommendationItems())("viewMode", ctx_r1.viewMode());
|
|
56428
56726
|
i0.ɵɵadvance(2);
|
|
56429
|
-
i0.ɵɵproperty("sections",
|
|
56727
|
+
i0.ɵɵproperty("sections", ctx_r1.nonRecommendationSections())("viewMode", ctx_r1.viewMode());
|
|
56430
56728
|
} }
|
|
56431
|
-
function
|
|
56432
|
-
i0.ɵɵelementStart(0, "div",
|
|
56433
|
-
i0.ɵɵelement(1, "symphiq-section-divider",
|
|
56729
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_1_For_1_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
56730
|
+
i0.ɵɵelementStart(0, "div", 35);
|
|
56731
|
+
i0.ɵɵelement(1, "symphiq-section-divider", 36);
|
|
56434
56732
|
i0.ɵɵelementEnd();
|
|
56435
56733
|
} if (rf & 2) {
|
|
56436
|
-
const ɵ$
|
|
56437
|
-
const
|
|
56734
|
+
const ɵ$index_108_r7 = i0.ɵɵnextContext().$index;
|
|
56735
|
+
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
56438
56736
|
i0.ɵɵadvance();
|
|
56439
|
-
i0.ɵɵproperty("viewMode",
|
|
56737
|
+
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("subsections", ctx_r1.sections()[ɵ$index_108_r7 + 1].subsections || i0.ɵɵpureFunction0(2, _c0$n));
|
|
56440
56738
|
} }
|
|
56441
|
-
function
|
|
56442
|
-
i0.ɵɵelement(0, "symphiq-profile-section",
|
|
56443
|
-
i0.ɵɵconditionalCreate(1,
|
|
56739
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_1_For_1_Template(rf, ctx) { if (rf & 1) {
|
|
56740
|
+
i0.ɵɵelement(0, "symphiq-profile-section", 34);
|
|
56741
|
+
i0.ɵɵconditionalCreate(1, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_1_For_1_Conditional_1_Template, 2, 3, "div", 35);
|
|
56444
56742
|
} if (rf & 2) {
|
|
56445
|
-
const
|
|
56446
|
-
const ɵ$
|
|
56447
|
-
const ɵ$
|
|
56448
|
-
const
|
|
56449
|
-
i0.ɵɵproperty("section",
|
|
56743
|
+
const section_r8 = ctx.$implicit;
|
|
56744
|
+
const ɵ$index_108_r7 = ctx.$index;
|
|
56745
|
+
const ɵ$count_108_r9 = ctx.$count;
|
|
56746
|
+
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
56747
|
+
i0.ɵɵproperty("section", section_r8)("viewMode", ctx_r1.viewMode())("forceExpanded", !ctx_r1.isCompactView());
|
|
56450
56748
|
i0.ɵɵadvance();
|
|
56451
|
-
i0.ɵɵconditional(!(ɵ$
|
|
56749
|
+
i0.ɵɵconditional(!(ɵ$index_108_r7 === ɵ$count_108_r9 - 1) ? 1 : -1);
|
|
56452
56750
|
} }
|
|
56453
|
-
function
|
|
56454
|
-
i0.ɵɵrepeaterCreate(0,
|
|
56751
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
56752
|
+
i0.ɵɵrepeaterCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_1_For_1_Template, 2, 4, null, null, i0.ɵɵcomponentInstance().trackBySectionId, true);
|
|
56455
56753
|
} if (rf & 2) {
|
|
56456
|
-
const
|
|
56457
|
-
i0.ɵɵrepeater(
|
|
56754
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
56755
|
+
i0.ɵɵrepeater(ctx_r1.sections());
|
|
56458
56756
|
} }
|
|
56459
|
-
function
|
|
56460
|
-
i0.ɵɵ
|
|
56757
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Template(rf, ctx) { if (rf & 1) {
|
|
56758
|
+
i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Template, 8, 8)(1, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_1_Template, 2, 0);
|
|
56461
56759
|
} if (rf & 2) {
|
|
56462
|
-
const
|
|
56463
|
-
i0.ɵɵ
|
|
56760
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
56761
|
+
i0.ɵɵconditional(ctx_r1.isSimplifiedView() ? 0 : 1);
|
|
56464
56762
|
} }
|
|
56465
|
-
function
|
|
56466
|
-
i0.ɵɵelement(0, "symphiq-
|
|
56763
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Template(rf, ctx) { if (rf & 1) {
|
|
56764
|
+
i0.ɵɵelement(0, "symphiq-section-navigation", 14);
|
|
56467
56765
|
} if (rf & 2) {
|
|
56468
|
-
const
|
|
56469
|
-
i0.ɵɵproperty("sections",
|
|
56766
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
56767
|
+
i0.ɵɵproperty("sections", ctx_r1.sections())("viewMode", ctx_r1.viewMode())("embedded", ctx_r1.embedded())("scrollElement", ctx_r1.scrollElement() ?? undefined);
|
|
56768
|
+
} }
|
|
56769
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_28_Template(rf, ctx) { if (rf & 1) {
|
|
56770
|
+
i0.ɵɵelement(0, "symphiq-floating-toc", 14);
|
|
56771
|
+
} if (rf & 2) {
|
|
56772
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
56773
|
+
i0.ɵɵproperty("sections", ctx_r1.sections())("viewMode", ctx_r1.viewMode())("embedded", ctx_r1.embedded())("scrollElement", ctx_r1.scrollElement() ?? undefined);
|
|
56470
56774
|
} }
|
|
56471
|
-
function
|
|
56775
|
+
function SymphiqBusinessAnalysisDashboardComponent_Conditional_30_Template(rf, ctx) { if (rf & 1) {
|
|
56472
56776
|
i0.ɵɵelementStart(0, "div", 0);
|
|
56473
56777
|
i0.ɵɵelement(1, "div", 0);
|
|
56474
56778
|
i0.ɵɵelementEnd();
|
|
56475
56779
|
} if (rf & 2) {
|
|
56476
|
-
const
|
|
56477
|
-
i0.ɵɵproperty("ngClass",
|
|
56780
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
56781
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getLoadingOverlayClasses());
|
|
56478
56782
|
i0.ɵɵadvance();
|
|
56479
|
-
i0.ɵɵproperty("ngClass",
|
|
56783
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getSpinnerClasses());
|
|
56480
56784
|
} }
|
|
56481
56785
|
class SymphiqBusinessAnalysisDashboardComponent {
|
|
56482
56786
|
sectionHasContent(section) {
|
|
@@ -56506,7 +56810,12 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
56506
56810
|
this.stepClick = output();
|
|
56507
56811
|
this.nextStepClick = output();
|
|
56508
56812
|
this.JourneyStepIdEnum = JourneyStepIdEnum;
|
|
56813
|
+
this.AiDynamicContentStatusEnum = AiDynamicContentStatusEnum;
|
|
56509
56814
|
this.showNextStepAction = computed(() => this.profile()?.selfContentStatus === AiDynamicContentStatusEnum.GENERATED, ...(ngDevMode ? [{ debugName: "showNextStepAction" }] : []));
|
|
56815
|
+
this.isContentGenerating = computed(() => {
|
|
56816
|
+
const status = this.profile()?.selfContentStatus;
|
|
56817
|
+
return status === AiDynamicContentStatusEnum.REQUESTED || status === AiDynamicContentStatusEnum.GENERATING;
|
|
56818
|
+
}, ...(ngDevMode ? [{ debugName: "isContentGenerating" }] : []));
|
|
56510
56819
|
this.headerScrollService = inject(HeaderScrollService);
|
|
56511
56820
|
this.lookupService = inject(ProfileItemLookupService);
|
|
56512
56821
|
this.navigationService = inject(NavigationStateService);
|
|
@@ -56899,7 +57208,7 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
56899
57208
|
}
|
|
56900
57209
|
getContainerClasses() {
|
|
56901
57210
|
const positioning = this.embedded() ? '' : 'relative';
|
|
56902
|
-
return `${positioning} min-h-screen`.trim();
|
|
57211
|
+
return `${positioning} min-h-screen flex flex-col`.trim();
|
|
56903
57212
|
}
|
|
56904
57213
|
getBackgroundClasses() {
|
|
56905
57214
|
const positioning = this.embedded() ? 'absolute' : 'fixed';
|
|
@@ -56962,7 +57271,7 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
56962
57271
|
static { this.ɵfac = function SymphiqBusinessAnalysisDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqBusinessAnalysisDashboardComponent)(); }; }
|
|
56963
57272
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqBusinessAnalysisDashboardComponent, selectors: [["symphiq-business-analysis-dashboard"]], hostBindings: function SymphiqBusinessAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
56964
57273
|
i0.ɵɵlistener("scroll", function SymphiqBusinessAnalysisDashboardComponent_scroll_HostBindingHandler($event) { return ctx.onScroll($event); }, i0.ɵɵresolveWindow)("keydown", function SymphiqBusinessAnalysisDashboardComponent_keydown_HostBindingHandler($event) { return ctx.handleKeyDown($event); }, i0.ɵɵresolveDocument);
|
|
56965
|
-
} }, inputs: { embedded: [1, "embedded"], profile: [1, "profile"], parentHeaderOffset: [1, "parentHeaderOffset"], requestedByUser: [1, "requestedByUser"], viewMode: [1, "viewMode"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick" }, decls:
|
|
57274
|
+
} }, inputs: { embedded: [1, "embedded"], profile: [1, "profile"], parentHeaderOffset: [1, "parentHeaderOffset"], requestedByUser: [1, "requestedByUser"], viewMode: [1, "viewMode"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick" }, decls: 35, vars: 59, consts: [[3, "ngClass"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "relative", "z-[51]", "flex-1", "flex", "flex-col"], [1, "sticky", "top-0", "z-50", 3, "ngClass"], [1, "transition-all", "duration-300", "ease-in-out", "overflow-hidden"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8"], [1, "flex", "items-center", "justify-between"], [1, "flex", "items-center", "gap-2"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-3"], [1, "flex-1", "min-w-0", "mr-4"], [1, "flex", "items-center", "gap-4"], [1, "flex", "items-center", "gap-2", "text-sm", "flex-shrink-0"], [1, "relative", "flex-1", "flex", "flex-col"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "viewMode", "embedded"], [3, "viewInContextRequested", "isLightMode"], [3, "searchChange", "resultSelected", "close", "isLightMode", "isOpen", "searchQuery", "results", "hasResults", "selectedIndex", "placeholder"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode", "isLoading"], [3, "searchClick", "isLightMode"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 12a3 3 0 11-6 0 3 3 0 016 0z"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"], [1, "transition-opacity", "duration-300", 3, "ngClass"], [3, "searchClick", "isLightMode", "minimized"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-2", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "title", "subtitle"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "mb-8"], [3, "viewMode", "businessName", "isOnboarded"], [3, "viewMoreClick", "recommendations", "viewMode"], [3, "sections", "viewMode"], [3, "section", "viewMode", "forceExpanded"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8"], [3, "viewMode", "subsections"]], template: function SymphiqBusinessAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
56966
57275
|
i0.ɵɵelementStart(0, "div", 0)(1, "div");
|
|
56967
57276
|
i0.ɵɵelement(2, "div", 1);
|
|
56968
57277
|
i0.ɵɵelementEnd();
|
|
@@ -56973,54 +57282,37 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
56973
57282
|
i0.ɵɵelementStart(12, "p", 0);
|
|
56974
57283
|
i0.ɵɵtext(13, " Business Profile & Analysis ");
|
|
56975
57284
|
i0.ɵɵelementEnd()();
|
|
56976
|
-
i0.ɵɵ
|
|
56977
|
-
i0.ɵɵ
|
|
56978
|
-
i0.ɵɵ
|
|
56979
|
-
i0.ɵɵ
|
|
56980
|
-
i0.ɵɵlistener("click", function SymphiqBusinessAnalysisDashboardComponent_Template_button_click_16_listener() { return ctx.openViewModeSwitcher(); });
|
|
56981
|
-
i0.ɵɵnamespaceSVG();
|
|
56982
|
-
i0.ɵɵelementStart(17, "svg", 11);
|
|
56983
|
-
i0.ɵɵelement(18, "path", 12)(19, "path", 13);
|
|
56984
|
-
i0.ɵɵelementEnd();
|
|
56985
|
-
i0.ɵɵnamespaceHTML();
|
|
56986
|
-
i0.ɵɵelementStart(20, "span");
|
|
56987
|
-
i0.ɵɵtext(21);
|
|
56988
|
-
i0.ɵɵelementEnd()()()()()();
|
|
56989
|
-
i0.ɵɵelementStart(22, "div", 5)(23, "div", 14)(24, "div", 7)(25, "div", 15)(26, "h1", 0);
|
|
56990
|
-
i0.ɵɵtext(27);
|
|
57285
|
+
i0.ɵɵconditionalCreate(14, SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template, 8, 3, "div", 8);
|
|
57286
|
+
i0.ɵɵelementEnd()()();
|
|
57287
|
+
i0.ɵɵelementStart(15, "div", 5)(16, "div", 9)(17, "div", 7)(18, "div", 10)(19, "h1", 0);
|
|
57288
|
+
i0.ɵɵtext(20);
|
|
56991
57289
|
i0.ɵɵelementEnd()();
|
|
56992
|
-
i0.ɵɵelementStart(
|
|
56993
|
-
i0.ɵɵconditionalCreate(
|
|
56994
|
-
i0.ɵɵ
|
|
56995
|
-
i0.ɵɵ
|
|
56996
|
-
i0.ɵɵ
|
|
56997
|
-
i0.ɵɵ
|
|
56998
|
-
i0.ɵɵlistener("click", function SymphiqBusinessAnalysisDashboardComponent_Template_button_click_31_listener() { return ctx.openViewModeSwitcher(); });
|
|
56999
|
-
i0.ɵɵnamespaceSVG();
|
|
57000
|
-
i0.ɵɵelementStart(32, "svg", 11);
|
|
57001
|
-
i0.ɵɵelement(33, "path", 12)(34, "path", 13);
|
|
57002
|
-
i0.ɵɵelementEnd()()()()()()();
|
|
57003
|
-
i0.ɵɵnamespaceHTML();
|
|
57004
|
-
i0.ɵɵelementStart(35, "main", 20);
|
|
57005
|
-
i0.ɵɵconditionalCreate(36, SymphiqBusinessAnalysisDashboardComponent_Conditional_36_Template, 8, 8)(37, SymphiqBusinessAnalysisDashboardComponent_Conditional_37_Template, 2, 0);
|
|
57290
|
+
i0.ɵɵelementStart(21, "div", 11);
|
|
57291
|
+
i0.ɵɵconditionalCreate(22, SymphiqBusinessAnalysisDashboardComponent_Conditional_22_Template, 4, 7, "div", 12);
|
|
57292
|
+
i0.ɵɵconditionalCreate(23, SymphiqBusinessAnalysisDashboardComponent_Conditional_23_Template, 5, 3);
|
|
57293
|
+
i0.ɵɵelementEnd()()()()();
|
|
57294
|
+
i0.ɵɵelementStart(24, "main", 13);
|
|
57295
|
+
i0.ɵɵconditionalCreate(25, SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Template, 2, 4)(26, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Template, 2, 1);
|
|
57006
57296
|
i0.ɵɵelementEnd();
|
|
57007
|
-
i0.ɵɵconditionalCreate(
|
|
57008
|
-
i0.ɵɵconditionalCreate(
|
|
57009
|
-
i0.ɵɵelement(
|
|
57297
|
+
i0.ɵɵconditionalCreate(27, SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Template, 1, 4, "symphiq-section-navigation", 14);
|
|
57298
|
+
i0.ɵɵconditionalCreate(28, SymphiqBusinessAnalysisDashboardComponent_Conditional_28_Template, 1, 4, "symphiq-floating-toc", 14);
|
|
57299
|
+
i0.ɵɵelement(29, "symphiq-floating-back-button", 15);
|
|
57010
57300
|
i0.ɵɵelementEnd();
|
|
57011
|
-
i0.ɵɵconditionalCreate(
|
|
57012
|
-
i0.ɵɵelement(
|
|
57013
|
-
i0.ɵɵelementStart(
|
|
57014
|
-
i0.ɵɵlistener("viewInContextRequested", function
|
|
57301
|
+
i0.ɵɵconditionalCreate(30, SymphiqBusinessAnalysisDashboardComponent_Conditional_30_Template, 2, 2, "div", 0);
|
|
57302
|
+
i0.ɵɵelement(31, "symphiq-tooltip-container");
|
|
57303
|
+
i0.ɵɵelementStart(32, "symphiq-business-analysis-modal", 16);
|
|
57304
|
+
i0.ɵɵlistener("viewInContextRequested", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_business_analysis_modal_viewInContextRequested_32_listener($event) { return ctx.handleViewInContext($event); });
|
|
57015
57305
|
i0.ɵɵelementEnd();
|
|
57016
|
-
i0.ɵɵelementStart(
|
|
57017
|
-
i0.ɵɵlistener("searchChange", function
|
|
57306
|
+
i0.ɵɵelementStart(33, "symphiq-search-modal", 17);
|
|
57307
|
+
i0.ɵɵlistener("searchChange", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_searchChange_33_listener($event) { return ctx.onSearchChange($event); })("resultSelected", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_resultSelected_33_listener($event) { return ctx.onSearchResultSelected($event); })("close", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_close_33_listener() { return ctx.closeSearch(); });
|
|
57018
57308
|
i0.ɵɵelementEnd();
|
|
57019
|
-
i0.ɵɵelementStart(
|
|
57020
|
-
i0.ɵɵlistener("close", function
|
|
57309
|
+
i0.ɵɵelementStart(34, "symphiq-view-mode-switcher-modal", 18);
|
|
57310
|
+
i0.ɵɵlistener("close", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_close_34_listener() { return ctx.closeViewModeSwitcher(); })("modeSelected", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_modeSelected_34_listener($event) { return ctx.handleDisplayModeChange($event); });
|
|
57021
57311
|
i0.ɵɵelementEnd()();
|
|
57022
57312
|
} if (rf & 2) {
|
|
57023
57313
|
let tmp_13_0;
|
|
57314
|
+
let tmp_15_0;
|
|
57315
|
+
let tmp_23_0;
|
|
57024
57316
|
let tmp_25_0;
|
|
57025
57317
|
i0.ɵɵproperty("ngClass", ctx.getContainerClasses());
|
|
57026
57318
|
i0.ɵɵadvance();
|
|
@@ -57042,12 +57334,8 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
57042
57334
|
i0.ɵɵtextInterpolate1(" ", ((tmp_13_0 = ctx.currentProfile()) == null ? null : tmp_13_0.profileStructured == null ? null : tmp_13_0.profileStructured.businessName) || "Business Analysis", " ");
|
|
57043
57335
|
i0.ɵɵadvance();
|
|
57044
57336
|
i0.ɵɵproperty("ngClass", ctx.getSubtitleClasses());
|
|
57045
|
-
i0.ɵɵadvance(
|
|
57046
|
-
i0.ɵɵ
|
|
57047
|
-
i0.ɵɵadvance();
|
|
57048
|
-
i0.ɵɵproperty("ngClass", ctx.getViewModeButtonClasses());
|
|
57049
|
-
i0.ɵɵadvance(5);
|
|
57050
|
-
i0.ɵɵtextInterpolate(ctx.displayModeLabel());
|
|
57337
|
+
i0.ɵɵadvance(2);
|
|
57338
|
+
i0.ɵɵconditional(((tmp_15_0 = ctx.profile()) == null ? null : tmp_15_0.selfContentStatus) === ctx.AiDynamicContentStatusEnum.GENERATED ? 14 : -1);
|
|
57051
57339
|
i0.ɵɵadvance();
|
|
57052
57340
|
i0.ɵɵclassProp("max-h-0", !ctx.headerScrollService.isScrolled())("opacity-0", !ctx.headerScrollService.isScrolled())("max-h-20", ctx.headerScrollService.isScrolled())("opacity-100", ctx.headerScrollService.isScrolled());
|
|
57053
57341
|
i0.ɵɵadvance();
|
|
@@ -57055,34 +57343,32 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
57055
57343
|
i0.ɵɵadvance(3);
|
|
57056
57344
|
i0.ɵɵproperty("ngClass", ctx.isLightMode() ? "text-xl font-bold bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent truncate" : "text-xl font-bold bg-gradient-to-r from-blue-400 to-purple-400 bg-clip-text text-transparent truncate");
|
|
57057
57345
|
i0.ɵɵadvance();
|
|
57058
|
-
i0.ɵɵtextInterpolate1(" ", ((
|
|
57346
|
+
i0.ɵɵtextInterpolate1(" ", ((tmp_23_0 = ctx.currentProfile()) == null ? null : tmp_23_0.profileStructured == null ? null : tmp_23_0.profileStructured.businessName) || "Business Analysis", " ");
|
|
57059
57347
|
i0.ɵɵadvance(2);
|
|
57060
|
-
i0.ɵɵconditional(!ctx.isSimplifiedView() ?
|
|
57348
|
+
i0.ɵɵconditional(!ctx.isSimplifiedView() ? 22 : -1);
|
|
57061
57349
|
i0.ɵɵadvance();
|
|
57062
|
-
i0.ɵɵ
|
|
57063
|
-
i0.ɵɵadvance();
|
|
57064
|
-
i0.ɵɵ
|
|
57065
|
-
i0.ɵɵadvance(5);
|
|
57066
|
-
i0.ɵɵconditional(ctx.isSimplifiedView() ? 36 : 37);
|
|
57350
|
+
i0.ɵɵconditional(((tmp_25_0 = ctx.profile()) == null ? null : tmp_25_0.selfContentStatus) === ctx.AiDynamicContentStatusEnum.GENERATED ? 23 : -1);
|
|
57351
|
+
i0.ɵɵadvance(2);
|
|
57352
|
+
i0.ɵɵconditional(ctx.isContentGenerating() ? 25 : 26);
|
|
57067
57353
|
i0.ɵɵadvance(2);
|
|
57068
|
-
i0.ɵɵconditional(!ctx.isSimplifiedView() ?
|
|
57354
|
+
i0.ɵɵconditional(!ctx.isSimplifiedView() ? 27 : -1);
|
|
57069
57355
|
i0.ɵɵadvance();
|
|
57070
|
-
i0.ɵɵconditional(!ctx.isSimplifiedView() ?
|
|
57356
|
+
i0.ɵɵconditional(!ctx.isSimplifiedView() ? 28 : -1);
|
|
57071
57357
|
i0.ɵɵadvance();
|
|
57072
57358
|
i0.ɵɵproperty("viewMode", ctx.viewMode())("embedded", ctx.embedded());
|
|
57073
57359
|
i0.ɵɵadvance();
|
|
57074
|
-
i0.ɵɵconditional(ctx.isLoading() ?
|
|
57360
|
+
i0.ɵɵconditional(ctx.isLoading() ? 30 : -1);
|
|
57075
57361
|
i0.ɵɵadvance(2);
|
|
57076
57362
|
i0.ɵɵproperty("isLightMode", ctx.isLightMode());
|
|
57077
57363
|
i0.ɵɵadvance();
|
|
57078
57364
|
i0.ɵɵproperty("isLightMode", ctx.isLightMode())("isOpen", ctx.searchService.isSearchOpen())("searchQuery", ctx.searchService.getSearchQuery())("results", ctx.searchService.searchResults())("hasResults", ctx.searchService.hasResults())("selectedIndex", ctx.selectedSearchIndex())("placeholder", "Search sections, items, and analysis...");
|
|
57079
57365
|
i0.ɵɵadvance();
|
|
57080
57366
|
i0.ɵɵproperty("isOpen", ctx.isViewModeSwitcherOpen())("currentMode", ctx.displayMode())("viewMode", ctx.viewMode())("isLoading", ctx.isViewModeSwitching());
|
|
57081
|
-
} }, dependencies: [CommonModule, i1$1.NgClass, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchButtonComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent], styles: ["[_nghost-%COMP%]{display:block}@keyframes _ngcontent-%COMP%_spin{to{transform:rotate(360deg)}}@keyframes _ngcontent-%COMP%_pulse-highlight{0%,to{transform:scale(1);box-shadow:0 0 #3b82f6b3}50%{transform:scale(1.02);box-shadow:0 0 20px 8px #3b82f64d}}[_nghost-%COMP%] .search-highlight-pulse{animation:_ngcontent-%COMP%_pulse-highlight 2s ease-in-out;border-color:#3b82f6!important}"], changeDetection: 0 }); }
|
|
57367
|
+
} }, dependencies: [CommonModule, i1$1.NgClass, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchButtonComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent, ContentGenerationProgressComponent], styles: ["[_nghost-%COMP%]{display:block}@keyframes _ngcontent-%COMP%_spin{to{transform:rotate(360deg)}}@keyframes _ngcontent-%COMP%_pulse-highlight{0%,to{transform:scale(1);box-shadow:0 0 #3b82f6b3}50%{transform:scale(1.02);box-shadow:0 0 20px 8px #3b82f64d}}[_nghost-%COMP%] .search-highlight-pulse{animation:_ngcontent-%COMP%_pulse-highlight 2s ease-in-out;border-color:#3b82f6!important}"], changeDetection: 0 }); }
|
|
57082
57368
|
}
|
|
57083
57369
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SymphiqBusinessAnalysisDashboardComponent, [{
|
|
57084
57370
|
type: Component,
|
|
57085
|
-
args: [{ selector: 'symphiq-business-analysis-dashboard', standalone: true, imports: [CommonModule, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchButtonComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
57371
|
+
args: [{ selector: 'symphiq-business-analysis-dashboard', standalone: true, imports: [CommonModule, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchButtonComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent, ContentGenerationProgressComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
57086
57372
|
<div [ngClass]="getContainerClasses()">
|
|
57087
57373
|
<!-- Scroll Progress Bar (fixed at top) -->
|
|
57088
57374
|
<div [class]="embedded() ? 'sticky top-0 left-0 right-0 h-1 z-[60] bg-slate-200/30' : 'fixed top-0 left-0 right-0 h-1 z-[60] bg-slate-200/30'">
|
|
@@ -57095,7 +57381,7 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
57095
57381
|
|
|
57096
57382
|
<div class="animated-bubbles" [class.light-mode]="isLightMode()" style="position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100vw; height: 100vh; z-index: 1; pointer-events: none;"></div>
|
|
57097
57383
|
|
|
57098
|
-
<div class="relative z-[51]">
|
|
57384
|
+
<div class="relative z-[51] flex-1 flex flex-col">
|
|
57099
57385
|
<header [ngClass]="getHeaderClasses()" class="sticky top-0 z-50">
|
|
57100
57386
|
<!-- Expanded Header (default state) -->
|
|
57101
57387
|
<div
|
|
@@ -57117,23 +57403,25 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
57117
57403
|
Business Profile & Analysis
|
|
57118
57404
|
</p>
|
|
57119
57405
|
</div>
|
|
57120
|
-
|
|
57121
|
-
<
|
|
57122
|
-
|
|
57123
|
-
|
|
57124
|
-
|
|
57125
|
-
|
|
57126
|
-
|
|
57127
|
-
|
|
57128
|
-
|
|
57129
|
-
|
|
57130
|
-
|
|
57131
|
-
<
|
|
57132
|
-
|
|
57133
|
-
|
|
57134
|
-
|
|
57135
|
-
|
|
57136
|
-
|
|
57406
|
+
@if (profile()?.selfContentStatus === AiDynamicContentStatusEnum.GENERATED) {
|
|
57407
|
+
<div class="flex items-center gap-2">
|
|
57408
|
+
<symphiq-search-button
|
|
57409
|
+
[isLightMode]="isLightMode()"
|
|
57410
|
+
(searchClick)="openSearch()"
|
|
57411
|
+
/>
|
|
57412
|
+
<button
|
|
57413
|
+
type="button"
|
|
57414
|
+
(click)="openViewModeSwitcher()"
|
|
57415
|
+
[ngClass]="getViewModeButtonClasses()"
|
|
57416
|
+
class="cursor-pointer flex items-center gap-2 px-3 py-1.5 rounded-lg text-xs font-medium transition-all duration-200 hover:scale-105">
|
|
57417
|
+
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
57418
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"></path>
|
|
57419
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"></path>
|
|
57420
|
+
</svg>
|
|
57421
|
+
<span>{{ displayModeLabel() }}</span>
|
|
57422
|
+
</button>
|
|
57423
|
+
</div>
|
|
57424
|
+
}
|
|
57137
57425
|
</div>
|
|
57138
57426
|
</div>
|
|
57139
57427
|
</div>
|
|
@@ -57169,35 +57457,37 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
57169
57457
|
}
|
|
57170
57458
|
</div>
|
|
57171
57459
|
}
|
|
57172
|
-
|
|
57173
|
-
|
|
57174
|
-
|
|
57175
|
-
|
|
57176
|
-
|
|
57177
|
-
|
|
57178
|
-
|
|
57179
|
-
|
|
57180
|
-
|
|
57181
|
-
|
|
57182
|
-
|
|
57183
|
-
<
|
|
57184
|
-
|
|
57185
|
-
|
|
57186
|
-
|
|
57460
|
+
@if (profile()?.selfContentStatus === AiDynamicContentStatusEnum.GENERATED) {
|
|
57461
|
+
<symphiq-search-button
|
|
57462
|
+
[isLightMode]="isLightMode()"
|
|
57463
|
+
[minimized]="true"
|
|
57464
|
+
(searchClick)="openSearch()"
|
|
57465
|
+
/>
|
|
57466
|
+
<button
|
|
57467
|
+
type="button"
|
|
57468
|
+
(click)="openViewModeSwitcher()"
|
|
57469
|
+
[ngClass]="getViewModeButtonClasses()"
|
|
57470
|
+
class="cursor-pointer flex items-center gap-2 px-2 py-1.5 rounded-lg text-xs font-medium transition-all duration-200 hover:scale-105">
|
|
57471
|
+
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
57472
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"></path>
|
|
57473
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"></path>
|
|
57474
|
+
</svg>
|
|
57475
|
+
</button>
|
|
57476
|
+
}
|
|
57187
57477
|
</div>
|
|
57188
57478
|
</div>
|
|
57189
57479
|
</div>
|
|
57190
57480
|
</div>
|
|
57191
57481
|
</header>
|
|
57192
57482
|
|
|
57193
|
-
<main class="relative">
|
|
57194
|
-
@if (
|
|
57195
|
-
<!-- Journey Progress Banner
|
|
57483
|
+
<main class="relative flex-1 flex flex-col">
|
|
57484
|
+
@if (isContentGenerating()) {
|
|
57485
|
+
<!-- Journey Progress Banner (always show when not onboarded) -->
|
|
57196
57486
|
@if (!isOnboarded()) {
|
|
57197
57487
|
<symphiq-journey-progress-indicator
|
|
57198
57488
|
[viewMode]="viewMode()"
|
|
57199
57489
|
[currentStepId]="JourneyStepIdEnum.BUSINESS_ANALYSIS"
|
|
57200
|
-
[showNextStepAction]="
|
|
57490
|
+
[showNextStepAction]="false"
|
|
57201
57491
|
[forDemo]="forDemo()"
|
|
57202
57492
|
[maxAccessibleStepId]="maxAccessibleStepId()"
|
|
57203
57493
|
(stepClick)="stepClick.emit($event)"
|
|
@@ -57205,43 +57495,65 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
57205
57495
|
/>
|
|
57206
57496
|
}
|
|
57207
57497
|
|
|
57208
|
-
|
|
57209
|
-
|
|
57210
|
-
|
|
57498
|
+
<!-- Content Generation Progress Component -->
|
|
57499
|
+
<symphiq-content-generation-progress
|
|
57500
|
+
[viewMode]="viewMode()"
|
|
57501
|
+
[title]="'We are generating a new Business Analysis for ' + (currentProfile()?.profileStructured?.businessName || 'your business') + '.'"
|
|
57502
|
+
[subtitle]="'It will appear here when ready. You can check back later as this will take a few minutes to complete.'"
|
|
57503
|
+
/>
|
|
57504
|
+
} @else {
|
|
57505
|
+
@if (isSimplifiedView()) {
|
|
57506
|
+
<!-- Journey Progress Banner - Full Width Sticky (only show when not onboarded) -->
|
|
57507
|
+
@if (!isOnboarded()) {
|
|
57508
|
+
<symphiq-journey-progress-indicator
|
|
57211
57509
|
[viewMode]="viewMode()"
|
|
57212
|
-
[
|
|
57213
|
-
[
|
|
57510
|
+
[currentStepId]="JourneyStepIdEnum.BUSINESS_ANALYSIS"
|
|
57511
|
+
[showNextStepAction]="showNextStepAction()"
|
|
57512
|
+
[forDemo]="forDemo()"
|
|
57513
|
+
[maxAccessibleStepId]="maxAccessibleStepId()"
|
|
57514
|
+
(stepClick)="stepClick.emit($event)"
|
|
57515
|
+
(nextStepClick)="nextStepClick.emit()"
|
|
57214
57516
|
/>
|
|
57215
|
-
|
|
57517
|
+
}
|
|
57216
57518
|
|
|
57217
|
-
<div class="
|
|
57218
|
-
<
|
|
57219
|
-
|
|
57220
|
-
|
|
57221
|
-
|
|
57222
|
-
|
|
57223
|
-
|
|
57519
|
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
|
57520
|
+
<div class="mb-8">
|
|
57521
|
+
<symphiq-welcome-banner
|
|
57522
|
+
[viewMode]="viewMode()"
|
|
57523
|
+
[businessName]="currentProfile()?.profileStructured?.businessName || 'your business'"
|
|
57524
|
+
[isOnboarded]="isOnboarded()"
|
|
57525
|
+
/>
|
|
57526
|
+
</div>
|
|
57224
57527
|
|
|
57225
|
-
|
|
57226
|
-
|
|
57227
|
-
|
|
57228
|
-
[viewMode]="viewMode()"
|
|
57229
|
-
/>
|
|
57230
|
-
</div>
|
|
57231
|
-
</div>
|
|
57232
|
-
} @else {
|
|
57233
|
-
@for (section of sections(); track trackBySectionId($index, section); let idx = $index; let last = $last) {
|
|
57234
|
-
<symphiq-profile-section
|
|
57235
|
-
[section]="section"
|
|
57236
|
-
[viewMode]="viewMode()"
|
|
57237
|
-
[forceExpanded]="!isCompactView()"
|
|
57238
|
-
/>
|
|
57239
|
-
@if (!last) {
|
|
57240
|
-
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
57241
|
-
<symphiq-section-divider
|
|
57528
|
+
<div class="mb-8">
|
|
57529
|
+
<symphiq-recommendations-tiled-grid
|
|
57530
|
+
[recommendations]="recommendationItems()"
|
|
57242
57531
|
[viewMode]="viewMode()"
|
|
57243
|
-
|
|
57532
|
+
(viewMoreClick)="openRecommendationDetailsModal($event)"
|
|
57533
|
+
/>
|
|
57244
57534
|
</div>
|
|
57535
|
+
|
|
57536
|
+
<div>
|
|
57537
|
+
<symphiq-collapsible-section-group
|
|
57538
|
+
[sections]="nonRecommendationSections()"
|
|
57539
|
+
[viewMode]="viewMode()"
|
|
57540
|
+
/>
|
|
57541
|
+
</div>
|
|
57542
|
+
</div>
|
|
57543
|
+
} @else {
|
|
57544
|
+
@for (section of sections(); track trackBySectionId($index, section); let idx = $index; let last = $last) {
|
|
57545
|
+
<symphiq-profile-section
|
|
57546
|
+
[section]="section"
|
|
57547
|
+
[viewMode]="viewMode()"
|
|
57548
|
+
[forceExpanded]="!isCompactView()"
|
|
57549
|
+
/>
|
|
57550
|
+
@if (!last) {
|
|
57551
|
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
57552
|
+
<symphiq-section-divider
|
|
57553
|
+
[viewMode]="viewMode()"
|
|
57554
|
+
[subsections]="sections()[idx + 1].subsections || []" />
|
|
57555
|
+
</div>
|
|
57556
|
+
}
|
|
57245
57557
|
}
|
|
57246
57558
|
}
|
|
57247
57559
|
}
|
|
@@ -57312,7 +57624,7 @@ class SymphiqBusinessAnalysisDashboardComponent {
|
|
|
57312
57624
|
type: HostListener,
|
|
57313
57625
|
args: ['document:keydown', ['$event']]
|
|
57314
57626
|
}] }); })();
|
|
57315
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqBusinessAnalysisDashboardComponent, { className: "SymphiqBusinessAnalysisDashboardComponent", filePath: "lib/components/business-analysis-dashboard/symphiq-business-analysis-dashboard.component.ts", lineNumber:
|
|
57627
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqBusinessAnalysisDashboardComponent, { className: "SymphiqBusinessAnalysisDashboardComponent", filePath: "lib/components/business-analysis-dashboard/symphiq-business-analysis-dashboard.component.ts", lineNumber: 331 }); })();
|
|
57316
57628
|
|
|
57317
57629
|
function DashboardHeaderComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
57318
57630
|
i0.ɵɵelement(0, "div", 6);
|
|
@@ -103072,5 +103384,5 @@ const PROFILE_ANALYSIS_METRIC_SCREEN_PAGE_VIEWS = ({
|
|
|
103072
103384
|
* Generated bundle index. Do not edit.
|
|
103073
103385
|
*/
|
|
103074
103386
|
|
|
103075
|
-
export { AreaChartComponent, BUSINESS_PROFILE, BarChartComponent, BreakdownSectionComponent, BusinessAnalysisModalComponent, BusinessProfileSearchService, ChartCardComponent, ChartContainerComponent, ChartThemeService, CircularProgressComponent, CompetitivePositioningSummaryComponent, CompetitorAnalysisCardComponent, ConfidenceLevelCardComponent, CrossDashboardRelationshipsService, FUNNEL_ANALYSIS, FloatingBackButtonComponent, FloatingTocComponent, FocusAreaDetailCardComponent, FocusAreaExecutiveSummaryComponent, FunnelOrderService, GradeBadgeComponent, HeaderScrollService, HierarchyDisplayComponent, HorizontalBarComponent, IconService, InsightCardComponent, JourneyProgressIndicatorComponent, JourneyStepIdEnum, LineChartComponent, MetricCardComponent, MetricExecutiveSummaryComponent, MetricFormatterService, MetricListItemComponent, MetricWelcomeBannerComponent, MobileBottomNavComponent, MobileFABComponent, ModalComponent, ModalService, NapkinVisualPlaceholderComponent, NavigationStateService, OpportunityHighlightBannerComponent, OverallAssessmentComponent, PROFILE_ANALYSIS_FOCUS_AREA_AFFILIATE, PROFILE_ANALYSIS_METRIC_SCREEN_PAGE_VIEWS, PROFILE_ANALYSIS_SHOP, PieChartComponent, ProfileItemCardComponent, ProfileSectionComponent, ProfileSubsectionComponent, RelatedContentSidebarComponent, ScrollDepthService, ScrollProgressBarComponent, SearchButtonComponent, SearchModalComponent, SectionDividerComponent, SectionNavigationComponent, ShadowElevationDirective, ShopPlatformEnum, ShopWelcomeBannerComponent, SkeletonBarComponent, SkeletonCardBaseComponent, SkeletonCircleComponent, SkeletonCompetitorCardComponent, SkeletonCustomerSegmentCardComponent, SkeletonFocusAreaCardComponent, SkeletonGenericCardComponent, SkeletonLoaderComponent, SkeletonPriceTierCardComponent, SkeletonProductCategoryCardComponent, SkeletonRegionCardComponent, SkeletonSeasonCardComponent, SymphiqBusinessAnalysisDashboardComponent, SymphiqConnectGaDashboardComponent, SymphiqCreateAccountDashboardComponent, SymphiqFunnelAnalysisDashboardComponent, SymphiqFunnelAnalysisPreviewComponent, SymphiqIconComponent, SymphiqProfileAnalysisDashboardComponent, SymphiqWelcomeDashboardComponent, TooltipContainerComponent, TooltipDataService, TooltipDirective, TooltipService, ViewModeService, ViewportAnimationDirective, VisualizationContainerComponent, getBadgeLabelClasses, getButtonClasses, getCategoryBadgeClasses, getCategoryColor, getCompetitiveBadgeClasses, getContainerClasses, getFooterClasses, getGradeBadgeClasses, getHeaderClasses, getInsightsBadgeClasses, getInsightsCardClasses, getMetricLabelClasses, getMetricMiniCardClasses, getMetricValueClasses, getNarrativeTextClasses, getRevenueCardClasses, getRevenueIconClasses, getStatusBadgeClasses, getStatusDotClasses, getStatusIconClasses, getStatusSummaryClasses, getSubtitleClasses, getTitleClasses, getTrendClasses, getTrendIconClasses, getTrendValueClasses, isLightMode };
|
|
103387
|
+
export { AreaChartComponent, BUSINESS_PROFILE, BarChartComponent, BreakdownSectionComponent, BusinessAnalysisModalComponent, BusinessProfileSearchService, ChartCardComponent, ChartContainerComponent, ChartThemeService, CircularProgressComponent, CompetitivePositioningSummaryComponent, CompetitorAnalysisCardComponent, ConfidenceLevelCardComponent, ContentGenerationProgressComponent, CrossDashboardRelationshipsService, FUNNEL_ANALYSIS, FloatingBackButtonComponent, FloatingTocComponent, FocusAreaDetailCardComponent, FocusAreaExecutiveSummaryComponent, FunnelOrderService, GradeBadgeComponent, HeaderScrollService, HierarchyDisplayComponent, HorizontalBarComponent, IconService, InsightCardComponent, JourneyProgressIndicatorComponent, JourneyStepIdEnum, LineChartComponent, MetricCardComponent, MetricExecutiveSummaryComponent, MetricFormatterService, MetricListItemComponent, MetricWelcomeBannerComponent, MobileBottomNavComponent, MobileFABComponent, ModalComponent, ModalService, NapkinVisualPlaceholderComponent, NavigationStateService, OpportunityHighlightBannerComponent, OverallAssessmentComponent, PROFILE_ANALYSIS_FOCUS_AREA_AFFILIATE, PROFILE_ANALYSIS_METRIC_SCREEN_PAGE_VIEWS, PROFILE_ANALYSIS_SHOP, PieChartComponent, ProfileItemCardComponent, ProfileSectionComponent, ProfileSubsectionComponent, RelatedContentSidebarComponent, ScrollDepthService, ScrollProgressBarComponent, SearchButtonComponent, SearchModalComponent, SectionDividerComponent, SectionNavigationComponent, ShadowElevationDirective, ShopPlatformEnum, ShopWelcomeBannerComponent, SkeletonBarComponent, SkeletonCardBaseComponent, SkeletonCircleComponent, SkeletonCompetitorCardComponent, SkeletonCustomerSegmentCardComponent, SkeletonFocusAreaCardComponent, SkeletonGenericCardComponent, SkeletonLoaderComponent, SkeletonPriceTierCardComponent, SkeletonProductCategoryCardComponent, SkeletonRegionCardComponent, SkeletonSeasonCardComponent, SymphiqBusinessAnalysisDashboardComponent, SymphiqConnectGaDashboardComponent, SymphiqCreateAccountDashboardComponent, SymphiqFunnelAnalysisDashboardComponent, SymphiqFunnelAnalysisPreviewComponent, SymphiqIconComponent, SymphiqProfileAnalysisDashboardComponent, SymphiqWelcomeDashboardComponent, TooltipContainerComponent, TooltipDataService, TooltipDirective, TooltipService, ViewModeService, ViewportAnimationDirective, VisualizationContainerComponent, getBadgeLabelClasses, getButtonClasses, getCategoryBadgeClasses, getCategoryColor, getCompetitiveBadgeClasses, getContainerClasses, getFooterClasses, getGradeBadgeClasses, getHeaderClasses, getInsightsBadgeClasses, getInsightsCardClasses, getMetricLabelClasses, getMetricMiniCardClasses, getMetricValueClasses, getNarrativeTextClasses, getRevenueCardClasses, getRevenueIconClasses, getStatusBadgeClasses, getStatusDotClasses, getStatusIconClasses, getStatusSummaryClasses, getSubtitleClasses, getTitleClasses, getTrendClasses, getTrendIconClasses, getTrendValueClasses, isLightMode };
|
|
103076
103388
|
//# sourceMappingURL=symphiq-components.mjs.map
|