@eric-emg/symphiq-components 1.2.474 → 1.2.476
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 +160 -65
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +10 -4
- package/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/styles.css +5 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ViewModeEnum, MetricStatusEnum, TrendDirectionEnum, CompetitiveScoreEnum, MetricEnum, DimensionEnum, UiDataPeriodEnum, UiDataComparePeriodEnum, ChartTypeEnum, IconSourceEnum, ProfileAnalysisRecommendationPriorityEnum, ProfileItemTypeEnum, PriceVsCompetitorsEnum, DifferentiationStrengthEnum, ThreatLevelEnum, AiDynamicContentStatusEnum, normalizeToV3, FocusAreaDetailStatusEnum, FocusAreaDomainEnumUtil, FocusAreaDomainEnum, ShopDataLoadStatusEnum, MetricEnumUtil, NumberTypeEnum, LineChartUseCaseEnum, FunnelMetricTypeEnum, ProfileAnalysisPriorityEnum, CapabilityStateEnum, QuadrantEnum, AdvantageEnum, OverallGradeEnum, OperationalMaturityEnum, ProfileAnalysisEffortLevelEnum, ProfileAnalysisImpactLevelEnum, FocusAreaHealthEnum, CurrencyCodeEnum, ChargebeeItemPricePeriodUnitEnum, ProfileAnswerActionEnum, ChargebeeSubscriptionStatusEnumUtil, ProfileAnalysisTypeEnum, BarChartUseCaseEnum } from '@jebgem/model';
|
|
1
|
+
import { ViewModeEnum, MetricStatusEnum, TrendDirectionEnum, CompetitiveScoreEnum, MetricEnum, DimensionEnum, UiDataPeriodEnum, UiDataComparePeriodEnum, ChartTypeEnum, IconSourceEnum, ProfileAnalysisRecommendationPriorityEnum, ProfileItemTypeEnum, PriceVsCompetitorsEnum, DifferentiationStrengthEnum, ThreatLevelEnum, AiDynamicContentStatusEnum, normalizeToV3, FocusAreaDetailStatusEnum, FocusAreaDomainEnumUtil, FocusAreaDomainEnum, ShopDataLoadStatusEnum, MetricEnumUtil, NumberTypeEnum, LineChartUseCaseEnum, FunnelMetricTypeEnum, ProfileAnalysisPriorityEnum, CapabilityStateEnum, QuadrantEnum, AdvantageEnum, OverallGradeEnum, OperationalMaturityEnum, ProfileAnalysisEffortLevelEnum, ProfileAnalysisImpactLevelEnum, FocusAreaHealthEnum, CurrencyCodeEnum, ChargebeeItemPricePeriodUnitEnum, ProfileAnswerActionEnum, ChargebeeSubscriptionStatusEnumUtil, ProfileAnalysisTypeEnum, ProfileAnalysisReviewStatusEnum, BarChartUseCaseEnum } from '@jebgem/model';
|
|
2
2
|
export * from '@jebgem/model';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
4
|
import { Injectable, signal, computed, input, ChangeDetectionStrategy, Component, output, inject, ElementRef, Renderer2, effect, Directive, HostListener, untracked, ViewChild, PLATFORM_ID, Inject, Input, afterNextRender, NgZone } from '@angular/core';
|
|
@@ -90938,7 +90938,7 @@ function ProfileStatusCardComponent_Conditional_26_Conditional_1_Template(rf, ct
|
|
|
90938
90938
|
function ProfileStatusCardComponent_Conditional_26_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
90939
90939
|
const _r6 = i0.ɵɵgetCurrentView();
|
|
90940
90940
|
i0.ɵɵelementStart(0, "button", 27);
|
|
90941
|
-
i0.ɵɵlistener("click", function ProfileStatusCardComponent_Conditional_26_Conditional_2_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.
|
|
90941
|
+
i0.ɵɵlistener("click", function ProfileStatusCardComponent_Conditional_26_Conditional_2_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleAdminAnswerAll()); });
|
|
90942
90942
|
i0.ɵɵnamespaceSVG();
|
|
90943
90943
|
i0.ɵɵelementStart(1, "svg", 28);
|
|
90944
90944
|
i0.ɵɵelement(2, "path", 30);
|
|
@@ -91188,14 +91188,21 @@ class ProfileStatusCardComponent {
|
|
|
91188
91188
|
const wasUnanswered = questionBeingAnswered && questionBeingAnswered.answered !== true;
|
|
91189
91189
|
const unansweredCount = this.unansweredQuestions();
|
|
91190
91190
|
if (wasUnanswered && unansweredCount === 1) {
|
|
91191
|
-
this.
|
|
91192
|
-
intensity: 'celebration',
|
|
91193
|
-
viewMode: this.viewMode()
|
|
91194
|
-
});
|
|
91191
|
+
this.triggerConfetti();
|
|
91195
91192
|
event.profileCompleted = true;
|
|
91196
91193
|
}
|
|
91197
91194
|
this.answerSave.emit(event);
|
|
91198
91195
|
}
|
|
91196
|
+
triggerConfetti() {
|
|
91197
|
+
this.confettiService.trigger({
|
|
91198
|
+
intensity: 'celebration',
|
|
91199
|
+
viewMode: this.viewMode()
|
|
91200
|
+
});
|
|
91201
|
+
}
|
|
91202
|
+
handleAdminAnswerAll() {
|
|
91203
|
+
this.triggerConfetti();
|
|
91204
|
+
this.adminAnswerAction.emit(true);
|
|
91205
|
+
}
|
|
91199
91206
|
formatCategoryName(category) {
|
|
91200
91207
|
const formatter = this.categoryNameFormatter();
|
|
91201
91208
|
if (formatter) {
|
|
@@ -91514,7 +91521,7 @@ class ProfileStatusCardComponent {
|
|
|
91514
91521
|
@if (unansweredQuestions() > 0) {
|
|
91515
91522
|
<button
|
|
91516
91523
|
type="button"
|
|
91517
|
-
(click)="
|
|
91524
|
+
(click)="handleAdminAnswerAll()"
|
|
91518
91525
|
class="flex items-center gap-2 px-4 py-2 rounded-lg border-2 border-violet-500/70 bg-transparent text-violet-400 hover:bg-violet-500/10 transition-colors"
|
|
91519
91526
|
>
|
|
91520
91527
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
@@ -95383,7 +95390,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95383
95390
|
static { this.ɵfac = function SymphiqProfileFocusAreasAnalysesDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqProfileFocusAreasAnalysesDashboardComponent)(); }; }
|
|
95384
95391
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqProfileFocusAreasAnalysesDashboardComponent, selectors: [["symphiq-profile-focus-areas-analyses-dashboard"]], hostBindings: function SymphiqProfileFocusAreasAnalysesDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
95385
95392
|
i0.ɵɵlistener("scroll", function SymphiqProfileFocusAreasAnalysesDashboardComponent_scroll_HostBindingHandler($event) { return ctx.onScroll($event); }, i0.ɵɵresolveWindow);
|
|
95386
|
-
} }, inputs: { requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], embedded: [1, "embedded"], profileAnalyses: [1, "profileAnalyses"], profileFocusAreas: [1, "profileFocusAreas"], itemStatusesProfileFocusArea: [1, "itemStatusesProfileFocusArea"], itemStatusesProfileAnalysis: [1, "itemStatusesProfileAnalysis"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], focusAreaDetails: [1, "focusAreaDetails"], account: [1, "account"], profileFocusAreaQuestions: [1, "profileFocusAreaQuestions"], 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: { navigateToProfileFocusArea: "navigateToProfileFocusArea", navigateToProfileAnalysis: "navigateToProfileAnalysis", stepClick: "stepClick", nextStepClick: "nextStepClick", answerFocusAreaProfileQuestions: "answerFocusAreaProfileQuestions", continueFocusAreaProfileQuestions: "continueFocusAreaProfileQuestions", profileQuestionAnswerSave: "profileQuestionAnswerSave", focusAreaProfileAdminAnswerAction: "focusAreaProfileAdminAnswerAction" }, decls: 69, vars: 29, consts: [[1, "min-h-screen", "relative"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "fixed", "top-0", "left-0", "right-0", "h-1", "z-[60]", "bg-slate-200/30"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "relative", "z-[51]"], [3, "title", "subtitle", "viewMode", "showControls"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "container", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8", "md:py-12", "relative", "z-10"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", "mb-8", 3, "ngClass"], [1, "px-8", "py-8"], [1, "flex", "items-start", "gap-6"], [1, "flex-shrink-0", "w-16", "h-16", "rounded-2xl", "flex", "items-center", "justify-center", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-8", "h-8"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"], [1, "flex-1"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-3", 3, "ngClass"], [1, "grid", "grid-cols-1", "lg:grid-cols-3", "gap-6", "mb-6"], [1, "lg:col-span-2", "space-y-3"], [1, "text-base", "leading-relaxed", 3, "ngClass"], [1, "font-semibold"], [1, "lg:col-span-1"], ["currentStepId", "focus-areas", 3, "viewMode", "focusAreaDetails"], [1, "mt-6", "p-5", "rounded-xl", "border-l-4", "flex", "items-start", "gap-4", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", "flex-shrink-0", "mt-0.5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "font-bold", "text-lg", "mb-2", 3, "ngClass"], [1, "space-y-2", "text-sm", 3, "ngClass"], [1, "flex", "items-start", "gap-2"], ["fill", "currentColor", "viewBox", "0 0 20 20", 1, "w-5", "h-5", "flex-shrink-0", "mt-0.5"], ["fill-rule", "evenodd", "d", "M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z", "clip-rule", "evenodd"], [1, "mt-6", "p-5", "rounded-xl", "border", "flex", "items-start", "gap-4", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 7l5 5m0 0l-5 5m5-5H6"], [1, "text-sm", "leading-relaxed", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-6"], [3, "class"], [1, "mt-12"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "p-6", "flex-1"], [1, "flex", "items-start", "justify-between", "mb-4"], [1, "text-4xl"], [1, "flex", "flex-col", "items-end", "gap-2"], [3, "ngClass"], [1, "px-3", "py-1", "bg-green-100", "dark:bg-green-900/30", "text-green-700", "dark:text-green-400", "text-xs", "font-semibold", "rounded-full"], ["tooltipPosition", "bottom", 3, "libSymphiqTooltip"], [1, "mt-3", "mb-
|
|
95393
|
+
} }, inputs: { requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], embedded: [1, "embedded"], profileAnalyses: [1, "profileAnalyses"], profileFocusAreas: [1, "profileFocusAreas"], itemStatusesProfileFocusArea: [1, "itemStatusesProfileFocusArea"], itemStatusesProfileAnalysis: [1, "itemStatusesProfileAnalysis"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], focusAreaDetails: [1, "focusAreaDetails"], account: [1, "account"], profileFocusAreaQuestions: [1, "profileFocusAreaQuestions"], 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: { navigateToProfileFocusArea: "navigateToProfileFocusArea", navigateToProfileAnalysis: "navigateToProfileAnalysis", stepClick: "stepClick", nextStepClick: "nextStepClick", answerFocusAreaProfileQuestions: "answerFocusAreaProfileQuestions", continueFocusAreaProfileQuestions: "continueFocusAreaProfileQuestions", profileQuestionAnswerSave: "profileQuestionAnswerSave", focusAreaProfileAdminAnswerAction: "focusAreaProfileAdminAnswerAction" }, decls: 69, vars: 29, consts: [[1, "min-h-screen", "relative"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "fixed", "top-0", "left-0", "right-0", "h-1", "z-[60]", "bg-slate-200/30"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "relative", "z-[51]"], [3, "title", "subtitle", "viewMode", "showControls"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "container", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8", "md:py-12", "relative", "z-10"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", "mb-8", 3, "ngClass"], [1, "px-8", "py-8"], [1, "flex", "items-start", "gap-6"], [1, "flex-shrink-0", "w-16", "h-16", "rounded-2xl", "flex", "items-center", "justify-center", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-8", "h-8"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"], [1, "flex-1"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-3", 3, "ngClass"], [1, "grid", "grid-cols-1", "lg:grid-cols-3", "gap-6", "mb-6"], [1, "lg:col-span-2", "space-y-3"], [1, "text-base", "leading-relaxed", 3, "ngClass"], [1, "font-semibold"], [1, "lg:col-span-1"], ["currentStepId", "focus-areas", 3, "viewMode", "focusAreaDetails"], [1, "mt-6", "p-5", "rounded-xl", "border-l-4", "flex", "items-start", "gap-4", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", "flex-shrink-0", "mt-0.5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "font-bold", "text-lg", "mb-2", 3, "ngClass"], [1, "space-y-2", "text-sm", 3, "ngClass"], [1, "flex", "items-start", "gap-2"], ["fill", "currentColor", "viewBox", "0 0 20 20", 1, "w-5", "h-5", "flex-shrink-0", "mt-0.5"], ["fill-rule", "evenodd", "d", "M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z", "clip-rule", "evenodd"], [1, "mt-6", "p-5", "rounded-xl", "border", "flex", "items-start", "gap-4", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 7l5 5m0 0l-5 5m5-5H6"], [1, "text-sm", "leading-relaxed", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-6"], [3, "class"], [1, "mt-12"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "p-6", "flex-1"], [1, "flex", "items-start", "justify-between", "mb-4"], [1, "text-4xl"], [1, "flex", "flex-col", "items-end", "gap-2"], [3, "ngClass"], [1, "px-3", "py-1", "bg-green-100", "dark:bg-green-900/30", "text-green-700", "dark:text-green-400", "text-xs", "font-semibold", "rounded-full"], ["tooltipPosition", "bottom", 3, "libSymphiqTooltip"], [1, "mt-3", "mb-4"], [1, "flex", "items-center", "gap-2", "py-2"], [1, "space-y-2", "cursor-pointer", "mt-4"], [1, "px-6", "pb-4"], [1, "mt-auto", "cursor-pointer", "hover:bg-slate-100", "dark:hover:bg-slate-700/50", "transition-colors", 3, "class"], [1, "flex", "items-center", "gap-2"], [1, "text-xs", "font-medium", 3, "ngClass"], [1, "flex", "flex-wrap", "gap-1.5"], [1, "px-2", "py-0.5", "rounded", "text-xs", 3, "ngClass"], [1, "animate-spin", "w-4", "h-4", "border-2", "border-amber-500/30", "border-t-amber-500", "rounded-full"], [1, "text-xs", "text-amber-600", "dark:text-amber-400", "font-medium"], [1, "space-y-2", "cursor-pointer", "mt-4", 3, "click"], [1, "flex", "items-center", "justify-between", "text-sm"], [1, "h-full", "bg-gradient-to-r", "from-blue-500", "to-cyan-500", "rounded-full", "transition-all", "duration-500"], [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"], [3, "itemStatus", "viewMode", "compact", "compactTitle"], [1, "mt-auto", "cursor-pointer", "hover:bg-slate-100", "dark:hover:bg-slate-700/50", "transition-colors", 3, "click"], [1, "flex", "items-center", "justify-between"], [1, "text-sm", "font-medium", "text-slate-600", "dark:text-slate-400"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "text-slate-400", "dark:text-slate-500", "hover:text-blue-500", "dark:hover:text-blue-400", "hover:translate-x-1", "transition-all"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"], [1, "flex", "items-center", "gap-4", "mb-6"], [1, "flex-1", "h-px", 3, "ngClass"], [1, "text-sm", "font-medium", "px-3", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-6", "opacity-60"], [3, "closeModal"]], template: function SymphiqProfileFocusAreasAnalysesDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
95387
95394
|
i0.ɵɵelementStart(0, "div", 0);
|
|
95388
95395
|
i0.ɵɵelement(1, "div", 1);
|
|
95389
95396
|
i0.ɵɵelementStart(2, "div", 2);
|
|
@@ -95677,7 +95684,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95677
95684
|
</p>
|
|
95678
95685
|
|
|
95679
95686
|
@if (focusArea.engagementStatus === FocusAreaDetailStatusEnum.ENGAGED && focusArea.tools.length > 0) {
|
|
95680
|
-
<div class="mt-3 mb-
|
|
95687
|
+
<div class="mt-3 mb-4">
|
|
95681
95688
|
<div class="flex items-center gap-2">
|
|
95682
95689
|
<span [ngClass]="getToolsLabelClasses()" class="text-xs font-medium">Marketing Tools:</span>
|
|
95683
95690
|
<div class="flex flex-wrap gap-1.5">
|
|
@@ -95697,7 +95704,7 @@ class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
95697
95704
|
<span class="text-xs text-amber-600 dark:text-amber-400 font-medium">Profile Generation Pending</span>
|
|
95698
95705
|
</div>
|
|
95699
95706
|
} @else if ((focusArea.selfContentStatusProfileFocusArea === AiDynamicContentStatusEnum.GENERATED && (focusArea.selfContentStatusProfileAnalysis === null || focusArea.selfContentStatusProfileAnalysis === AiDynamicContentStatusEnum.GENERATED)) || focusArea.status !== 'pending') {
|
|
95700
|
-
<div class="space-y-2 cursor-pointer" (click)="handleFooterClick(focusArea.profileFocusArea)">
|
|
95707
|
+
<div class="space-y-2 cursor-pointer mt-4" (click)="handleFooterClick(focusArea.profileFocusArea)">
|
|
95701
95708
|
<div class="flex items-center justify-between text-sm">
|
|
95702
95709
|
<span [class]="getLabelClasses()">Profile progress</span>
|
|
95703
95710
|
<span [class]="getValueClasses()">
|
|
@@ -96497,12 +96504,12 @@ class FocusAreaWelcomeBannerComponent {
|
|
|
96497
96504
|
const _c0$5 = ["funnelModalComponent"];
|
|
96498
96505
|
const _forTrack0$5 = ($index, $item) => $item.id;
|
|
96499
96506
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_7_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
96500
|
-
i0.ɵɵelementStart(0, "div",
|
|
96501
|
-
i0.ɵɵelement(2, "symphiq-indeterminate-spinner",
|
|
96502
|
-
i0.ɵɵelementStart(3, "div",
|
|
96507
|
+
i0.ɵɵelementStart(0, "div", 22)(1, "div", 23);
|
|
96508
|
+
i0.ɵɵelement(2, "symphiq-indeterminate-spinner", 24);
|
|
96509
|
+
i0.ɵɵelementStart(3, "div", 25)(4, "h3", 26);
|
|
96503
96510
|
i0.ɵɵtext(5, " Loading Your Focus Area Analysis ");
|
|
96504
96511
|
i0.ɵɵelementEnd();
|
|
96505
|
-
i0.ɵɵelementStart(6, "p",
|
|
96512
|
+
i0.ɵɵelementStart(6, "p", 27);
|
|
96506
96513
|
i0.ɵɵtext(7, " Please wait while we prepare your personalized insights... ");
|
|
96507
96514
|
i0.ɵɵelementEnd()()()();
|
|
96508
96515
|
} if (rf & 2) {
|
|
@@ -96516,10 +96523,10 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_7_Conditi
|
|
|
96516
96523
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-600" : "text-slate-400");
|
|
96517
96524
|
} }
|
|
96518
96525
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_7_Template(rf, ctx) { if (rf & 1) {
|
|
96519
|
-
i0.ɵɵelementStart(0, "div",
|
|
96520
|
-
i0.ɵɵelement(1, "symphiq-focus-area-welcome-banner",
|
|
96526
|
+
i0.ɵɵelementStart(0, "div", 20);
|
|
96527
|
+
i0.ɵɵelement(1, "symphiq-focus-area-welcome-banner", 21);
|
|
96521
96528
|
i0.ɵɵelementEnd();
|
|
96522
|
-
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_7_Conditional_2_Template, 8, 4, "div",
|
|
96529
|
+
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_7_Conditional_2_Template, 8, 4, "div", 22);
|
|
96523
96530
|
} if (rf & 2) {
|
|
96524
96531
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
96525
96532
|
i0.ɵɵadvance();
|
|
@@ -96528,8 +96535,8 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_7_Templat
|
|
|
96528
96535
|
i0.ɵɵconditional(ctx_r1.isLoading() ? 2 : -1);
|
|
96529
96536
|
} }
|
|
96530
96537
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
96531
|
-
i0.ɵɵelementStart(0, "div",
|
|
96532
|
-
i0.ɵɵelement(1, "symphiq-content-generation-progress",
|
|
96538
|
+
i0.ɵɵelementStart(0, "div", 29);
|
|
96539
|
+
i0.ɵɵelement(1, "symphiq-content-generation-progress", 31);
|
|
96533
96540
|
i0.ɵɵelementEnd();
|
|
96534
96541
|
} if (rf & 2) {
|
|
96535
96542
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
@@ -96539,7 +96546,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditi
|
|
|
96539
96546
|
} }
|
|
96540
96547
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
96541
96548
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
96542
|
-
i0.ɵɵelementStart(0, "symphiq-strategic-goals-tiled-grid",
|
|
96549
|
+
i0.ɵɵelementStart(0, "symphiq-strategic-goals-tiled-grid", 32);
|
|
96543
96550
|
i0.ɵɵlistener("viewMoreClick", function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Conditional_2_Template_symphiq_strategic_goals_tiled_grid_viewMoreClick_0_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.openGoalModal($event)); });
|
|
96544
96551
|
i0.ɵɵelementEnd();
|
|
96545
96552
|
} if (rf & 2) {
|
|
@@ -96547,8 +96554,8 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditi
|
|
|
96547
96554
|
i0.ɵɵproperty("goals", ctx_r1.strategicRoadmapGoals())("viewMode", ctx_r1.viewMode());
|
|
96548
96555
|
} }
|
|
96549
96556
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
96550
|
-
i0.ɵɵelementStart(0, "div",
|
|
96551
|
-
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Conditional_1_Template, 2, 3, "div",
|
|
96557
|
+
i0.ɵɵelementStart(0, "div", 28);
|
|
96558
|
+
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Conditional_1_Template, 2, 3, "div", 29)(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Conditional_2_Template, 1, 2, "symphiq-strategic-goals-tiled-grid", 30);
|
|
96552
96559
|
i0.ɵɵelementEnd();
|
|
96553
96560
|
} if (rf & 2) {
|
|
96554
96561
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -96557,7 +96564,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditi
|
|
|
96557
96564
|
} }
|
|
96558
96565
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
96559
96566
|
i0.ɵɵelementStart(0, "div");
|
|
96560
|
-
i0.ɵɵelement(1, "symphiq-collapsible-analysis-section-group",
|
|
96567
|
+
i0.ɵɵelement(1, "symphiq-collapsible-analysis-section-group", 33);
|
|
96561
96568
|
i0.ɵɵelementEnd();
|
|
96562
96569
|
} if (rf & 2) {
|
|
96563
96570
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -96565,7 +96572,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditi
|
|
|
96565
96572
|
i0.ɵɵproperty("sections", ctx_r1.nonStrategicSections())("viewMode", ctx_r1.viewMode())("focusAreaExecutiveSummary", ctx_r1.focusAreaExecutiveSummary())("allGoals", ctx_r1.allGoals())("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("allInsights", ctx_r1.allInsights())("businessProfile", ctx_r1.profile());
|
|
96566
96573
|
} }
|
|
96567
96574
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
96568
|
-
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Template, 3, 1, "div",
|
|
96575
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Template, 3, 1, "div", 28);
|
|
96569
96576
|
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_1_Template, 2, 8, "div");
|
|
96570
96577
|
} if (rf & 2) {
|
|
96571
96578
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -96575,7 +96582,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Templat
|
|
|
96575
96582
|
} }
|
|
96576
96583
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
96577
96584
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
96578
|
-
i0.ɵɵelementStart(0, "symphiq-focus-area-executive-summary",
|
|
96585
|
+
i0.ɵɵelementStart(0, "symphiq-focus-area-executive-summary", 36);
|
|
96579
96586
|
i0.ɵɵlistener("topPrioritiesClick", function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_0_Template_symphiq_focus_area_executive_summary_topPrioritiesClick_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleTopPrioritiesClick()); })("priorityDetailClick", function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_0_Template_symphiq_focus_area_executive_summary_priorityDetailClick_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handlePriorityDetailClick($event)); });
|
|
96580
96587
|
i0.ɵɵelementEnd();
|
|
96581
96588
|
} if (rf & 2) {
|
|
@@ -96583,21 +96590,21 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
|
|
|
96583
96590
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("summary", ctx)("allGoals", ctx_r1.allGoals());
|
|
96584
96591
|
} }
|
|
96585
96592
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_1_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
96586
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
96593
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 37);
|
|
96587
96594
|
} if (rf & 2) {
|
|
96588
96595
|
const sectionList_r5 = i0.ɵɵnextContext();
|
|
96589
96596
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
96590
96597
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r5[0].icon);
|
|
96591
96598
|
} }
|
|
96592
96599
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
96593
|
-
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_1_Conditional_0_Template, 1, 2, "symphiq-section-divider",
|
|
96600
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_1_Conditional_0_Template, 1, 2, "symphiq-section-divider", 37);
|
|
96594
96601
|
} if (rf & 2) {
|
|
96595
96602
|
const sectionList_r5 = ctx;
|
|
96596
96603
|
i0.ɵɵconditional(sectionList_r5.length > 0 && sectionList_r5[0].icon ? 0 : -1);
|
|
96597
96604
|
} }
|
|
96598
96605
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
96599
|
-
i0.ɵɵelementStart(0, "div",
|
|
96600
|
-
i0.ɵɵelement(1, "symphiq-icon",
|
|
96606
|
+
i0.ɵɵelementStart(0, "div", 40);
|
|
96607
|
+
i0.ɵɵelement(1, "symphiq-icon", 45);
|
|
96601
96608
|
i0.ɵɵelementEnd();
|
|
96602
96609
|
} if (rf & 2) {
|
|
96603
96610
|
const section_r6 = i0.ɵɵnextContext().$implicit;
|
|
@@ -96607,8 +96614,8 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
|
|
|
96607
96614
|
i0.ɵɵproperty("icon", section_r6.icon);
|
|
96608
96615
|
} }
|
|
96609
96616
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
96610
|
-
i0.ɵɵelementStart(0, "div",
|
|
96611
|
-
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder",
|
|
96617
|
+
i0.ɵɵelementStart(0, "div", 47);
|
|
96618
|
+
i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 49);
|
|
96612
96619
|
i0.ɵɵelementEnd();
|
|
96613
96620
|
} if (rf & 2) {
|
|
96614
96621
|
const section_r6 = i0.ɵɵnextContext(2).$implicit;
|
|
@@ -96617,7 +96624,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
|
|
|
96617
96624
|
i0.ɵɵproperty("visual", section_r6.visual)("viewMode", ctx_r1.viewMode());
|
|
96618
96625
|
} }
|
|
96619
96626
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
96620
|
-
i0.ɵɵelementStart(0, "div",
|
|
96627
|
+
i0.ɵɵelementStart(0, "div", 50)(1, "p", 51);
|
|
96621
96628
|
i0.ɵɵtext(2);
|
|
96622
96629
|
i0.ɵɵelementEnd()();
|
|
96623
96630
|
} if (rf & 2) {
|
|
@@ -96630,9 +96637,9 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
|
|
|
96630
96637
|
i0.ɵɵtextInterpolate1(" ", section_r6.description, " ");
|
|
96631
96638
|
} }
|
|
96632
96639
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
96633
|
-
i0.ɵɵelementStart(0, "div",
|
|
96634
|
-
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div",
|
|
96635
|
-
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div",
|
|
96640
|
+
i0.ɵɵelementStart(0, "div", 46);
|
|
96641
|
+
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div", 47);
|
|
96642
|
+
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div", 48);
|
|
96636
96643
|
i0.ɵɵelementEnd();
|
|
96637
96644
|
} if (rf & 2) {
|
|
96638
96645
|
const ctx_r6 = i0.ɵɵnextContext();
|
|
@@ -96645,7 +96652,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
|
|
|
96645
96652
|
i0.ɵɵconditional(section_r6.description ? 2 : -1);
|
|
96646
96653
|
} }
|
|
96647
96654
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
96648
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
96655
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 37);
|
|
96649
96656
|
} if (rf & 2) {
|
|
96650
96657
|
const ɵ$index_63_r8 = i0.ɵɵnextContext().$index;
|
|
96651
96658
|
const sectionList_r9 = i0.ɵɵnextContext();
|
|
@@ -96653,15 +96660,15 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
|
|
|
96653
96660
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r9[ɵ$index_63_r8 + 1].icon);
|
|
96654
96661
|
} }
|
|
96655
96662
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
96656
|
-
i0.ɵɵelementStart(0, "div",
|
|
96657
|
-
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_2_Template, 2, 2, "div",
|
|
96658
|
-
i0.ɵɵelementStart(3, "div",
|
|
96663
|
+
i0.ɵɵelementStart(0, "div", 38)(1, "div", 39);
|
|
96664
|
+
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_2_Template, 2, 2, "div", 40);
|
|
96665
|
+
i0.ɵɵelementStart(3, "div", 41)(4, "h3", 42);
|
|
96659
96666
|
i0.ɵɵtext(5);
|
|
96660
96667
|
i0.ɵɵelementEnd()()();
|
|
96661
|
-
i0.ɵɵconditionalCreate(6, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Template, 3, 4, "div",
|
|
96662
|
-
i0.ɵɵelement(7, "symphiq-profile-section-content",
|
|
96668
|
+
i0.ɵɵconditionalCreate(6, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Template, 3, 4, "div", 43);
|
|
96669
|
+
i0.ɵɵelement(7, "symphiq-profile-section-content", 44);
|
|
96663
96670
|
i0.ɵɵelementEnd();
|
|
96664
|
-
i0.ɵɵconditionalCreate(8, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider",
|
|
96671
|
+
i0.ɵɵconditionalCreate(8, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider", 37);
|
|
96665
96672
|
} if (rf & 2) {
|
|
96666
96673
|
const section_r6 = ctx.$implicit;
|
|
96667
96674
|
const ɵ$index_63_r8 = ctx.$index;
|
|
@@ -96682,7 +96689,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
|
|
|
96682
96689
|
i0.ɵɵconditional(!(ɵ$index_63_r8 === ɵ$count_63_r10 - 1) ? 8 : -1);
|
|
96683
96690
|
} }
|
|
96684
96691
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
96685
|
-
i0.ɵɵelementStart(0, "section",
|
|
96692
|
+
i0.ɵɵelementStart(0, "section", 35);
|
|
96686
96693
|
i0.ɵɵrepeaterCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Template, 9, 15, null, null, _forTrack0$5);
|
|
96687
96694
|
i0.ɵɵelementEnd();
|
|
96688
96695
|
} if (rf & 2) {
|
|
@@ -96690,9 +96697,9 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
|
|
|
96690
96697
|
i0.ɵɵrepeater(ctx);
|
|
96691
96698
|
} }
|
|
96692
96699
|
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
96693
|
-
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_0_Template, 1, 3, "symphiq-focus-area-executive-summary",
|
|
96700
|
+
i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_0_Template, 1, 3, "symphiq-focus-area-executive-summary", 34);
|
|
96694
96701
|
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_1_Template, 1, 1);
|
|
96695
|
-
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_Template, 3, 0, "section",
|
|
96702
|
+
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_Template, 3, 0, "section", 35);
|
|
96696
96703
|
} if (rf & 2) {
|
|
96697
96704
|
let tmp_2_0;
|
|
96698
96705
|
let tmp_3_0;
|
|
@@ -96769,6 +96776,39 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_22_Templa
|
|
|
96769
96776
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
96770
96777
|
i0.ɵɵproperty("opportunity", data_r18.opportunity)("viewMode", data_r18.viewMode)("allStrengths", ctx_r1.funnelStrengths())("currentModalState", ctx_r1.getCurrentModalState());
|
|
96771
96778
|
} }
|
|
96779
|
+
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_25_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
96780
|
+
i0.ɵɵnamespaceSVG();
|
|
96781
|
+
i0.ɵɵelementStart(0, "svg", 54);
|
|
96782
|
+
i0.ɵɵelement(1, "circle", 55)(2, "path", 56);
|
|
96783
|
+
i0.ɵɵelementEnd();
|
|
96784
|
+
i0.ɵɵnamespaceHTML();
|
|
96785
|
+
i0.ɵɵelementStart(3, "span");
|
|
96786
|
+
i0.ɵɵtext(4, "Marking as Reviewed...");
|
|
96787
|
+
i0.ɵɵelementEnd();
|
|
96788
|
+
} }
|
|
96789
|
+
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_25_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
96790
|
+
i0.ɵɵelementStart(0, "span");
|
|
96791
|
+
i0.ɵɵtext(1, "Mark Analysis as Reviewed");
|
|
96792
|
+
i0.ɵɵelementEnd();
|
|
96793
|
+
i0.ɵɵnamespaceSVG();
|
|
96794
|
+
i0.ɵɵelementStart(2, "svg", 57);
|
|
96795
|
+
i0.ɵɵelement(3, "path", 58);
|
|
96796
|
+
i0.ɵɵelementEnd();
|
|
96797
|
+
} }
|
|
96798
|
+
function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_25_Template(rf, ctx) { if (rf & 1) {
|
|
96799
|
+
const _r19 = i0.ɵɵgetCurrentView();
|
|
96800
|
+
i0.ɵɵelementStart(0, "div", 19)(1, "div", 52)(2, "button", 53);
|
|
96801
|
+
i0.ɵɵlistener("click", function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_25_Template_button_click_2_listener() { i0.ɵɵrestoreView(_r19); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleMarkAsReviewedClick()); });
|
|
96802
|
+
i0.ɵɵconditionalCreate(3, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_25_Conditional_3_Template, 5, 0)(4, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_25_Conditional_4_Template, 4, 0);
|
|
96803
|
+
i0.ɵɵelementEnd()()();
|
|
96804
|
+
} if (rf & 2) {
|
|
96805
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
96806
|
+
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "bg-white/95 border-slate-200" : "bg-slate-900/95 border-slate-700/50");
|
|
96807
|
+
i0.ɵɵadvance(2);
|
|
96808
|
+
i0.ɵɵproperty("disabled", ctx_r1.isMarkingAsReviewed())("ngClass", ctx_r1.isLightMode() ? "bg-gradient-to-r from-blue-600 via-cyan-600 to-teal-600 text-white hover:from-blue-700 hover:via-cyan-700 hover:to-teal-700 hover:scale-[1.02] hover:shadow-blue-600/25 active:scale-[0.98] disabled:opacity-70 disabled:cursor-not-allowed disabled:hover:scale-100" : "bg-gradient-to-r from-blue-600 via-cyan-600 to-teal-600 text-white hover:from-blue-500 hover:via-cyan-500 hover:to-teal-500 hover:scale-[1.02] hover:shadow-blue-500/25 active:scale-[0.98] disabled:opacity-70 disabled:cursor-not-allowed disabled:hover:scale-100");
|
|
96809
|
+
i0.ɵɵadvance();
|
|
96810
|
+
i0.ɵɵconditional(ctx_r1.isMarkingAsReviewed() ? 3 : 4);
|
|
96811
|
+
} }
|
|
96772
96812
|
class SymphiqProfileAnalysisFocusAreaDashboardComponent {
|
|
96773
96813
|
constructor() {
|
|
96774
96814
|
this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
|
|
@@ -96782,7 +96822,9 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
|
|
|
96782
96822
|
this.scrollElement = input(null, ...(ngDevMode ? [{ debugName: "scrollElement" }] : []));
|
|
96783
96823
|
this.focusAreaDetails = input(...(ngDevMode ? [undefined, { debugName: "focusAreaDetails" }] : []));
|
|
96784
96824
|
this.itemStatusProfileAnalysis = input(...(ngDevMode ? [undefined, { debugName: "itemStatusProfileAnalysis" }] : []));
|
|
96825
|
+
this.isMarkingAsReviewed = input(false, ...(ngDevMode ? [{ debugName: "isMarkingAsReviewed" }] : []));
|
|
96785
96826
|
this.nextStepClick = output();
|
|
96827
|
+
this.markAsReviewedClick = output();
|
|
96786
96828
|
this.funnelAnalysisSignal = signal(undefined, ...(ngDevMode ? [{ debugName: "funnelAnalysisSignal" }] : []));
|
|
96787
96829
|
this.headerScrollService = inject(HeaderScrollService);
|
|
96788
96830
|
this.modalService = inject(ModalService);
|
|
@@ -96809,6 +96851,12 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
|
|
|
96809
96851
|
this.shouldShowHeaderControls = computed(() => {
|
|
96810
96852
|
return !!this.profileAnalysis();
|
|
96811
96853
|
}, ...(ngDevMode ? [{ debugName: "shouldShowHeaderControls" }] : []));
|
|
96854
|
+
this.shouldShowReviewFooter = computed(() => {
|
|
96855
|
+
const profileAnalysis = this.profileAnalysis();
|
|
96856
|
+
if (!profileAnalysis)
|
|
96857
|
+
return false;
|
|
96858
|
+
return profileAnalysis.reviewStatus === ProfileAnalysisReviewStatusEnum.NOT_REVIEWED;
|
|
96859
|
+
}, ...(ngDevMode ? [{ debugName: "shouldShowReviewFooter" }] : []));
|
|
96812
96860
|
this.COLLAPSE_THRESHOLD = 20;
|
|
96813
96861
|
this.EXPAND_THRESHOLD = 10;
|
|
96814
96862
|
this.embeddedScrollEffect = effect(() => {
|
|
@@ -97073,6 +97121,9 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
|
|
|
97073
97121
|
closeViewModeSwitcher() {
|
|
97074
97122
|
this.isViewModeSwitcherOpen.set(false);
|
|
97075
97123
|
}
|
|
97124
|
+
handleMarkAsReviewedClick() {
|
|
97125
|
+
this.markAsReviewedClick.emit();
|
|
97126
|
+
}
|
|
97076
97127
|
openGoalModal(goal) {
|
|
97077
97128
|
this.modalService.navigateToGoalDetail(goal, this.viewMode());
|
|
97078
97129
|
}
|
|
@@ -97208,7 +97259,7 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
|
|
|
97208
97259
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.funnelModalComponent = _t.first);
|
|
97209
97260
|
} }, hostBindings: function SymphiqProfileAnalysisFocusAreaDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
97210
97261
|
i0.ɵɵlistener("scroll", function SymphiqProfileAnalysisFocusAreaDashboardComponent_scroll_HostBindingHandler($event) { return ctx.onWindowScroll($event); }, i0.ɵɵresolveWindow);
|
|
97211
|
-
} }, inputs: { viewMode: [1, "viewMode"], profileAnalysis: [1, "profileAnalysis"], funnelAnalysis: [1, "funnelAnalysis"], profile: [1, "profile"], isLoading: [1, "isLoading"], requestedByUser: [1, "requestedByUser"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], focusAreaDetails: [1, "focusAreaDetails"], itemStatusProfileAnalysis: [1, "itemStatusProfileAnalysis"] }, outputs: { nextStepClick: "nextStepClick" }, features: [i0.ɵɵNgOnChangesFeature], decls:
|
|
97262
|
+
} }, inputs: { viewMode: [1, "viewMode"], profileAnalysis: [1, "profileAnalysis"], funnelAnalysis: [1, "funnelAnalysis"], profile: [1, "profile"], isLoading: [1, "isLoading"], requestedByUser: [1, "requestedByUser"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], focusAreaDetails: [1, "focusAreaDetails"], itemStatusProfileAnalysis: [1, "itemStatusProfileAnalysis"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { nextStepClick: "nextStepClick", markAsReviewedClick: "markAsReviewedClick" }, features: [i0.ɵɵNgOnChangesFeature], decls: 27, vars: 43, consts: [["funnelModalComponent", ""], [1, "min-h-screen", "relative", 3, "ngClass"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "currentSection", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showControls"], [1, "relative", "z-10", "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-12", "space-y-12"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "close", "isOpen", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode"], [3, "isLightMode", "allMetrics", "allInsights", "allBusinessInsights", "allCharts"], [3, "goal", "viewMode", "isInModal", "allMetrics", "allCharts", "allInsights", "currentModalState", "businessProfile"], [3, "goal", "viewMode"], [3, "objective", "goalTitle", "viewMode"], [3, "strategy", "objectiveTitle", "goalTitle", "viewMode", "expandedRecommendationId", "allMetrics", "allCharts", "allInsights", "allBusinessInsights", "currentModalState"], [3, "category", "viewMode", "scrollToSection"], [3, "strength", "viewMode", "allFunnelStrengths", "currentModalState"], [3, "gap", "viewMode", "allGoals", "allWeaknesses", "currentModalState"], [3, "opportunity", "viewMode", "allStrengths", "currentModalState"], [1, "fixed", "bottom-0", "left-0", "right-0", "z-50", "border-t", "backdrop-blur-lg", 3, "ngClass"], [1, "mb-12"], [3, "viewMode", "focusAreaDomain", "focusAreaName"], [1, "rounded-2xl", "border", "shadow-lg", "p-8", "backdrop-blur-sm", 3, "ngClass"], [1, "flex", "flex-col", "items-center", "justify-center", "space-y-4"], ["size", "large", 3, "viewMode"], [1, "text-center"], [1, "text-lg", "font-semibold", "mb-1", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "mb-8"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], [3, "goals", "viewMode"], ["title", "Generating Your Focus Area Analysis", "subtitle", "We're analyzing your data to create your personalized analysis. It will appear when ready.", 3, "itemStatus", "viewMode"], [3, "viewMoreClick", "goals", "viewMode"], [3, "sections", "viewMode", "focusAreaExecutiveSummary", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], [3, "viewMode", "summary", "allGoals"], [1, "space-y-8"], [3, "topPrioritiesClick", "priorityDetailClick", "viewMode", "summary", "allGoals"], [3, "viewMode", "sectionIcon"], [1, "rounded-xl", "p-8", "scroll-mt-24", 3, "id", "ngClass"], [1, "flex", "items-start", "gap-3", "mb-6"], [1, "flex-shrink-0", "w-12", "h-12", "rounded-xl", "flex", "items-center", "justify-center", 3, "ngClass"], [1, "flex-1"], [1, "text-2xl", "font-bold", 3, "ngClass"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start", 3, "lg:flex-row-reverse"], [3, "section", "viewMode", "sectionIndex", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["size", "w-6 h-6", 3, "icon"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start"], [1, "w-full", "lg:w-2/3"], [1, "w-full", 3, "lg:w-1/3", "lg:w-full"], [3, "visual", "viewMode"], [1, "w-full"], [1, "text-sm", "leading-relaxed", "whitespace-pre-line", 3, "ngClass"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4"], ["type", "button", 1, "w-full", "px-6", "py-4", "rounded-xl", "font-semibold", "text-lg", "transition-all", "duration-300", "flex", "items-center", "justify-center", "gap-3", "shadow-2xl", "group", 3, "click", "disabled", "ngClass"], ["fill", "none", "viewBox", "0 0 24 24", 1, "w-6", "h-6", "animate-spin"], ["cx", "12", "cy", "12", "r", "10", "stroke", "currentColor", "stroke-width", "4", 1, "opacity-25"], ["fill", "currentColor", "d", "M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z", 1, "opacity-75"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", "transition-transform", "duration-200", "group-hover:translate-x-1"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 7l5 5m0 0l-5 5m5-5H6"]], template: function SymphiqProfileAnalysisFocusAreaDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
97212
97263
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
97213
97264
|
i0.ɵɵelementStart(0, "div", 1);
|
|
97214
97265
|
i0.ɵɵelement(1, "div", 2);
|
|
@@ -97241,12 +97292,12 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
|
|
|
97241
97292
|
i0.ɵɵconditionalCreate(21, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_21_Template, 1, 5, "symphiq-gap-detail-modal-content", 17);
|
|
97242
97293
|
i0.ɵɵconditionalCreate(22, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_22_Template, 1, 4, "symphiq-opportunity-detail-modal-content", 18);
|
|
97243
97294
|
i0.ɵɵelementEnd();
|
|
97244
|
-
i0.ɵɵelement(23, "symphiq-funnel-analysis-modal", null, 0)
|
|
97295
|
+
i0.ɵɵelement(23, "symphiq-funnel-analysis-modal", null, 0);
|
|
97296
|
+
i0.ɵɵconditionalCreate(25, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_25_Template, 5, 4, "div", 19);
|
|
97297
|
+
i0.ɵɵelement(26, "symphiq-tooltip-container");
|
|
97245
97298
|
i0.ɵɵelementEnd()();
|
|
97246
97299
|
} if (rf & 2) {
|
|
97247
|
-
let tmp_6_0;
|
|
97248
97300
|
let tmp_13_0;
|
|
97249
|
-
let tmp_30_0;
|
|
97250
97301
|
let tmp_31_0;
|
|
97251
97302
|
let tmp_32_0;
|
|
97252
97303
|
let tmp_33_0;
|
|
@@ -97254,6 +97305,7 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
|
|
|
97254
97305
|
let tmp_35_0;
|
|
97255
97306
|
let tmp_36_0;
|
|
97256
97307
|
let tmp_37_0;
|
|
97308
|
+
let tmp_38_0;
|
|
97257
97309
|
i0.ɵɵproperty("ngClass", ctx.getContainerClasses());
|
|
97258
97310
|
i0.ɵɵadvance();
|
|
97259
97311
|
i0.ɵɵclassProp("light-mode", ctx.isLightMode());
|
|
@@ -97263,8 +97315,10 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
|
|
|
97263
97315
|
i0.ɵɵstyleProp("width", ctx.scrollProgress(), "%");
|
|
97264
97316
|
i0.ɵɵproperty("ngClass", ctx.isLightMode() ? "bg-gradient-to-r from-blue-500 to-purple-500" : "bg-gradient-to-r from-blue-400 to-purple-400");
|
|
97265
97317
|
i0.ɵɵadvance(2);
|
|
97266
|
-
i0.ɵɵproperty("title",
|
|
97267
|
-
i0.ɵɵadvance(
|
|
97318
|
+
i0.ɵɵproperty("title", ctx.getAnalysisSubtitle())("subtitle", "")("currentSection", "Focus Area")("viewMode", ctx.viewMode())("viewModeLabel", ctx.displayModeLabel())("isLoading", ctx.isLoading())("requestedByUser", ctx.requestedByUser())("createdDate", (tmp_13_0 = ctx.profileAnalysis()) == null ? null : tmp_13_0.selfContentCompletedDate)("showControls", ctx.shouldShowHeaderControls());
|
|
97319
|
+
i0.ɵɵadvance();
|
|
97320
|
+
i0.ɵɵclassProp("pb-32", ctx.shouldShowReviewFooter());
|
|
97321
|
+
i0.ɵɵadvance();
|
|
97268
97322
|
i0.ɵɵconditional(ctx.isSimplifiedView() ? 7 : -1);
|
|
97269
97323
|
i0.ɵɵadvance();
|
|
97270
97324
|
i0.ɵɵconditional(ctx.isSimplifiedView() ? 8 : -1);
|
|
@@ -97281,21 +97335,23 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
|
|
|
97281
97335
|
i0.ɵɵadvance();
|
|
97282
97336
|
i0.ɵɵproperty("isLightMode", ctx.isLightMode())("allMetrics", ctx.allMetrics())("allInsights", ctx.allInsights())("allBusinessInsights", ctx.allBusinessInsights())("allCharts", ctx.allCharts());
|
|
97283
97337
|
i0.ɵɵadvance();
|
|
97284
|
-
i0.ɵɵconditional((
|
|
97338
|
+
i0.ɵɵconditional((tmp_31_0 = ctx.modalType() === "goal-detail" && ctx.getGoalDetailData()) ? 15 : -1, tmp_31_0);
|
|
97285
97339
|
i0.ɵɵadvance();
|
|
97286
|
-
i0.ɵɵconditional((
|
|
97340
|
+
i0.ɵɵconditional((tmp_32_0 = ctx.modalType() === "goal-objectives" && ctx.getGoalDetailData()) ? 16 : -1, tmp_32_0);
|
|
97287
97341
|
i0.ɵɵadvance();
|
|
97288
|
-
i0.ɵɵconditional((
|
|
97342
|
+
i0.ɵɵconditional((tmp_33_0 = ctx.modalType() === "objective-strategies" && ctx.getObjectiveStrategiesData()) ? 17 : -1, tmp_33_0);
|
|
97289
97343
|
i0.ɵɵadvance();
|
|
97290
|
-
i0.ɵɵconditional((
|
|
97344
|
+
i0.ɵɵconditional((tmp_34_0 = ctx.modalType() === "strategy-recommendations" && ctx.getStrategyRecommendationsData()) ? 18 : -1, tmp_34_0);
|
|
97291
97345
|
i0.ɵɵadvance();
|
|
97292
|
-
i0.ɵɵconditional((
|
|
97346
|
+
i0.ɵɵconditional((tmp_35_0 = ctx.modalType() === "category-detail" && ctx.getCategoryDetailData()) ? 19 : -1, tmp_35_0);
|
|
97293
97347
|
i0.ɵɵadvance();
|
|
97294
|
-
i0.ɵɵconditional((
|
|
97348
|
+
i0.ɵɵconditional((tmp_36_0 = ctx.modalType() === "strength-detail" && ctx.getStrengthDetailData()) ? 20 : -1, tmp_36_0);
|
|
97295
97349
|
i0.ɵɵadvance();
|
|
97296
|
-
i0.ɵɵconditional((
|
|
97350
|
+
i0.ɵɵconditional((tmp_37_0 = ctx.modalType() === "gap-detail" && ctx.getGapDetailData()) ? 21 : -1, tmp_37_0);
|
|
97297
97351
|
i0.ɵɵadvance();
|
|
97298
|
-
i0.ɵɵconditional((
|
|
97352
|
+
i0.ɵɵconditional((tmp_38_0 = ctx.modalType() === "opportunity-detail" && ctx.getOpportunityDetailData()) ? 22 : -1, tmp_38_0);
|
|
97353
|
+
i0.ɵɵadvance(3);
|
|
97354
|
+
i0.ɵɵconditional(ctx.shouldShowReviewFooter() ? 25 : -1);
|
|
97299
97355
|
} }, dependencies: [CommonModule, i1$1.NgClass, DashboardHeaderComponent,
|
|
97300
97356
|
SearchModalComponent,
|
|
97301
97357
|
ViewModeSwitcherModalComponent,
|
|
@@ -97376,9 +97432,9 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
|
|
|
97376
97432
|
<div class="relative z-[51]">
|
|
97377
97433
|
<!-- Dashboard Header -->
|
|
97378
97434
|
<symphiq-dashboard-header
|
|
97379
|
-
[title]="
|
|
97380
|
-
[subtitle]="
|
|
97381
|
-
[currentSection]="
|
|
97435
|
+
[title]="getAnalysisSubtitle()"
|
|
97436
|
+
[subtitle]="''"
|
|
97437
|
+
[currentSection]="'Focus Area'"
|
|
97382
97438
|
[viewMode]="viewMode()"
|
|
97383
97439
|
[viewModeLabel]="displayModeLabel()"
|
|
97384
97440
|
[isLoading]="isLoading()"
|
|
@@ -97390,7 +97446,8 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
|
|
|
97390
97446
|
/>
|
|
97391
97447
|
|
|
97392
97448
|
<!-- Main Content -->
|
|
97393
|
-
<main class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 space-y-12"
|
|
97449
|
+
<main class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 space-y-12"
|
|
97450
|
+
[class.pb-32]="shouldShowReviewFooter()">
|
|
97394
97451
|
|
|
97395
97452
|
<!-- Welcome Banner (Simplified View Only) -->
|
|
97396
97453
|
@if (isSimplifiedView()) {
|
|
@@ -97679,6 +97736,44 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
|
|
|
97679
97736
|
#funnelModalComponent
|
|
97680
97737
|
/>
|
|
97681
97738
|
|
|
97739
|
+
<!-- Mark as Reviewed Sticky Footer -->
|
|
97740
|
+
@if (shouldShowReviewFooter()) {
|
|
97741
|
+
<div
|
|
97742
|
+
[ngClass]="isLightMode() ? 'bg-white/95 border-slate-200' : 'bg-slate-900/95 border-slate-700/50'"
|
|
97743
|
+
class="fixed bottom-0 left-0 right-0 z-50 border-t backdrop-blur-lg"
|
|
97744
|
+
>
|
|
97745
|
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4">
|
|
97746
|
+
<button
|
|
97747
|
+
type="button"
|
|
97748
|
+
[disabled]="isMarkingAsReviewed()"
|
|
97749
|
+
(click)="handleMarkAsReviewedClick()"
|
|
97750
|
+
[ngClass]="isLightMode()
|
|
97751
|
+
? 'bg-gradient-to-r from-blue-600 via-cyan-600 to-teal-600 text-white hover:from-blue-700 hover:via-cyan-700 hover:to-teal-700 hover:scale-[1.02] hover:shadow-blue-600/25 active:scale-[0.98] disabled:opacity-70 disabled:cursor-not-allowed disabled:hover:scale-100'
|
|
97752
|
+
: 'bg-gradient-to-r from-blue-600 via-cyan-600 to-teal-600 text-white hover:from-blue-500 hover:via-cyan-500 hover:to-teal-500 hover:scale-[1.02] hover:shadow-blue-500/25 active:scale-[0.98] disabled:opacity-70 disabled:cursor-not-allowed disabled:hover:scale-100'"
|
|
97753
|
+
class="w-full px-6 py-4 rounded-xl font-semibold text-lg transition-all duration-300 flex items-center justify-center gap-3 shadow-2xl group"
|
|
97754
|
+
>
|
|
97755
|
+
@if (isMarkingAsReviewed()) {
|
|
97756
|
+
<svg class="w-6 h-6 animate-spin" fill="none" viewBox="0 0 24 24">
|
|
97757
|
+
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
|
|
97758
|
+
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
|
97759
|
+
</svg>
|
|
97760
|
+
<span>Marking as Reviewed...</span>
|
|
97761
|
+
} @else {
|
|
97762
|
+
<span>Mark Analysis as Reviewed</span>
|
|
97763
|
+
<svg
|
|
97764
|
+
class="w-6 h-6 transition-transform duration-200 group-hover:translate-x-1"
|
|
97765
|
+
fill="none"
|
|
97766
|
+
stroke="currentColor"
|
|
97767
|
+
viewBox="0 0 24 24"
|
|
97768
|
+
>
|
|
97769
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7l5 5m0 0l-5 5m5-5H6"></path>
|
|
97770
|
+
</svg>
|
|
97771
|
+
}
|
|
97772
|
+
</button>
|
|
97773
|
+
</div>
|
|
97774
|
+
</div>
|
|
97775
|
+
}
|
|
97776
|
+
|
|
97682
97777
|
<!-- Tooltip Container -->
|
|
97683
97778
|
<symphiq-tooltip-container />
|
|
97684
97779
|
</div>
|
|
@@ -97688,11 +97783,11 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
|
|
|
97688
97783
|
}], null, { funnelModalComponent: [{
|
|
97689
97784
|
type: ViewChild,
|
|
97690
97785
|
args: ['funnelModalComponent']
|
|
97691
|
-
}], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], profileAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileAnalysis", required: false }] }], funnelAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "funnelAnalysis", required: false }] }], profile: [{ type: i0.Input, args: [{ isSignal: true, alias: "profile", required: false }] }], isLoading: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoading", required: false }] }], requestedByUser: [{ type: i0.Input, args: [{ isSignal: true, alias: "requestedByUser", required: false }] }], embedded: [{ type: i0.Input, args: [{ isSignal: true, alias: "embedded", required: false }] }], scrollEvent: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollEvent", required: false }] }], scrollElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollElement", required: false }] }], focusAreaDetails: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaDetails", required: false }] }], itemStatusProfileAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemStatusProfileAnalysis", required: false }] }], nextStepClick: [{ type: i0.Output, args: ["nextStepClick"] }], onWindowScroll: [{
|
|
97786
|
+
}], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], profileAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileAnalysis", required: false }] }], funnelAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "funnelAnalysis", required: false }] }], profile: [{ type: i0.Input, args: [{ isSignal: true, alias: "profile", required: false }] }], isLoading: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoading", required: false }] }], requestedByUser: [{ type: i0.Input, args: [{ isSignal: true, alias: "requestedByUser", required: false }] }], embedded: [{ type: i0.Input, args: [{ isSignal: true, alias: "embedded", required: false }] }], scrollEvent: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollEvent", required: false }] }], scrollElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollElement", required: false }] }], focusAreaDetails: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaDetails", required: false }] }], itemStatusProfileAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemStatusProfileAnalysis", required: false }] }], isMarkingAsReviewed: [{ type: i0.Input, args: [{ isSignal: true, alias: "isMarkingAsReviewed", required: false }] }], nextStepClick: [{ type: i0.Output, args: ["nextStepClick"] }], markAsReviewedClick: [{ type: i0.Output, args: ["markAsReviewedClick"] }], onWindowScroll: [{
|
|
97692
97787
|
type: HostListener,
|
|
97693
97788
|
args: ['window:scroll', ['$event']]
|
|
97694
97789
|
}] }); })();
|
|
97695
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisFocusAreaDashboardComponent, { className: "SymphiqProfileAnalysisFocusAreaDashboardComponent", filePath: "lib/components/profile-analysis-focus-area-dashboard/symphiq-profile-analysis-focus-area-dashboard.component.ts", lineNumber:
|
|
97790
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisFocusAreaDashboardComponent, { className: "SymphiqProfileAnalysisFocusAreaDashboardComponent", filePath: "lib/components/profile-analysis-focus-area-dashboard/symphiq-profile-analysis-focus-area-dashboard.component.ts", lineNumber: 508 }); })();
|
|
97696
97791
|
|
|
97697
97792
|
const _forTrack0$4 = ($index, $item) => $item.id;
|
|
97698
97793
|
function ShopProfileCategoryListComponent_For_2_Template(rf, ctx) { if (rf & 1) {
|