@eric-emg/symphiq-components 1.3.74 → 1.3.76
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 +1080 -1083
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/package.json +1 -1
- package/styles.css +46 -0
- package/types/symphiq-components.d.ts +57 -59
- package/types/symphiq-components.d.ts.map +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ViewModeEnum, MetricStatusEnum, TrendDirectionEnum, CompetitiveScoreEnum, MetricEnum, DimensionEnum, UiDataPeriodEnum, UiDataComparePeriodEnum, ChartTypeEnum, IconSourceEnum, ProfileAnalysisRecommendationPriorityEnum, ProfileItemTypeEnum, PriceVsCompetitorsEnum, DifferentiationStrengthEnum, ThreatLevelEnum, AiDynamicContentStatusEnum, ProfileAnalysisReviewStatusEnum, normalizeToV3, FocusAreaDetailStatusEnum, FocusAreaDomainEnumUtil, FocusAreaDomainEnum, ShopDataLoadStatusEnum, MetricEnumUtil, NumberTypeEnum, LineChartUseCaseEnum, FunnelMetricTypeEnum, ProfileAnalysisPriorityEnum, CapabilityStateEnum, QuadrantEnum, AdvantageEnum, OverallGradeEnum, OperationalMaturityEnum, ProfileAnalysisTrendDirectionEnum, PacingStatusEnum, FunnelStageEnum, ProfileAnalysisEffortLevelEnum, ProfileAnalysisImpactLevelEnum, FocusAreaHealthEnum, ProfileAnswerActionEnum, CurrencyCodeEnum, ChargebeeItemPricePeriodUnitEnum, ChargebeeSubscriptionStatusEnumUtil,
|
|
1
|
+
import { ViewModeEnum, MetricStatusEnum, TrendDirectionEnum, CompetitiveScoreEnum, MetricEnum, DimensionEnum, UiDataPeriodEnum, UiDataComparePeriodEnum, ChartTypeEnum, IconSourceEnum, ProfileAnalysisRecommendationPriorityEnum, ProfileItemTypeEnum, PriceVsCompetitorsEnum, DifferentiationStrengthEnum, ThreatLevelEnum, ProfileAnalysisTypeEnum, AiDynamicContentStatusEnum, ProfileAnalysisReviewStatusEnum, normalizeToV3, FocusAreaDetailStatusEnum, FocusAreaDomainEnumUtil, FocusAreaDomainEnum, ShopDataLoadStatusEnum, MetricEnumUtil, NumberTypeEnum, LineChartUseCaseEnum, FunnelMetricTypeEnum, ProfileAnalysisPriorityEnum, CapabilityStateEnum, QuadrantEnum, AdvantageEnum, OverallGradeEnum, OperationalMaturityEnum, ProfileAnalysisTrendDirectionEnum, PacingStatusEnum, FunnelStageEnum, ProfileAnalysisEffortLevelEnum, ProfileAnalysisImpactLevelEnum, FocusAreaHealthEnum, ProfileAnswerActionEnum, CurrencyCodeEnum, ChargebeeItemPricePeriodUnitEnum, ChargebeeSubscriptionStatusEnumUtil, 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, inject, ElementRef, Renderer2, effect, Directive, HostListener, output, untracked, DestroyRef, ViewChild, PLATFORM_ID, Inject, Input, afterNextRender, NgZone } from '@angular/core';
|
|
@@ -313,13 +313,6 @@ class ModalService {
|
|
|
313
313
|
depthFromPrevState++;
|
|
314
314
|
walkState = walkState.previousState ?? undefined;
|
|
315
315
|
}
|
|
316
|
-
console.log('[ModalService] openRecommendationMetricsListModal:', {
|
|
317
|
-
previousStateExists: !!previousState,
|
|
318
|
-
previousStateType: previousState?.type,
|
|
319
|
-
depthFromPrevState,
|
|
320
|
-
navigationStackLength: navigationStack.length,
|
|
321
|
-
openedFromMainBody
|
|
322
|
-
});
|
|
323
316
|
this.modalState.next({
|
|
324
317
|
type: 'metrics-list',
|
|
325
318
|
data: {
|
|
@@ -456,6 +449,12 @@ class ModalService {
|
|
|
456
449
|
const data = { goal, viewMode };
|
|
457
450
|
this.modalState.next({ type: 'goal-objectives', data, charts: [], previousState: null });
|
|
458
451
|
}
|
|
452
|
+
openSourceGoalDetailModal(goal, viewMode, sourceAnalysisType, previousState) {
|
|
453
|
+
const data = { goal, viewMode, sourceAnalysisType };
|
|
454
|
+
const navigationStack = previousState ? [...(previousState.navigationStack || []), previousState] : [];
|
|
455
|
+
console.log('[ModalService] openSourceGoalDetailModal - previousState:', previousState?.type, 'navigationStack:', navigationStack.length, 'items', navigationStack.map(s => s.type));
|
|
456
|
+
this.modalState.next({ type: 'goal-detail', data, charts: [], previousState, navigationStack });
|
|
457
|
+
}
|
|
459
458
|
navigateToGoalDetail(goal, viewMode) {
|
|
460
459
|
const currentState = this.modalState.value;
|
|
461
460
|
let sourceCategory;
|
|
@@ -495,7 +494,11 @@ class ModalService {
|
|
|
495
494
|
}
|
|
496
495
|
navigateToGoalObjectives(goal, viewMode) {
|
|
497
496
|
const currentState = this.modalState.value;
|
|
498
|
-
|
|
497
|
+
let sourceAnalysisType;
|
|
498
|
+
if (currentState.data && 'sourceAnalysisType' in currentState.data) {
|
|
499
|
+
sourceAnalysisType = currentState.data.sourceAnalysisType;
|
|
500
|
+
}
|
|
501
|
+
const data = { goal, viewMode, sourceAnalysisType };
|
|
499
502
|
const currentStack = currentState.navigationStack || [];
|
|
500
503
|
let newStack = currentStack;
|
|
501
504
|
if ((currentState.type === 'goal-detail' || currentState.type === 'goal-objectives' || currentState.type === 'objective-strategies' || currentState.type === 'strategy-recommendations') && currentState.data) {
|
|
@@ -30337,6 +30340,363 @@ class GoalDetailModalContentComponent {
|
|
|
30337
30340
|
}], null, { goal: [{ type: i0.Input, args: [{ isSignal: true, alias: "goal", required: true }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: true }] }], allInsights: [{ type: i0.Input, args: [{ isSignal: true, alias: "allInsights", required: false }] }], allMetrics: [{ type: i0.Input, args: [{ isSignal: true, alias: "allMetrics", required: false }] }], allBusinessInsights: [{ type: i0.Input, args: [{ isSignal: true, alias: "allBusinessInsights", required: false }] }], allCharts: [{ type: i0.Input, args: [{ isSignal: true, alias: "allCharts", required: false }] }], showObjectives: [{ type: i0.Output, args: ["showObjectives"] }] }); })();
|
|
30338
30341
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(GoalDetailModalContentComponent, { className: "GoalDetailModalContentComponent", filePath: "lib/components/profile-analysis-shop-dashboard/modals/goal-detail-modal-content.component.ts", lineNumber: 65 }); })();
|
|
30339
30342
|
|
|
30343
|
+
const _forTrack0$_ = ($index, $item) => $item.id || $index;
|
|
30344
|
+
function GoalObjectivesModalContentComponent_For_2_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
30345
|
+
i0.ɵɵelementStart(0, "p", 9);
|
|
30346
|
+
i0.ɵɵtext(1);
|
|
30347
|
+
i0.ɵɵelementEnd();
|
|
30348
|
+
} if (rf & 2) {
|
|
30349
|
+
const objective_r1 = i0.ɵɵnextContext().$implicit;
|
|
30350
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
30351
|
+
i0.ɵɵproperty("ngClass", ctx_r1.descriptionClasses());
|
|
30352
|
+
i0.ɵɵadvance();
|
|
30353
|
+
i0.ɵɵtextInterpolate(objective_r1.description);
|
|
30354
|
+
} }
|
|
30355
|
+
function GoalObjectivesModalContentComponent_For_2_Conditional_11_Template(rf, ctx) { if (rf & 1) {
|
|
30356
|
+
i0.ɵɵelementStart(0, "div", 10)(1, "div", 13);
|
|
30357
|
+
i0.ɵɵnamespaceSVG();
|
|
30358
|
+
i0.ɵɵelementStart(2, "svg", 14);
|
|
30359
|
+
i0.ɵɵelement(3, "path", 15);
|
|
30360
|
+
i0.ɵɵelementEnd();
|
|
30361
|
+
i0.ɵɵnamespaceHTML();
|
|
30362
|
+
i0.ɵɵelementStart(4, "div", 16)(5, "p", 17);
|
|
30363
|
+
i0.ɵɵtext(6, "Measurable Target");
|
|
30364
|
+
i0.ɵɵelementEnd();
|
|
30365
|
+
i0.ɵɵelementStart(7, "p", 18);
|
|
30366
|
+
i0.ɵɵtext(8);
|
|
30367
|
+
i0.ɵɵelementEnd()()()();
|
|
30368
|
+
} if (rf & 2) {
|
|
30369
|
+
const objective_r1 = i0.ɵɵnextContext().$implicit;
|
|
30370
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
30371
|
+
i0.ɵɵproperty("ngClass", ctx_r1.targetSectionClasses());
|
|
30372
|
+
i0.ɵɵadvance(2);
|
|
30373
|
+
i0.ɵɵproperty("ngClass", ctx_r1.targetIconClasses());
|
|
30374
|
+
i0.ɵɵadvance(3);
|
|
30375
|
+
i0.ɵɵproperty("ngClass", ctx_r1.targetLabelClasses());
|
|
30376
|
+
i0.ɵɵadvance(2);
|
|
30377
|
+
i0.ɵɵproperty("ngClass", ctx_r1.targetValueClasses());
|
|
30378
|
+
i0.ɵɵadvance();
|
|
30379
|
+
i0.ɵɵtextInterpolate(objective_r1.measurableTarget);
|
|
30380
|
+
} }
|
|
30381
|
+
function GoalObjectivesModalContentComponent_For_2_Conditional_12_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
30382
|
+
i0.ɵɵelementStart(0, "div", 19)(1, "p", 17);
|
|
30383
|
+
i0.ɵɵtext(2, "Current State");
|
|
30384
|
+
i0.ɵɵelementEnd();
|
|
30385
|
+
i0.ɵɵelementStart(3, "p", 20);
|
|
30386
|
+
i0.ɵɵtext(4);
|
|
30387
|
+
i0.ɵɵelementEnd()();
|
|
30388
|
+
} if (rf & 2) {
|
|
30389
|
+
const objective_r1 = i0.ɵɵnextContext(2).$implicit;
|
|
30390
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
30391
|
+
i0.ɵɵproperty("ngClass", ctx_r1.stateSectionClasses());
|
|
30392
|
+
i0.ɵɵadvance();
|
|
30393
|
+
i0.ɵɵproperty("ngClass", ctx_r1.stateLabelClasses());
|
|
30394
|
+
i0.ɵɵadvance(2);
|
|
30395
|
+
i0.ɵɵproperty("ngClass", ctx_r1.stateValueClasses());
|
|
30396
|
+
i0.ɵɵadvance();
|
|
30397
|
+
i0.ɵɵtextInterpolate(objective_r1.currentState);
|
|
30398
|
+
} }
|
|
30399
|
+
function GoalObjectivesModalContentComponent_For_2_Conditional_12_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
30400
|
+
i0.ɵɵelementStart(0, "div", 19)(1, "p", 17);
|
|
30401
|
+
i0.ɵɵtext(2, "Desired State");
|
|
30402
|
+
i0.ɵɵelementEnd();
|
|
30403
|
+
i0.ɵɵelementStart(3, "p", 18);
|
|
30404
|
+
i0.ɵɵtext(4);
|
|
30405
|
+
i0.ɵɵelementEnd()();
|
|
30406
|
+
} if (rf & 2) {
|
|
30407
|
+
const objective_r1 = i0.ɵɵnextContext(2).$implicit;
|
|
30408
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
30409
|
+
i0.ɵɵproperty("ngClass", ctx_r1.stateSectionClasses());
|
|
30410
|
+
i0.ɵɵadvance();
|
|
30411
|
+
i0.ɵɵproperty("ngClass", ctx_r1.stateLabelClasses());
|
|
30412
|
+
i0.ɵɵadvance(2);
|
|
30413
|
+
i0.ɵɵproperty("ngClass", ctx_r1.stateValueClasses());
|
|
30414
|
+
i0.ɵɵadvance();
|
|
30415
|
+
i0.ɵɵtextInterpolate(objective_r1.desiredState);
|
|
30416
|
+
} }
|
|
30417
|
+
function GoalObjectivesModalContentComponent_For_2_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
30418
|
+
i0.ɵɵelementStart(0, "div", 11);
|
|
30419
|
+
i0.ɵɵconditionalCreate(1, GoalObjectivesModalContentComponent_For_2_Conditional_12_Conditional_1_Template, 5, 4, "div", 19);
|
|
30420
|
+
i0.ɵɵconditionalCreate(2, GoalObjectivesModalContentComponent_For_2_Conditional_12_Conditional_2_Template, 5, 4, "div", 19);
|
|
30421
|
+
i0.ɵɵelementEnd();
|
|
30422
|
+
} if (rf & 2) {
|
|
30423
|
+
const objective_r1 = i0.ɵɵnextContext().$implicit;
|
|
30424
|
+
i0.ɵɵadvance();
|
|
30425
|
+
i0.ɵɵconditional(objective_r1.currentState ? 1 : -1);
|
|
30426
|
+
i0.ɵɵadvance();
|
|
30427
|
+
i0.ɵɵconditional(objective_r1.desiredState ? 2 : -1);
|
|
30428
|
+
} }
|
|
30429
|
+
function GoalObjectivesModalContentComponent_For_2_Conditional_13_Template(rf, ctx) { if (rf & 1) {
|
|
30430
|
+
const _r3 = i0.ɵɵgetCurrentView();
|
|
30431
|
+
i0.ɵɵelementStart(0, "button", 21);
|
|
30432
|
+
i0.ɵɵlistener("click", function GoalObjectivesModalContentComponent_For_2_Conditional_13_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r3); const objective_r1 = i0.ɵɵnextContext().$implicit; const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openStrategiesModal(objective_r1)); });
|
|
30433
|
+
i0.ɵɵelementStart(1, "div", 22)(2, "div", 23)(3, "div", 24);
|
|
30434
|
+
i0.ɵɵnamespaceSVG();
|
|
30435
|
+
i0.ɵɵelementStart(4, "svg", 25);
|
|
30436
|
+
i0.ɵɵelement(5, "path", 26);
|
|
30437
|
+
i0.ɵɵelementEnd()();
|
|
30438
|
+
i0.ɵɵnamespaceHTML();
|
|
30439
|
+
i0.ɵɵelementStart(6, "div", 27)(7, "div", 18);
|
|
30440
|
+
i0.ɵɵtext(8, "Show Strategies");
|
|
30441
|
+
i0.ɵɵelementEnd();
|
|
30442
|
+
i0.ɵɵelementStart(9, "div", 28);
|
|
30443
|
+
i0.ɵɵtext(10, "View objective strategies");
|
|
30444
|
+
i0.ɵɵelementEnd()()();
|
|
30445
|
+
i0.ɵɵnamespaceSVG();
|
|
30446
|
+
i0.ɵɵelementStart(11, "svg", 29);
|
|
30447
|
+
i0.ɵɵelement(12, "path", 30);
|
|
30448
|
+
i0.ɵɵelementEnd()()();
|
|
30449
|
+
} if (rf & 2) {
|
|
30450
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
30451
|
+
i0.ɵɵproperty("ngClass", ctx_r1.showStrategiesButtonClasses());
|
|
30452
|
+
i0.ɵɵadvance(3);
|
|
30453
|
+
i0.ɵɵproperty("ngClass", ctx_r1.strategiesIconBgClasses());
|
|
30454
|
+
i0.ɵɵadvance();
|
|
30455
|
+
i0.ɵɵproperty("ngClass", ctx_r1.strategiesIconClasses());
|
|
30456
|
+
i0.ɵɵadvance(3);
|
|
30457
|
+
i0.ɵɵproperty("ngClass", ctx_r1.strategiesLabelClasses());
|
|
30458
|
+
i0.ɵɵadvance(2);
|
|
30459
|
+
i0.ɵɵproperty("ngClass", ctx_r1.strategiesSubLabelClasses());
|
|
30460
|
+
i0.ɵɵadvance(2);
|
|
30461
|
+
i0.ɵɵproperty("ngClass", ctx_r1.strategiesChevronClasses());
|
|
30462
|
+
} }
|
|
30463
|
+
function GoalObjectivesModalContentComponent_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
30464
|
+
i0.ɵɵelementStart(0, "div", 1)(1, "div", 2)(2, "div", 3);
|
|
30465
|
+
i0.ɵɵnamespaceSVG();
|
|
30466
|
+
i0.ɵɵelementStart(3, "svg", 4);
|
|
30467
|
+
i0.ɵɵelement(4, "path", 5);
|
|
30468
|
+
i0.ɵɵelementEnd()();
|
|
30469
|
+
i0.ɵɵnamespaceHTML();
|
|
30470
|
+
i0.ɵɵelementStart(5, "div", 6)(6, "div", 7);
|
|
30471
|
+
i0.ɵɵtext(7, " Objective ");
|
|
30472
|
+
i0.ɵɵelementEnd();
|
|
30473
|
+
i0.ɵɵelementStart(8, "h5", 8);
|
|
30474
|
+
i0.ɵɵtext(9);
|
|
30475
|
+
i0.ɵɵelementEnd();
|
|
30476
|
+
i0.ɵɵconditionalCreate(10, GoalObjectivesModalContentComponent_For_2_Conditional_10_Template, 2, 2, "p", 9);
|
|
30477
|
+
i0.ɵɵconditionalCreate(11, GoalObjectivesModalContentComponent_For_2_Conditional_11_Template, 9, 5, "div", 10);
|
|
30478
|
+
i0.ɵɵconditionalCreate(12, GoalObjectivesModalContentComponent_For_2_Conditional_12_Template, 3, 2, "div", 11);
|
|
30479
|
+
i0.ɵɵconditionalCreate(13, GoalObjectivesModalContentComponent_For_2_Conditional_13_Template, 13, 6, "button", 12);
|
|
30480
|
+
i0.ɵɵelementEnd()()();
|
|
30481
|
+
} if (rf & 2) {
|
|
30482
|
+
const objective_r1 = ctx.$implicit;
|
|
30483
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
30484
|
+
i0.ɵɵproperty("ngClass", ctx_r1.cardClasses());
|
|
30485
|
+
i0.ɵɵadvance(2);
|
|
30486
|
+
i0.ɵɵproperty("ngClass", ctx_r1.iconContainerClasses());
|
|
30487
|
+
i0.ɵɵadvance(4);
|
|
30488
|
+
i0.ɵɵproperty("ngClass", ctx_r1.labelClasses());
|
|
30489
|
+
i0.ɵɵadvance(2);
|
|
30490
|
+
i0.ɵɵproperty("ngClass", ctx_r1.titleClasses());
|
|
30491
|
+
i0.ɵɵadvance();
|
|
30492
|
+
i0.ɵɵtextInterpolate(objective_r1.title);
|
|
30493
|
+
i0.ɵɵadvance();
|
|
30494
|
+
i0.ɵɵconditional(objective_r1.description ? 10 : -1);
|
|
30495
|
+
i0.ɵɵadvance();
|
|
30496
|
+
i0.ɵɵconditional(objective_r1.measurableTarget ? 11 : -1);
|
|
30497
|
+
i0.ɵɵadvance();
|
|
30498
|
+
i0.ɵɵconditional(objective_r1.currentState || objective_r1.desiredState ? 12 : -1);
|
|
30499
|
+
i0.ɵɵadvance();
|
|
30500
|
+
i0.ɵɵconditional(objective_r1.strategies && objective_r1.strategies.length > 0 ? 13 : -1);
|
|
30501
|
+
} }
|
|
30502
|
+
class GoalObjectivesModalContentComponent {
|
|
30503
|
+
constructor() {
|
|
30504
|
+
this.objectives = input.required(...(ngDevMode ? [{ debugName: "objectives" }] : []));
|
|
30505
|
+
this.goalTitle = input.required(...(ngDevMode ? [{ debugName: "goalTitle" }] : []));
|
|
30506
|
+
this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
|
|
30507
|
+
this.modalService = inject(ModalService);
|
|
30508
|
+
this.isDark = computed(() => this.viewMode() === ViewModeEnum.DARK, ...(ngDevMode ? [{ debugName: "isDark" }] : []));
|
|
30509
|
+
this.cardClasses = computed(() => {
|
|
30510
|
+
const base = 'transition-all duration-200';
|
|
30511
|
+
if (this.isDark()) {
|
|
30512
|
+
return `${base} bg-slate-900/30 border border-slate-700/30 hover:border-blue-500/20`;
|
|
30513
|
+
}
|
|
30514
|
+
return `${base} bg-slate-50/50 border border-slate-200/50 hover:border-blue-500/20`;
|
|
30515
|
+
}, ...(ngDevMode ? [{ debugName: "cardClasses" }] : []));
|
|
30516
|
+
this.iconContainerClasses = computed(() => {
|
|
30517
|
+
if (this.isDark()) {
|
|
30518
|
+
return 'flex-shrink-0 w-8 h-8 rounded-md bg-green-500/20 flex items-center justify-center text-green-400';
|
|
30519
|
+
}
|
|
30520
|
+
return 'flex-shrink-0 w-8 h-8 rounded-md bg-green-50 flex items-center justify-center text-green-600';
|
|
30521
|
+
}, ...(ngDevMode ? [{ debugName: "iconContainerClasses" }] : []));
|
|
30522
|
+
this.titleClasses = computed(() => {
|
|
30523
|
+
return this.isDark() ? 'text-slate-100' : 'text-slate-900';
|
|
30524
|
+
}, ...(ngDevMode ? [{ debugName: "titleClasses" }] : []));
|
|
30525
|
+
this.descriptionClasses = computed(() => {
|
|
30526
|
+
return this.isDark() ? 'text-slate-300' : 'text-slate-600';
|
|
30527
|
+
}, ...(ngDevMode ? [{ debugName: "descriptionClasses" }] : []));
|
|
30528
|
+
this.targetSectionClasses = computed(() => {
|
|
30529
|
+
if (this.isDark()) {
|
|
30530
|
+
return 'bg-blue-500/10 border border-blue-500/20';
|
|
30531
|
+
}
|
|
30532
|
+
return 'bg-blue-50 border border-blue-200';
|
|
30533
|
+
}, ...(ngDevMode ? [{ debugName: "targetSectionClasses" }] : []));
|
|
30534
|
+
this.targetIconClasses = computed(() => {
|
|
30535
|
+
return this.isDark() ? 'text-blue-400' : 'text-blue-600';
|
|
30536
|
+
}, ...(ngDevMode ? [{ debugName: "targetIconClasses" }] : []));
|
|
30537
|
+
this.targetLabelClasses = computed(() => {
|
|
30538
|
+
return this.isDark() ? 'text-slate-400' : 'text-slate-500';
|
|
30539
|
+
}, ...(ngDevMode ? [{ debugName: "targetLabelClasses" }] : []));
|
|
30540
|
+
this.targetValueClasses = computed(() => {
|
|
30541
|
+
return this.isDark() ? 'text-slate-100' : 'text-slate-900';
|
|
30542
|
+
}, ...(ngDevMode ? [{ debugName: "targetValueClasses" }] : []));
|
|
30543
|
+
this.stateSectionClasses = computed(() => {
|
|
30544
|
+
if (this.isDark()) {
|
|
30545
|
+
return 'bg-slate-800/50 border border-slate-700/50';
|
|
30546
|
+
}
|
|
30547
|
+
return 'bg-white border border-slate-200';
|
|
30548
|
+
}, ...(ngDevMode ? [{ debugName: "stateSectionClasses" }] : []));
|
|
30549
|
+
this.stateLabelClasses = computed(() => {
|
|
30550
|
+
return this.isDark() ? 'text-slate-400' : 'text-slate-500';
|
|
30551
|
+
}, ...(ngDevMode ? [{ debugName: "stateLabelClasses" }] : []));
|
|
30552
|
+
this.stateValueClasses = computed(() => {
|
|
30553
|
+
return this.isDark() ? 'text-slate-200' : 'text-slate-700';
|
|
30554
|
+
}, ...(ngDevMode ? [{ debugName: "stateValueClasses" }] : []));
|
|
30555
|
+
this.showStrategiesButtonClasses = computed(() => {
|
|
30556
|
+
if (this.isDark()) {
|
|
30557
|
+
return 'bg-slate-800/50 border-slate-700 hover:border-blue-500/50 hover:bg-slate-700/50';
|
|
30558
|
+
}
|
|
30559
|
+
return 'bg-white border-slate-200 hover:border-blue-500/50 hover:bg-slate-50';
|
|
30560
|
+
}, ...(ngDevMode ? [{ debugName: "showStrategiesButtonClasses" }] : []));
|
|
30561
|
+
this.strategiesIconBgClasses = computed(() => {
|
|
30562
|
+
if (this.isDark()) {
|
|
30563
|
+
return 'bg-blue-900/30';
|
|
30564
|
+
}
|
|
30565
|
+
return 'bg-blue-100';
|
|
30566
|
+
}, ...(ngDevMode ? [{ debugName: "strategiesIconBgClasses" }] : []));
|
|
30567
|
+
this.strategiesIconClasses = computed(() => {
|
|
30568
|
+
if (this.isDark()) {
|
|
30569
|
+
return 'text-blue-400';
|
|
30570
|
+
}
|
|
30571
|
+
return 'text-blue-600';
|
|
30572
|
+
}, ...(ngDevMode ? [{ debugName: "strategiesIconClasses" }] : []));
|
|
30573
|
+
this.strategiesLabelClasses = computed(() => {
|
|
30574
|
+
if (this.isDark()) {
|
|
30575
|
+
return 'text-white';
|
|
30576
|
+
}
|
|
30577
|
+
return 'text-slate-900';
|
|
30578
|
+
}, ...(ngDevMode ? [{ debugName: "strategiesLabelClasses" }] : []));
|
|
30579
|
+
this.strategiesSubLabelClasses = computed(() => {
|
|
30580
|
+
if (this.isDark()) {
|
|
30581
|
+
return 'text-slate-400';
|
|
30582
|
+
}
|
|
30583
|
+
return 'text-slate-600';
|
|
30584
|
+
}, ...(ngDevMode ? [{ debugName: "strategiesSubLabelClasses" }] : []));
|
|
30585
|
+
this.strategiesChevronClasses = computed(() => {
|
|
30586
|
+
if (this.isDark()) {
|
|
30587
|
+
return 'text-slate-500 group-hover:text-blue-400';
|
|
30588
|
+
}
|
|
30589
|
+
return 'text-slate-400 group-hover:text-blue-600';
|
|
30590
|
+
}, ...(ngDevMode ? [{ debugName: "strategiesChevronClasses" }] : []));
|
|
30591
|
+
this.labelClasses = computed(() => {
|
|
30592
|
+
return this.isDark() ? 'text-green-400' : 'text-green-600';
|
|
30593
|
+
}, ...(ngDevMode ? [{ debugName: "labelClasses" }] : []));
|
|
30594
|
+
}
|
|
30595
|
+
openStrategiesModal(objective) {
|
|
30596
|
+
this.modalService.navigateToObjectiveStrategies(objective, this.goalTitle(), this.viewMode());
|
|
30597
|
+
}
|
|
30598
|
+
static { this.ɵfac = function GoalObjectivesModalContentComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || GoalObjectivesModalContentComponent)(); }; }
|
|
30599
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: GoalObjectivesModalContentComponent, selectors: [["symphiq-goal-objectives-modal-content"]], inputs: { objectives: [1, "objectives"], goalTitle: [1, "goalTitle"], viewMode: [1, "viewMode"] }, decls: 3, vars: 0, consts: [[1, "space-y-6"], [1, "rounded-lg", "p-5", "transition-all", "duration-200", 3, "ngClass"], [1, "flex", "items-start", "gap-3"], [3, "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", "M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"], [1, "flex-1", "min-w-0"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", "mb-1", 3, "ngClass"], [1, "font-semibold", "text-base", "mb-2", 3, "ngClass"], [1, "text-sm", "mb-3", 3, "ngClass"], [1, "p-3", "rounded-lg", "mb-3", 3, "ngClass"], [1, "grid", "grid-cols-2", "gap-3", "mb-3"], [1, "w-full", "px-5", "py-4", "rounded-lg", "border-2", "transition-all", "duration-200", "hover:scale-[1.01]", "active:scale-[0.99]", "cursor-pointer", "group", 3, "ngClass"], [1, "flex", "items-start", "gap-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4", "flex-shrink-0", "mt-0.5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"], [1, "flex-1"], [1, "text-xs", "font-medium", "mb-1", 3, "ngClass"], [1, "text-sm", "font-semibold", 3, "ngClass"], [1, "p-3", "rounded-lg", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "w-full", "px-5", "py-4", "rounded-lg", "border-2", "transition-all", "duration-200", "hover:scale-[1.01]", "active:scale-[0.99]", "cursor-pointer", "group", 3, "click", "ngClass"], [1, "flex", "items-center", "justify-between"], [1, "flex", "items-center", "gap-3"], [1, "w-10", "h-10", "rounded-lg", "flex", "items-center", "justify-center", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 10V3L4 14h7v7l9-11h-7z"], [1, "text-left"], [1, "text-xs", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "transition-transform", "group-hover:translate-x-1", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"]], template: function GoalObjectivesModalContentComponent_Template(rf, ctx) { if (rf & 1) {
|
|
30600
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
30601
|
+
i0.ɵɵrepeaterCreate(1, GoalObjectivesModalContentComponent_For_2_Template, 14, 9, "div", 1, _forTrack0$_);
|
|
30602
|
+
i0.ɵɵelementEnd();
|
|
30603
|
+
} if (rf & 2) {
|
|
30604
|
+
i0.ɵɵadvance();
|
|
30605
|
+
i0.ɵɵrepeater(ctx.objectives());
|
|
30606
|
+
} }, dependencies: [CommonModule, i1$1.NgClass], encapsulation: 2, changeDetection: 0 }); }
|
|
30607
|
+
}
|
|
30608
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GoalObjectivesModalContentComponent, [{
|
|
30609
|
+
type: Component,
|
|
30610
|
+
args: [{
|
|
30611
|
+
selector: 'symphiq-goal-objectives-modal-content',
|
|
30612
|
+
standalone: true,
|
|
30613
|
+
imports: [CommonModule],
|
|
30614
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
30615
|
+
template: `
|
|
30616
|
+
<div class="space-y-6">
|
|
30617
|
+
@for (objective of objectives(); track objective.id || $index) {
|
|
30618
|
+
<div [ngClass]="cardClasses()" class="rounded-lg p-5 transition-all duration-200">
|
|
30619
|
+
<div class="flex items-start gap-3">
|
|
30620
|
+
<div [ngClass]="iconContainerClasses()">
|
|
30621
|
+
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
30622
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"/>
|
|
30623
|
+
</svg>
|
|
30624
|
+
</div>
|
|
30625
|
+
|
|
30626
|
+
<div class="flex-1 min-w-0">
|
|
30627
|
+
<div [ngClass]="labelClasses()" class="text-xs font-semibold uppercase tracking-wider mb-1">
|
|
30628
|
+
Objective
|
|
30629
|
+
</div>
|
|
30630
|
+
<h5 [ngClass]="titleClasses()" class="font-semibold text-base mb-2">{{ objective.title }}</h5>
|
|
30631
|
+
|
|
30632
|
+
@if (objective.description) {
|
|
30633
|
+
<p [ngClass]="descriptionClasses()" class="text-sm mb-3">{{ objective.description }}</p>
|
|
30634
|
+
}
|
|
30635
|
+
|
|
30636
|
+
@if (objective.measurableTarget) {
|
|
30637
|
+
<div [ngClass]="targetSectionClasses()" class="p-3 rounded-lg mb-3">
|
|
30638
|
+
<div class="flex items-start gap-2">
|
|
30639
|
+
<svg class="w-4 h-4 flex-shrink-0 mt-0.5" [ngClass]="targetIconClasses()" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
30640
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"/>
|
|
30641
|
+
</svg>
|
|
30642
|
+
<div class="flex-1">
|
|
30643
|
+
<p [ngClass]="targetLabelClasses()" class="text-xs font-medium mb-1">Measurable Target</p>
|
|
30644
|
+
<p [ngClass]="targetValueClasses()" class="text-sm font-semibold">{{ objective.measurableTarget }}</p>
|
|
30645
|
+
</div>
|
|
30646
|
+
</div>
|
|
30647
|
+
</div>
|
|
30648
|
+
}
|
|
30649
|
+
|
|
30650
|
+
@if (objective.currentState || objective.desiredState) {
|
|
30651
|
+
<div class="grid grid-cols-2 gap-3 mb-3">
|
|
30652
|
+
@if (objective.currentState) {
|
|
30653
|
+
<div [ngClass]="stateSectionClasses()" class="p-3 rounded-lg">
|
|
30654
|
+
<p [ngClass]="stateLabelClasses()" class="text-xs font-medium mb-1">Current State</p>
|
|
30655
|
+
<p [ngClass]="stateValueClasses()" class="text-sm">{{ objective.currentState }}</p>
|
|
30656
|
+
</div>
|
|
30657
|
+
}
|
|
30658
|
+
@if (objective.desiredState) {
|
|
30659
|
+
<div [ngClass]="stateSectionClasses()" class="p-3 rounded-lg">
|
|
30660
|
+
<p [ngClass]="stateLabelClasses()" class="text-xs font-medium mb-1">Desired State</p>
|
|
30661
|
+
<p [ngClass]="stateValueClasses()" class="text-sm font-semibold">{{ objective.desiredState }}</p>
|
|
30662
|
+
</div>
|
|
30663
|
+
}
|
|
30664
|
+
</div>
|
|
30665
|
+
}
|
|
30666
|
+
|
|
30667
|
+
@if (objective.strategies && objective.strategies.length > 0) {
|
|
30668
|
+
<button
|
|
30669
|
+
(click)="openStrategiesModal(objective)"
|
|
30670
|
+
[ngClass]="showStrategiesButtonClasses()"
|
|
30671
|
+
class="w-full px-5 py-4 rounded-lg border-2 transition-all duration-200 hover:scale-[1.01] active:scale-[0.99] cursor-pointer group">
|
|
30672
|
+
<div class="flex items-center justify-between">
|
|
30673
|
+
<div class="flex items-center gap-3">
|
|
30674
|
+
<div [ngClass]="strategiesIconBgClasses()" class="w-10 h-10 rounded-lg flex items-center justify-center">
|
|
30675
|
+
<svg class="w-5 h-5" [ngClass]="strategiesIconClasses()" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
30676
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/>
|
|
30677
|
+
</svg>
|
|
30678
|
+
</div>
|
|
30679
|
+
<div class="text-left">
|
|
30680
|
+
<div [ngClass]="strategiesLabelClasses()" class="text-sm font-semibold">Show Strategies</div>
|
|
30681
|
+
<div [ngClass]="strategiesSubLabelClasses()" class="text-xs">View objective strategies</div>
|
|
30682
|
+
</div>
|
|
30683
|
+
</div>
|
|
30684
|
+
<svg [ngClass]="strategiesChevronClasses()" class="w-5 h-5 transition-transform group-hover:translate-x-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
30685
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
|
|
30686
|
+
</svg>
|
|
30687
|
+
</div>
|
|
30688
|
+
</button>
|
|
30689
|
+
}
|
|
30690
|
+
</div>
|
|
30691
|
+
</div>
|
|
30692
|
+
</div>
|
|
30693
|
+
}
|
|
30694
|
+
</div>
|
|
30695
|
+
`
|
|
30696
|
+
}]
|
|
30697
|
+
}], null, { objectives: [{ type: i0.Input, args: [{ isSignal: true, alias: "objectives", required: true }] }], goalTitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "goalTitle", required: true }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }] }); })();
|
|
30698
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(GoalObjectivesModalContentComponent, { className: "GoalObjectivesModalContentComponent", filePath: "lib/components/profile-analysis-shop-dashboard/modals/goal-objectives-modal-content.component.ts", lineNumber: 94 }); })();
|
|
30699
|
+
|
|
30340
30700
|
function TopPrioritiesListModalContentComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
30341
30701
|
i0.ɵɵelementStart(0, "span");
|
|
30342
30702
|
i0.ɵɵtext(1);
|
|
@@ -30801,7 +31161,7 @@ const _c0$1a = a0 => ({ name: "check-badge", source: a0 });
|
|
|
30801
31161
|
const _c1$F = a0 => ({ name: "check-circle", source: a0 });
|
|
30802
31162
|
const _c2$q = a0 => ({ name: "chevron-right", source: a0 });
|
|
30803
31163
|
const _c3$j = a0 => ({ name: "chart-bar", source: a0 });
|
|
30804
|
-
const _forTrack0$
|
|
31164
|
+
const _forTrack0$Z = ($index, $item) => $item.capability;
|
|
30805
31165
|
function FocusAreaStrengthsListModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
30806
31166
|
i0.ɵɵelementStart(0, "div", 1);
|
|
30807
31167
|
i0.ɵɵelement(1, "symphiq-icon", 3);
|
|
@@ -30916,7 +31276,7 @@ function FocusAreaStrengthsListModalContentComponent_Conditional_2_For_2_Templat
|
|
|
30916
31276
|
} }
|
|
30917
31277
|
function FocusAreaStrengthsListModalContentComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
30918
31278
|
i0.ɵɵelementStart(0, "div", 2);
|
|
30919
|
-
i0.ɵɵrepeaterCreate(1, FocusAreaStrengthsListModalContentComponent_Conditional_2_For_2_Template, 16, 18, "button", 6, _forTrack0$
|
|
31279
|
+
i0.ɵɵrepeaterCreate(1, FocusAreaStrengthsListModalContentComponent_Conditional_2_For_2_Template, 16, 18, "button", 6, _forTrack0$Z);
|
|
30920
31280
|
i0.ɵɵelementEnd();
|
|
30921
31281
|
} if (rf & 2) {
|
|
30922
31282
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
@@ -31123,7 +31483,7 @@ class FocusAreaStrengthsListModalContentComponent {
|
|
|
31123
31483
|
const _c0$19 = a0 => ({ name: "exclamation-triangle", source: a0 });
|
|
31124
31484
|
const _c1$E = a0 => ({ name: "exclamation-circle", source: a0 });
|
|
31125
31485
|
const _c2$p = a0 => ({ name: "chevron-right", source: a0 });
|
|
31126
|
-
function _forTrack0$
|
|
31486
|
+
function _forTrack0$Y($index, $item) { return this.getGapTitle($item); }
|
|
31127
31487
|
function FocusAreaGapsListModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
31128
31488
|
i0.ɵɵelementStart(0, "div", 1);
|
|
31129
31489
|
i0.ɵɵelement(1, "symphiq-icon", 3);
|
|
@@ -31240,7 +31600,7 @@ function FocusAreaGapsListModalContentComponent_Conditional_2_For_2_Template(rf,
|
|
|
31240
31600
|
} }
|
|
31241
31601
|
function FocusAreaGapsListModalContentComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
31242
31602
|
i0.ɵɵelementStart(0, "div", 2);
|
|
31243
|
-
i0.ɵɵrepeaterCreate(1, FocusAreaGapsListModalContentComponent_Conditional_2_For_2_Template, 15, 18, "button", 6, _forTrack0$
|
|
31603
|
+
i0.ɵɵrepeaterCreate(1, FocusAreaGapsListModalContentComponent_Conditional_2_For_2_Template, 15, 18, "button", 6, _forTrack0$Y, true);
|
|
31244
31604
|
i0.ɵɵelementEnd();
|
|
31245
31605
|
} if (rf & 2) {
|
|
31246
31606
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
@@ -31517,7 +31877,7 @@ class FocusAreaGapsListModalContentComponent {
|
|
|
31517
31877
|
const _c0$18 = a0 => ({ name: "light-bulb", source: a0 });
|
|
31518
31878
|
const _c1$D = a0 => ({ name: "chevron-right", source: a0 });
|
|
31519
31879
|
const _c2$o = a0 => ({ name: "chart-bar", source: a0 });
|
|
31520
|
-
const _forTrack0$
|
|
31880
|
+
const _forTrack0$X = ($index, $item) => $item.opportunity;
|
|
31521
31881
|
function FocusAreaOpportunitiesListModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
31522
31882
|
i0.ɵɵelementStart(0, "div", 1);
|
|
31523
31883
|
i0.ɵɵelement(1, "symphiq-icon", 3);
|
|
@@ -31608,7 +31968,7 @@ function FocusAreaOpportunitiesListModalContentComponent_Conditional_2_For_2_Tem
|
|
|
31608
31968
|
} }
|
|
31609
31969
|
function FocusAreaOpportunitiesListModalContentComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
31610
31970
|
i0.ɵɵelementStart(0, "div", 2);
|
|
31611
|
-
i0.ɵɵrepeaterCreate(1, FocusAreaOpportunitiesListModalContentComponent_Conditional_2_For_2_Template, 11, 11, "button", 6, _forTrack0$
|
|
31971
|
+
i0.ɵɵrepeaterCreate(1, FocusAreaOpportunitiesListModalContentComponent_Conditional_2_For_2_Template, 11, 11, "button", 6, _forTrack0$X);
|
|
31612
31972
|
i0.ɵɵelementEnd();
|
|
31613
31973
|
} if (rf & 2) {
|
|
31614
31974
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
@@ -31785,7 +32145,7 @@ class FocusAreaOpportunitiesListModalContentComponent {
|
|
|
31785
32145
|
|
|
31786
32146
|
const _c0$17 = a0 => ({ name: "chevron-right", source: a0 });
|
|
31787
32147
|
const _c1$C = a0 => ({ name: "chat-bubble-left-right", source: a0 });
|
|
31788
|
-
const _forTrack0$
|
|
32148
|
+
const _forTrack0$W = ($index, $item) => $item.performanceItemId;
|
|
31789
32149
|
function FocusAreaStrengthDetailModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
31790
32150
|
i0.ɵɵelementStart(0, "div")(1, "p", 2);
|
|
31791
32151
|
i0.ɵɵtext(2);
|
|
@@ -31855,7 +32215,7 @@ function FocusAreaStrengthDetailModalContentComponent_Conditional_4_Template(rf,
|
|
|
31855
32215
|
i0.ɵɵtext(2);
|
|
31856
32216
|
i0.ɵɵelementEnd();
|
|
31857
32217
|
i0.ɵɵelementStart(3, "div", 9);
|
|
31858
|
-
i0.ɵɵrepeaterCreate(4, FocusAreaStrengthDetailModalContentComponent_Conditional_4_For_5_Template, 4, 5, "button", 10, _forTrack0$
|
|
32218
|
+
i0.ɵɵrepeaterCreate(4, FocusAreaStrengthDetailModalContentComponent_Conditional_4_For_5_Template, 4, 5, "button", 10, _forTrack0$W);
|
|
31859
32219
|
i0.ɵɵelementEnd()();
|
|
31860
32220
|
} if (rf & 2) {
|
|
31861
32221
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
@@ -32504,7 +32864,7 @@ class FocusAreaGapDetailModalContentComponent {
|
|
|
32504
32864
|
|
|
32505
32865
|
const _c0$15 = a0 => ({ name: "chevron-right", source: a0 });
|
|
32506
32866
|
const _c1$B = () => [];
|
|
32507
|
-
const _forTrack0$
|
|
32867
|
+
const _forTrack0$V = ($index, $item) => $item.performanceItemId;
|
|
32508
32868
|
function FocusAreaOpportunityDetailModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
32509
32869
|
i0.ɵɵelementStart(0, "div")(1, "p", 2);
|
|
32510
32870
|
i0.ɵɵtext(2);
|
|
@@ -32556,7 +32916,7 @@ function FocusAreaOpportunityDetailModalContentComponent_Conditional_3_Template(
|
|
|
32556
32916
|
i0.ɵɵtext(2);
|
|
32557
32917
|
i0.ɵɵelementEnd();
|
|
32558
32918
|
i0.ɵɵelementStart(3, "div", 6);
|
|
32559
|
-
i0.ɵɵrepeaterCreate(4, FocusAreaOpportunityDetailModalContentComponent_Conditional_3_For_5_Template, 4, 5, "button", 7, _forTrack0$
|
|
32919
|
+
i0.ɵɵrepeaterCreate(4, FocusAreaOpportunityDetailModalContentComponent_Conditional_3_For_5_Template, 4, 5, "button", 7, _forTrack0$V);
|
|
32560
32920
|
i0.ɵɵelementEnd()();
|
|
32561
32921
|
} if (rf & 2) {
|
|
32562
32922
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
@@ -33826,7 +34186,7 @@ const _c1$y = a0 => ({ name: "globe-americas", source: a0 });
|
|
|
33826
34186
|
const _c2$n = a0 => ({ name: "academic-cap", source: a0 });
|
|
33827
34187
|
const _c3$i = a0 => ({ name: "information-circle", source: a0 });
|
|
33828
34188
|
const _c4$d = a0 => ({ name: "signal", source: a0 });
|
|
33829
|
-
const _c5$
|
|
34189
|
+
const _c5$a = a0 => ({ name: "wrench-screwdriver", source: a0 });
|
|
33830
34190
|
function RegionCardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
33831
34191
|
i0.ɵɵelementStart(0, "p", 2);
|
|
33832
34192
|
i0.ɵɵtext(1);
|
|
@@ -34048,7 +34408,7 @@ function RegionCardComponent_Conditional_21_Conditional_8_Template(rf, ctx) { if
|
|
|
34048
34408
|
const ctx_r0 = i0.ɵɵnextContext(2);
|
|
34049
34409
|
i0.ɵɵproperty("ngClass", ctx_r0.getCompetitiveGapSectionClasses());
|
|
34050
34410
|
i0.ɵɵadvance(2);
|
|
34051
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(4, _c5$
|
|
34411
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(4, _c5$a, ctx_r0.IconSourceEnum.HEROICONS))("ngClass", ctx_r0.getExpandedIconClasses());
|
|
34052
34412
|
i0.ɵɵadvance();
|
|
34053
34413
|
i0.ɵɵproperty("ngClass", ctx_r0.getExpandedTitleClasses());
|
|
34054
34414
|
i0.ɵɵadvance(3);
|
|
@@ -34900,7 +35260,7 @@ const _c1$x = a0 => ({ name: "chart-bar", source: a0 });
|
|
|
34900
35260
|
const _c2$m = a0 => ({ name: "academic-cap", source: a0 });
|
|
34901
35261
|
const _c3$h = a0 => ({ name: "information-circle", source: a0 });
|
|
34902
35262
|
const _c4$c = a0 => ({ name: "signal", source: a0 });
|
|
34903
|
-
const _c5$
|
|
35263
|
+
const _c5$9 = a0 => ({ name: "wrench-screwdriver", source: a0 });
|
|
34904
35264
|
function SeasonCardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
34905
35265
|
i0.ɵɵelementStart(0, "p", 2);
|
|
34906
35266
|
i0.ɵɵtext(1);
|
|
@@ -35130,7 +35490,7 @@ function SeasonCardComponent_Conditional_20_Conditional_8_Template(rf, ctx) { if
|
|
|
35130
35490
|
const ctx_r0 = i0.ɵɵnextContext(2);
|
|
35131
35491
|
i0.ɵɵproperty("ngClass", ctx_r0.getCompetitiveGapSectionClasses());
|
|
35132
35492
|
i0.ɵɵadvance(2);
|
|
35133
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(4, _c5$
|
|
35493
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(4, _c5$9, ctx_r0.IconSourceEnum.HEROICONS))("ngClass", ctx_r0.getExpandedIconClasses());
|
|
35134
35494
|
i0.ɵɵadvance();
|
|
35135
35495
|
i0.ɵɵproperty("ngClass", ctx_r0.getExpandedTitleClasses());
|
|
35136
35496
|
i0.ɵɵadvance(3);
|
|
@@ -35734,7 +36094,7 @@ const _c1$w = a0 => ({ name: "chart-bar", source: a0 });
|
|
|
35734
36094
|
const _c2$l = a0 => ({ name: "academic-cap", source: a0 });
|
|
35735
36095
|
const _c3$g = a0 => ({ name: "information-circle", source: a0 });
|
|
35736
36096
|
const _c4$b = a0 => ({ name: "signal", source: a0 });
|
|
35737
|
-
const _c5$
|
|
36097
|
+
const _c5$8 = a0 => ({ name: "wrench-screwdriver", source: a0 });
|
|
35738
36098
|
function CustomerSegmentCardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
35739
36099
|
i0.ɵɵelementStart(0, "p", 8);
|
|
35740
36100
|
i0.ɵɵtext(1);
|
|
@@ -35973,7 +36333,7 @@ function CustomerSegmentCardComponent_Conditional_23_Conditional_12_Template(rf,
|
|
|
35973
36333
|
const ctx_r0 = i0.ɵɵnextContext(2);
|
|
35974
36334
|
i0.ɵɵproperty("ngClass", ctx_r0.getCompetitiveGapSectionClasses());
|
|
35975
36335
|
i0.ɵɵadvance(2);
|
|
35976
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(4, _c5$
|
|
36336
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(4, _c5$8, ctx_r0.IconSourceEnum.HEROICONS))("ngClass", ctx_r0.getExpandedIconClasses());
|
|
35977
36337
|
i0.ɵɵadvance();
|
|
35978
36338
|
i0.ɵɵproperty("ngClass", ctx_r0.getExpandedTitleClasses());
|
|
35979
36339
|
i0.ɵɵadvance(3);
|
|
@@ -36124,7 +36484,7 @@ function CustomerSegmentCardComponent_Conditional_24_Conditional_8_Template(rf,
|
|
|
36124
36484
|
const ctx_r0 = i0.ɵɵnextContext(2);
|
|
36125
36485
|
i0.ɵɵproperty("ngClass", ctx_r0.getCompetitiveGapSectionClasses());
|
|
36126
36486
|
i0.ɵɵadvance(2);
|
|
36127
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(4, _c5$
|
|
36487
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(4, _c5$8, ctx_r0.IconSourceEnum.HEROICONS))("ngClass", ctx_r0.getExpandedIconClasses());
|
|
36128
36488
|
i0.ɵɵadvance();
|
|
36129
36489
|
i0.ɵɵproperty("ngClass", ctx_r0.getExpandedTitleClasses());
|
|
36130
36490
|
i0.ɵɵadvance(3);
|
|
@@ -36850,7 +37210,7 @@ const _c1$v = a0 => ({ name: "document-text", source: a0 });
|
|
|
36850
37210
|
const _c2$k = a0 => ({ name: "academic-cap", source: a0 });
|
|
36851
37211
|
const _c3$f = a0 => ({ name: "information-circle", source: a0 });
|
|
36852
37212
|
const _c4$a = a0 => ({ name: "signal", source: a0 });
|
|
36853
|
-
const _c5$
|
|
37213
|
+
const _c5$7 = a0 => ({ name: "wrench-screwdriver", source: a0 });
|
|
36854
37214
|
function PriceTierCardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
36855
37215
|
i0.ɵɵelementStart(0, "p", 7);
|
|
36856
37216
|
i0.ɵɵtext(1);
|
|
@@ -37061,7 +37421,7 @@ function PriceTierCardComponent_Conditional_27_Conditional_8_Template(rf, ctx) {
|
|
|
37061
37421
|
const ctx_r0 = i0.ɵɵnextContext(2);
|
|
37062
37422
|
i0.ɵɵproperty("ngClass", ctx_r0.getCompetitiveGapSectionClasses());
|
|
37063
37423
|
i0.ɵɵadvance(2);
|
|
37064
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(4, _c5$
|
|
37424
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(4, _c5$7, ctx_r0.IconSourceEnum.HEROICONS))("ngClass", ctx_r0.getExpandedIconClasses());
|
|
37065
37425
|
i0.ɵɵadvance();
|
|
37066
37426
|
i0.ɵɵproperty("ngClass", ctx_r0.getExpandedTitleClasses());
|
|
37067
37427
|
i0.ɵɵadvance(3);
|
|
@@ -37686,10 +38046,10 @@ const _c1$u = () => ({ name: "currency-dollar", source: "HEROICONS" });
|
|
|
37686
38046
|
const _c2$j = () => ({ name: "chart-bar", source: "HEROICONS" });
|
|
37687
38047
|
const _c3$e = a0 => ({ name: "chart-bar", source: a0 });
|
|
37688
38048
|
const _c4$9 = a0 => ({ name: "academic-cap", source: a0 });
|
|
37689
|
-
const _c5$
|
|
38049
|
+
const _c5$6 = a0 => ({ name: "information-circle", source: a0 });
|
|
37690
38050
|
const _c6$2 = a0 => ({ name: "signal", source: a0 });
|
|
37691
38051
|
const _c7$1 = a0 => ({ name: "wrench-screwdriver", source: a0 });
|
|
37692
|
-
const _forTrack0$
|
|
38052
|
+
const _forTrack0$U = ($index, $item) => $item.name;
|
|
37693
38053
|
function ProductCategoryCardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
37694
38054
|
i0.ɵɵelementStart(0, "p", 8);
|
|
37695
38055
|
i0.ɵɵtext(1);
|
|
@@ -37820,7 +38180,7 @@ function ProductCategoryCardComponent_Conditional_16_Template(rf, ctx) { if (rf
|
|
|
37820
38180
|
i0.ɵɵelementStart(6, "symphiq-visualization-container", 21);
|
|
37821
38181
|
i0.ɵɵlistener("visualizationClick", function ProductCategoryCardComponent_Conditional_16_Template_symphiq_visualization_container_visualizationClick_6_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.openHorizontalBarModal($event)); });
|
|
37822
38182
|
i0.ɵɵelementStart(7, "div", 22);
|
|
37823
|
-
i0.ɵɵrepeaterCreate(8, ProductCategoryCardComponent_Conditional_16_For_9_Template, 2, 5, "div", 23, _forTrack0$
|
|
38183
|
+
i0.ɵɵrepeaterCreate(8, ProductCategoryCardComponent_Conditional_16_For_9_Template, 2, 5, "div", 23, _forTrack0$U);
|
|
37824
38184
|
i0.ɵɵelementEnd()()()();
|
|
37825
38185
|
} if (rf & 2) {
|
|
37826
38186
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
@@ -37939,7 +38299,7 @@ function ProductCategoryCardComponent_Conditional_18_Conditional_6_Template(rf,
|
|
|
37939
38299
|
const ctx_r0 = i0.ɵɵnextContext(2);
|
|
37940
38300
|
i0.ɵɵproperty("ngClass", ctx_r0.getCompetitiveGapSectionClasses());
|
|
37941
38301
|
i0.ɵɵadvance(2);
|
|
37942
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(6, _c5$
|
|
38302
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(6, _c5$6, ctx_r0.IconSourceEnum.HEROICONS))("ngClass", ctx_r0.getExpandedIconClasses());
|
|
37943
38303
|
i0.ɵɵadvance();
|
|
37944
38304
|
i0.ɵɵproperty("ngClass", ctx_r0.getExpandedTitleClasses());
|
|
37945
38305
|
i0.ɵɵadvance(2);
|
|
@@ -38842,7 +39202,7 @@ const _c1$t = a0 => ({ name: "building-storefront", source: a0 });
|
|
|
38842
39202
|
const _c2$i = a0 => ({ name: "academic-cap", source: a0 });
|
|
38843
39203
|
const _c3$d = a0 => ({ name: "information-circle", source: a0 });
|
|
38844
39204
|
const _c4$8 = a0 => ({ name: "signal", source: a0 });
|
|
38845
|
-
const _c5$
|
|
39205
|
+
const _c5$5 = a0 => ({ name: "wrench-screwdriver", source: a0 });
|
|
38846
39206
|
function EnhancedListItemCardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
38847
39207
|
i0.ɵɵelementStart(0, "div", 2);
|
|
38848
39208
|
i0.ɵɵtext(1);
|
|
@@ -39006,7 +39366,7 @@ function EnhancedListItemCardComponent_Conditional_22_Conditional_8_Template(rf,
|
|
|
39006
39366
|
const ctx_r0 = i0.ɵɵnextContext(2);
|
|
39007
39367
|
i0.ɵɵproperty("ngClass", ctx_r0.getCompetitiveGapSectionClasses());
|
|
39008
39368
|
i0.ɵɵadvance(2);
|
|
39009
|
-
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(4, _c5$
|
|
39369
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(4, _c5$5, ctx_r0.IconSourceEnum.HEROICONS))("ngClass", ctx_r0.getExpandedIconClasses());
|
|
39010
39370
|
i0.ɵɵadvance();
|
|
39011
39371
|
i0.ɵɵproperty("ngClass", ctx_r0.getExpandedTitleClasses());
|
|
39012
39372
|
i0.ɵɵadvance(3);
|
|
@@ -42799,18 +43159,19 @@ class ItemDetailModalComponent {
|
|
|
42799
43159
|
const _c0$T = ["modalContent"];
|
|
42800
43160
|
const _c1$q = ["modalWrapper"];
|
|
42801
43161
|
const _c2$g = ["*"];
|
|
42802
|
-
const
|
|
42803
|
-
const
|
|
42804
|
-
const
|
|
42805
|
-
const
|
|
43162
|
+
const ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_3_Defer_2_DepsFn = () => [Promise.resolve().then(function () { return lineChart_component; }).then(m => m.LineChartComponent)];
|
|
43163
|
+
const ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_4_Defer_2_DepsFn = () => [Promise.resolve().then(function () { return barChart_component; }).then(m => m.BarChartComponent)];
|
|
43164
|
+
const ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_5_Defer_2_DepsFn = () => [Promise.resolve().then(function () { return pieChart_component; }).then(m => m.PieChartComponent)];
|
|
43165
|
+
const ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_6_Defer_2_DepsFn = () => [Promise.resolve().then(function () { return areaChart_component; }).then(m => m.AreaChartComponent)];
|
|
42806
43166
|
const _c3$b = a0 => ({ name: "arrow-left", source: a0 });
|
|
42807
43167
|
const _c4$7 = a0 => ({ name: "chevron-right", source: a0 });
|
|
42808
|
-
const
|
|
43168
|
+
const _c5$4 = () => [];
|
|
43169
|
+
const _forTrack0$T = ($index, $item) => $item.performanceItemId || $index;
|
|
42809
43170
|
const _forTrack1$a = ($index, $item) => $item.id || $index;
|
|
42810
43171
|
const _forTrack2$2 = ($index, $item) => $item.metric || $index;
|
|
42811
43172
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditional_0_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
42812
43173
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
42813
|
-
i0.ɵɵelementStart(0, "button",
|
|
43174
|
+
i0.ɵɵelementStart(0, "button", 45);
|
|
42814
43175
|
i0.ɵɵlistener("click", function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditional_0_Conditional_0_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r4); const crumb_r5 = i0.ɵɵnextContext(2).$implicit; const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.onBreadcrumbClick(crumb_r5)); });
|
|
42815
43176
|
i0.ɵɵtext(1);
|
|
42816
43177
|
i0.ɵɵelementEnd();
|
|
@@ -42822,7 +43183,7 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditi
|
|
|
42822
43183
|
i0.ɵɵtextInterpolate1(" ", crumb_r5.label, " ");
|
|
42823
43184
|
} }
|
|
42824
43185
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditional_0_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
42825
|
-
i0.ɵɵelementStart(0, "span",
|
|
43186
|
+
i0.ɵɵelementStart(0, "span", 43);
|
|
42826
43187
|
i0.ɵɵtext(1);
|
|
42827
43188
|
i0.ɵɵelementEnd();
|
|
42828
43189
|
} if (rf & 2) {
|
|
@@ -42831,8 +43192,8 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditi
|
|
|
42831
43192
|
i0.ɵɵtextInterpolate(crumb_r5.label);
|
|
42832
43193
|
} }
|
|
42833
43194
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
42834
|
-
i0.ɵɵconditionalCreate(0, ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditional_0_Conditional_0_Template, 2, 2, "button",
|
|
42835
|
-
i0.ɵɵelement(2, "symphiq-icon",
|
|
43195
|
+
i0.ɵɵconditionalCreate(0, ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditional_0_Conditional_0_Template, 2, 2, "button", 42)(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditional_0_Conditional_1_Template, 2, 1, "span", 43);
|
|
43196
|
+
i0.ɵɵelement(2, "symphiq-icon", 44);
|
|
42836
43197
|
} if (rf & 2) {
|
|
42837
43198
|
const crumb_r5 = i0.ɵɵnextContext().$implicit;
|
|
42838
43199
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
@@ -42841,7 +43202,7 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditi
|
|
|
42841
43202
|
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(2, _c4$7, ctx_r1.IconSourceEnum.HEROICONS));
|
|
42842
43203
|
} }
|
|
42843
43204
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
42844
|
-
i0.ɵɵelementStart(0, "span",
|
|
43205
|
+
i0.ɵɵelementStart(0, "span", 41);
|
|
42845
43206
|
i0.ɵɵtext(1);
|
|
42846
43207
|
i0.ɵɵelementEnd();
|
|
42847
43208
|
} if (rf & 2) {
|
|
@@ -42850,7 +43211,7 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditi
|
|
|
42850
43211
|
i0.ɵɵtextInterpolate(crumb_r5.label);
|
|
42851
43212
|
} }
|
|
42852
43213
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Template(rf, ctx) { if (rf & 1) {
|
|
42853
|
-
i0.ɵɵconditionalCreate(0, ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditional_0_Template, 3, 4)(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditional_1_Template, 2, 1, "span",
|
|
43214
|
+
i0.ɵɵconditionalCreate(0, ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditional_0_Template, 3, 4)(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditional_1_Template, 2, 1, "span", 41);
|
|
42854
43215
|
} if (rf & 2) {
|
|
42855
43216
|
const ɵ$index_23_r6 = ctx.$index;
|
|
42856
43217
|
const ɵ$count_23_r7 = ctx.$count;
|
|
@@ -42858,11 +43219,11 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Templat
|
|
|
42858
43219
|
} }
|
|
42859
43220
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_Template(rf, ctx) { if (rf & 1) {
|
|
42860
43221
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
42861
|
-
i0.ɵɵelementStart(0, "div", 9)(1, "button",
|
|
43222
|
+
i0.ɵɵelementStart(0, "div", 9)(1, "button", 38);
|
|
42862
43223
|
i0.ɵɵlistener("click", function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onNavigateBack()); });
|
|
42863
|
-
i0.ɵɵelement(2, "symphiq-icon",
|
|
43224
|
+
i0.ɵɵelement(2, "symphiq-icon", 39);
|
|
42864
43225
|
i0.ɵɵelementEnd();
|
|
42865
|
-
i0.ɵɵelementStart(3, "div",
|
|
43226
|
+
i0.ɵɵelementStart(3, "div", 40);
|
|
42866
43227
|
i0.ɵɵrepeaterCreate(4, ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Template, 2, 1, null, null, i0.ɵɵrepeaterTrackByIndex);
|
|
42867
43228
|
i0.ɵɵelementEnd()();
|
|
42868
43229
|
} if (rf & 2) {
|
|
@@ -42877,8 +43238,8 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_Template(rf,
|
|
|
42877
43238
|
} }
|
|
42878
43239
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
42879
43240
|
i0.ɵɵnamespaceSVG();
|
|
42880
|
-
i0.ɵɵelementStart(0, "svg",
|
|
42881
|
-
i0.ɵɵelement(1, "path",
|
|
43241
|
+
i0.ɵɵelementStart(0, "svg", 46);
|
|
43242
|
+
i0.ɵɵelement(1, "path", 49);
|
|
42882
43243
|
i0.ɵɵelementEnd();
|
|
42883
43244
|
} if (rf & 2) {
|
|
42884
43245
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
@@ -42886,14 +43247,27 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_8_Conditional_1
|
|
|
42886
43247
|
i0.ɵɵadvance();
|
|
42887
43248
|
i0.ɵɵattribute("d", ctx);
|
|
42888
43249
|
} }
|
|
43250
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_8_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
43251
|
+
i0.ɵɵelementStart(0, "span", 48);
|
|
43252
|
+
i0.ɵɵtext(1);
|
|
43253
|
+
i0.ɵɵelementEnd();
|
|
43254
|
+
} if (rf & 2) {
|
|
43255
|
+
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
43256
|
+
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "bg-purple-100 text-purple-700 border-purple-300" : "bg-purple-900/30 text-purple-400 border-purple-700/50");
|
|
43257
|
+
i0.ɵɵadvance();
|
|
43258
|
+
i0.ɵɵtextInterpolate1(" ", ctx, " ");
|
|
43259
|
+
} }
|
|
42889
43260
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
42890
43261
|
i0.ɵɵelementStart(0, "div", 10);
|
|
42891
|
-
i0.ɵɵconditionalCreate(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_8_Conditional_1_Template, 2, 2, ":svg:svg",
|
|
42892
|
-
i0.ɵɵelementStart(2, "span",
|
|
43262
|
+
i0.ɵɵconditionalCreate(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_8_Conditional_1_Template, 2, 2, ":svg:svg", 46);
|
|
43263
|
+
i0.ɵɵelementStart(2, "span", 47);
|
|
42893
43264
|
i0.ɵɵtext(3);
|
|
42894
|
-
i0.ɵɵelementEnd()
|
|
43265
|
+
i0.ɵɵelementEnd();
|
|
43266
|
+
i0.ɵɵconditionalCreate(4, ProfileAnalysisModalComponent_Conditional_0_Conditional_8_Conditional_4_Template, 2, 2, "span", 48);
|
|
43267
|
+
i0.ɵɵelementEnd();
|
|
42895
43268
|
} if (rf & 2) {
|
|
42896
43269
|
let tmp_4_0;
|
|
43270
|
+
let tmp_7_0;
|
|
42897
43271
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
42898
43272
|
i0.ɵɵadvance();
|
|
42899
43273
|
i0.ɵɵconditional((tmp_4_0 = ctx_r1.modalTypeIconPath()) ? 1 : -1, tmp_4_0);
|
|
@@ -42901,9 +43275,11 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_8_Template(rf,
|
|
|
42901
43275
|
i0.ɵɵproperty("ngClass", ctx_r1.modalTypeLabelClasses());
|
|
42902
43276
|
i0.ɵɵadvance();
|
|
42903
43277
|
i0.ɵɵtextInterpolate1(" ", ctx_r1.modalTypeLabel(), " ");
|
|
43278
|
+
i0.ɵɵadvance();
|
|
43279
|
+
i0.ɵɵconditional((tmp_7_0 = ctx_r1.sourceAnalysisTypeLabel()) ? 4 : -1, tmp_7_0);
|
|
42904
43280
|
} }
|
|
42905
43281
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_11_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
42906
|
-
i0.ɵɵelementStart(0, "span",
|
|
43282
|
+
i0.ɵɵelementStart(0, "span", 50);
|
|
42907
43283
|
i0.ɵɵtext(1);
|
|
42908
43284
|
i0.ɵɵelementEnd();
|
|
42909
43285
|
} if (rf & 2) {
|
|
@@ -42914,7 +43290,7 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_11_Conditional_
|
|
|
42914
43290
|
i0.ɵɵtextInterpolate1(" ", chips_r8.priority, " ");
|
|
42915
43291
|
} }
|
|
42916
43292
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_11_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
42917
|
-
i0.ɵɵelementStart(0, "span",
|
|
43293
|
+
i0.ɵɵelementStart(0, "span", 50);
|
|
42918
43294
|
i0.ɵɵtext(1);
|
|
42919
43295
|
i0.ɵɵelementEnd();
|
|
42920
43296
|
} if (rf & 2) {
|
|
@@ -42926,8 +43302,8 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_11_Conditional_
|
|
|
42926
43302
|
} }
|
|
42927
43303
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_11_Template(rf, ctx) { if (rf & 1) {
|
|
42928
43304
|
i0.ɵɵelementStart(0, "div", 12);
|
|
42929
|
-
i0.ɵɵconditionalCreate(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_11_Conditional_1_Template, 2, 2, "span",
|
|
42930
|
-
i0.ɵɵconditionalCreate(2, ProfileAnalysisModalComponent_Conditional_0_Conditional_11_Conditional_2_Template, 2, 2, "span",
|
|
43305
|
+
i0.ɵɵconditionalCreate(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_11_Conditional_1_Template, 2, 2, "span", 50);
|
|
43306
|
+
i0.ɵɵconditionalCreate(2, ProfileAnalysisModalComponent_Conditional_0_Conditional_11_Conditional_2_Template, 2, 2, "span", 50);
|
|
42931
43307
|
i0.ɵɵelementEnd();
|
|
42932
43308
|
} if (rf & 2) {
|
|
42933
43309
|
const chips_r8 = ctx;
|
|
@@ -42938,7 +43314,7 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_11_Template(rf,
|
|
|
42938
43314
|
} }
|
|
42939
43315
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_17_Template(rf, ctx) { if (rf & 1) {
|
|
42940
43316
|
const _r9 = i0.ɵɵgetCurrentView();
|
|
42941
|
-
i0.ɵɵelementStart(0, "symphiq-goal-detail-modal-content",
|
|
43317
|
+
i0.ɵɵelementStart(0, "symphiq-goal-detail-modal-content", 51);
|
|
42942
43318
|
i0.ɵɵlistener("showObjectives", function ProfileAnalysisModalComponent_Conditional_0_Conditional_17_Template_symphiq_goal_detail_modal_content_showObjectives_0_listener() { const data_r10 = i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.showGoalObjectives(data_r10.goal, data_r10.viewMode)); });
|
|
42943
43319
|
i0.ɵɵelementEnd();
|
|
42944
43320
|
} if (rf & 2) {
|
|
@@ -42946,600 +43322,606 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_17_Template(rf,
|
|
|
42946
43322
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
42947
43323
|
i0.ɵɵproperty("goal", data_r10.goal)("viewMode", data_r10.viewMode)("allInsights", ctx_r1.allInsights())("allMetrics", ctx_r1.allMetrics())("allBusinessInsights", ctx_r1.allBusinessInsights())("allCharts", ctx_r1.allCharts())("@fadeIn", undefined);
|
|
42948
43324
|
} }
|
|
42949
|
-
function
|
|
42950
|
-
i0.ɵɵ
|
|
43325
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_18_Template(rf, ctx) { if (rf & 1) {
|
|
43326
|
+
i0.ɵɵelement(0, "symphiq-goal-objectives-modal-content", 18);
|
|
43327
|
+
} if (rf & 2) {
|
|
43328
|
+
const data_r11 = ctx;
|
|
43329
|
+
i0.ɵɵproperty("objectives", data_r11.goal.objectives || i0.ɵɵpureFunction0(4, _c5$4))("goalTitle", data_r11.goal.title || "Goal")("viewMode", data_r11.viewMode)("@fadeIn", undefined);
|
|
43330
|
+
} }
|
|
43331
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_19_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
43332
|
+
i0.ɵɵelementStart(0, "p", 52);
|
|
42951
43333
|
i0.ɵɵtext(1);
|
|
42952
43334
|
i0.ɵɵelementEnd();
|
|
42953
43335
|
} if (rf & 2) {
|
|
42954
|
-
const
|
|
43336
|
+
const data_r12 = i0.ɵɵnextContext();
|
|
42955
43337
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
42956
43338
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-700" : "text-slate-300");
|
|
42957
43339
|
i0.ɵɵadvance();
|
|
42958
|
-
i0.ɵɵtextInterpolate(
|
|
43340
|
+
i0.ɵɵtextInterpolate(data_r12.goalContext.description);
|
|
42959
43341
|
} }
|
|
42960
|
-
function
|
|
42961
|
-
i0.ɵɵelementStart(0, "div",
|
|
43342
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_19_For_3_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
43343
|
+
i0.ɵɵelementStart(0, "div", 60)(1, "span", 64);
|
|
42962
43344
|
i0.ɵɵnamespaceSVG();
|
|
42963
|
-
i0.ɵɵelementStart(2, "svg",
|
|
42964
|
-
i0.ɵɵelement(3, "path",
|
|
43345
|
+
i0.ɵɵelementStart(2, "svg", 65);
|
|
43346
|
+
i0.ɵɵelement(3, "path", 66);
|
|
42965
43347
|
i0.ɵɵelementEnd();
|
|
42966
43348
|
i0.ɵɵtext(4);
|
|
42967
43349
|
i0.ɵɵelementEnd()();
|
|
42968
43350
|
} if (rf & 2) {
|
|
42969
|
-
const
|
|
43351
|
+
const insight_r14 = i0.ɵɵnextContext().$implicit;
|
|
42970
43352
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
42971
43353
|
i0.ɵɵadvance();
|
|
42972
43354
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "bg-emerald-100 text-emerald-700 border-emerald-300" : "bg-emerald-900/30 text-emerald-400 border-emerald-700/50");
|
|
42973
43355
|
i0.ɵɵadvance(3);
|
|
42974
|
-
i0.ɵɵtextInterpolate2(" ",
|
|
43356
|
+
i0.ɵɵtextInterpolate2(" ", insight_r14.recommendations.length, " ", insight_r14.recommendations.length === 1 ? "RECOMMENDATION" : "RECOMMENDATIONS", " ");
|
|
42975
43357
|
} }
|
|
42976
|
-
function
|
|
42977
|
-
const
|
|
42978
|
-
i0.ɵɵelementStart(0, "div",
|
|
42979
|
-
i0.ɵɵlistener("click", function
|
|
42980
|
-
i0.ɵɵelementStart(1, "div",
|
|
43358
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_19_For_3_Template(rf, ctx) { if (rf & 1) {
|
|
43359
|
+
const _r13 = i0.ɵɵgetCurrentView();
|
|
43360
|
+
i0.ɵɵelementStart(0, "div", 54);
|
|
43361
|
+
i0.ɵɵlistener("click", function ProfileAnalysisModalComponent_Conditional_0_Conditional_19_For_3_Template_div_click_0_listener() { const insight_r14 = i0.ɵɵrestoreView(_r13).$implicit; const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.openInsightDetail(insight_r14)); });
|
|
43362
|
+
i0.ɵɵelementStart(1, "div", 55)(2, "div", 56);
|
|
42981
43363
|
i0.ɵɵtext(3);
|
|
42982
43364
|
i0.ɵɵelementEnd();
|
|
42983
|
-
i0.ɵɵelementStart(4, "div",
|
|
43365
|
+
i0.ɵɵelementStart(4, "div", 57)(5, "h4", 58);
|
|
42984
43366
|
i0.ɵɵtext(6);
|
|
42985
43367
|
i0.ɵɵelementEnd();
|
|
42986
|
-
i0.ɵɵelementStart(7, "p",
|
|
43368
|
+
i0.ɵɵelementStart(7, "p", 59);
|
|
42987
43369
|
i0.ɵɵtext(8);
|
|
42988
43370
|
i0.ɵɵelementEnd();
|
|
42989
|
-
i0.ɵɵconditionalCreate(9,
|
|
43371
|
+
i0.ɵɵconditionalCreate(9, ProfileAnalysisModalComponent_Conditional_0_Conditional_19_For_3_Conditional_9_Template, 5, 3, "div", 60);
|
|
42990
43372
|
i0.ɵɵelementEnd();
|
|
42991
|
-
i0.ɵɵelementStart(10, "div",
|
|
43373
|
+
i0.ɵɵelementStart(10, "div", 61);
|
|
42992
43374
|
i0.ɵɵnamespaceSVG();
|
|
42993
|
-
i0.ɵɵelementStart(11, "svg",
|
|
42994
|
-
i0.ɵɵelement(12, "path",
|
|
43375
|
+
i0.ɵɵelementStart(11, "svg", 62);
|
|
43376
|
+
i0.ɵɵelement(12, "path", 63);
|
|
42995
43377
|
i0.ɵɵelementEnd()()()();
|
|
42996
43378
|
} if (rf & 2) {
|
|
42997
|
-
const
|
|
43379
|
+
const insight_r14 = ctx.$implicit;
|
|
42998
43380
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
42999
43381
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "bg-white border-slate-200 hover:border-blue-500/30" : "bg-slate-800 border-slate-700 hover:border-blue-500/30");
|
|
43000
43382
|
i0.ɵɵadvance(2);
|
|
43001
|
-
i0.ɵɵproperty("ngClass", ctx_r1.getPriorityBadgeClass(
|
|
43383
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getPriorityBadgeClass(insight_r14.priority ?? 0))("ngStyle", ctx_r1.getPriorityBadgeStyle(insight_r14.priority ?? 0));
|
|
43002
43384
|
i0.ɵɵadvance();
|
|
43003
|
-
i0.ɵɵtextInterpolate1(" P",
|
|
43385
|
+
i0.ɵɵtextInterpolate1(" P", insight_r14.priority, " ");
|
|
43004
43386
|
i0.ɵɵadvance(2);
|
|
43005
43387
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-900 group-hover:text-blue-600" : "text-white group-hover:text-blue-400");
|
|
43006
43388
|
i0.ɵɵadvance();
|
|
43007
|
-
i0.ɵɵtextInterpolate(
|
|
43389
|
+
i0.ɵɵtextInterpolate(insight_r14.title);
|
|
43008
43390
|
i0.ɵɵadvance();
|
|
43009
43391
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-700" : "text-slate-300");
|
|
43010
43392
|
i0.ɵɵadvance();
|
|
43011
|
-
i0.ɵɵtextInterpolate(
|
|
43393
|
+
i0.ɵɵtextInterpolate(insight_r14.description);
|
|
43012
43394
|
i0.ɵɵadvance();
|
|
43013
|
-
i0.ɵɵconditional(
|
|
43395
|
+
i0.ɵɵconditional(insight_r14.recommendations && insight_r14.recommendations.length > 0 ? 9 : -1);
|
|
43014
43396
|
i0.ɵɵadvance(2);
|
|
43015
43397
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-400 group-hover:text-blue-600" : "text-slate-500 group-hover:text-blue-400");
|
|
43016
43398
|
} }
|
|
43017
|
-
function
|
|
43018
|
-
i0.ɵɵelementStart(0, "div",
|
|
43019
|
-
i0.ɵɵconditionalCreate(1,
|
|
43020
|
-
i0.ɵɵrepeaterCreate(2,
|
|
43399
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_19_Template(rf, ctx) { if (rf & 1) {
|
|
43400
|
+
i0.ɵɵelementStart(0, "div", 19);
|
|
43401
|
+
i0.ɵɵconditionalCreate(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_19_Conditional_1_Template, 2, 2, "p", 52);
|
|
43402
|
+
i0.ɵɵrepeaterCreate(2, ProfileAnalysisModalComponent_Conditional_0_Conditional_19_For_3_Template, 13, 10, "div", 53, _forTrack0$T);
|
|
43021
43403
|
i0.ɵɵelementEnd();
|
|
43022
43404
|
} if (rf & 2) {
|
|
43023
|
-
const
|
|
43405
|
+
const data_r12 = ctx;
|
|
43024
43406
|
i0.ɵɵadvance();
|
|
43025
|
-
i0.ɵɵconditional(
|
|
43407
|
+
i0.ɵɵconditional(data_r12.goalContext.description ? 1 : -1);
|
|
43026
43408
|
i0.ɵɵadvance();
|
|
43027
|
-
i0.ɵɵrepeater(
|
|
43409
|
+
i0.ɵɵrepeater(data_r12.insights);
|
|
43028
43410
|
} }
|
|
43029
|
-
function
|
|
43030
|
-
i0.ɵɵelementStart(0, "p",
|
|
43411
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_20_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
43412
|
+
i0.ɵɵelementStart(0, "p", 52);
|
|
43031
43413
|
i0.ɵɵtext(1);
|
|
43032
43414
|
i0.ɵɵelementEnd();
|
|
43033
43415
|
} if (rf & 2) {
|
|
43034
|
-
const
|
|
43416
|
+
const data_r15 = i0.ɵɵnextContext();
|
|
43035
43417
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43036
43418
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-700" : "text-slate-300");
|
|
43037
43419
|
i0.ɵɵadvance();
|
|
43038
|
-
i0.ɵɵtextInterpolate(
|
|
43420
|
+
i0.ɵɵtextInterpolate(data_r15.recommendationContext.description);
|
|
43039
43421
|
} }
|
|
43040
|
-
function
|
|
43041
|
-
i0.ɵɵelementStart(0, "div",
|
|
43422
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_20_For_3_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
43423
|
+
i0.ɵɵelementStart(0, "div", 60)(1, "span", 64);
|
|
43042
43424
|
i0.ɵɵnamespaceSVG();
|
|
43043
|
-
i0.ɵɵelementStart(2, "svg",
|
|
43044
|
-
i0.ɵɵelement(3, "path",
|
|
43425
|
+
i0.ɵɵelementStart(2, "svg", 65);
|
|
43426
|
+
i0.ɵɵelement(3, "path", 66);
|
|
43045
43427
|
i0.ɵɵelementEnd();
|
|
43046
43428
|
i0.ɵɵtext(4);
|
|
43047
43429
|
i0.ɵɵelementEnd()();
|
|
43048
43430
|
} if (rf & 2) {
|
|
43049
|
-
const
|
|
43431
|
+
const insight_r17 = i0.ɵɵnextContext().$implicit;
|
|
43050
43432
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
43051
43433
|
i0.ɵɵadvance();
|
|
43052
43434
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "bg-emerald-100 text-emerald-700 border-emerald-300" : "bg-emerald-900/30 text-emerald-400 border-emerald-700/50");
|
|
43053
43435
|
i0.ɵɵadvance(3);
|
|
43054
|
-
i0.ɵɵtextInterpolate2(" ",
|
|
43436
|
+
i0.ɵɵtextInterpolate2(" ", insight_r17.recommendations.length, " ", insight_r17.recommendations.length === 1 ? "RECOMMENDATION" : "RECOMMENDATIONS", " ");
|
|
43055
43437
|
} }
|
|
43056
|
-
function
|
|
43057
|
-
const
|
|
43058
|
-
i0.ɵɵelementStart(0, "div",
|
|
43059
|
-
i0.ɵɵlistener("click", function
|
|
43060
|
-
i0.ɵɵelementStart(1, "div",
|
|
43438
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_20_For_3_Template(rf, ctx) { if (rf & 1) {
|
|
43439
|
+
const _r16 = i0.ɵɵgetCurrentView();
|
|
43440
|
+
i0.ɵɵelementStart(0, "div", 54);
|
|
43441
|
+
i0.ɵɵlistener("click", function ProfileAnalysisModalComponent_Conditional_0_Conditional_20_For_3_Template_div_click_0_listener() { const insight_r17 = i0.ɵɵrestoreView(_r16).$implicit; const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.openInsightDetail(insight_r17)); });
|
|
43442
|
+
i0.ɵɵelementStart(1, "div", 55)(2, "div", 56);
|
|
43061
43443
|
i0.ɵɵtext(3);
|
|
43062
43444
|
i0.ɵɵelementEnd();
|
|
43063
|
-
i0.ɵɵelementStart(4, "div",
|
|
43445
|
+
i0.ɵɵelementStart(4, "div", 57)(5, "h4", 58);
|
|
43064
43446
|
i0.ɵɵtext(6);
|
|
43065
43447
|
i0.ɵɵelementEnd();
|
|
43066
|
-
i0.ɵɵelementStart(7, "p",
|
|
43448
|
+
i0.ɵɵelementStart(7, "p", 59);
|
|
43067
43449
|
i0.ɵɵtext(8);
|
|
43068
43450
|
i0.ɵɵelementEnd();
|
|
43069
|
-
i0.ɵɵconditionalCreate(9,
|
|
43451
|
+
i0.ɵɵconditionalCreate(9, ProfileAnalysisModalComponent_Conditional_0_Conditional_20_For_3_Conditional_9_Template, 5, 3, "div", 60);
|
|
43070
43452
|
i0.ɵɵelementEnd();
|
|
43071
|
-
i0.ɵɵelementStart(10, "div",
|
|
43453
|
+
i0.ɵɵelementStart(10, "div", 61);
|
|
43072
43454
|
i0.ɵɵnamespaceSVG();
|
|
43073
|
-
i0.ɵɵelementStart(11, "svg",
|
|
43074
|
-
i0.ɵɵelement(12, "path",
|
|
43455
|
+
i0.ɵɵelementStart(11, "svg", 62);
|
|
43456
|
+
i0.ɵɵelement(12, "path", 63);
|
|
43075
43457
|
i0.ɵɵelementEnd()()()();
|
|
43076
43458
|
} if (rf & 2) {
|
|
43077
|
-
const
|
|
43459
|
+
const insight_r17 = ctx.$implicit;
|
|
43078
43460
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
43079
43461
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "bg-white border-slate-200 hover:border-blue-500/30" : "bg-slate-800 border-slate-700 hover:border-blue-500/30");
|
|
43080
43462
|
i0.ɵɵadvance(2);
|
|
43081
|
-
i0.ɵɵproperty("ngClass", ctx_r1.getPriorityBadgeClass(
|
|
43463
|
+
i0.ɵɵproperty("ngClass", ctx_r1.getPriorityBadgeClass(insight_r17.priority ?? 0))("ngStyle", ctx_r1.getPriorityBadgeStyle(insight_r17.priority ?? 0));
|
|
43082
43464
|
i0.ɵɵadvance();
|
|
43083
|
-
i0.ɵɵtextInterpolate1(" P",
|
|
43465
|
+
i0.ɵɵtextInterpolate1(" P", insight_r17.priority, " ");
|
|
43084
43466
|
i0.ɵɵadvance(2);
|
|
43085
43467
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-900 group-hover:text-blue-600" : "text-white group-hover:text-blue-400");
|
|
43086
43468
|
i0.ɵɵadvance();
|
|
43087
|
-
i0.ɵɵtextInterpolate(
|
|
43469
|
+
i0.ɵɵtextInterpolate(insight_r17.title);
|
|
43088
43470
|
i0.ɵɵadvance();
|
|
43089
43471
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-700" : "text-slate-300");
|
|
43090
43472
|
i0.ɵɵadvance();
|
|
43091
|
-
i0.ɵɵtextInterpolate(
|
|
43473
|
+
i0.ɵɵtextInterpolate(insight_r17.description);
|
|
43092
43474
|
i0.ɵɵadvance();
|
|
43093
|
-
i0.ɵɵconditional(
|
|
43475
|
+
i0.ɵɵconditional(insight_r17.recommendations && insight_r17.recommendations.length > 0 ? 9 : -1);
|
|
43094
43476
|
i0.ɵɵadvance(2);
|
|
43095
43477
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-400 group-hover:text-blue-600" : "text-slate-500 group-hover:text-blue-400");
|
|
43096
43478
|
} }
|
|
43097
|
-
function
|
|
43098
|
-
i0.ɵɵelementStart(0, "div",
|
|
43099
|
-
i0.ɵɵconditionalCreate(1,
|
|
43100
|
-
i0.ɵɵrepeaterCreate(2,
|
|
43479
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_20_Template(rf, ctx) { if (rf & 1) {
|
|
43480
|
+
i0.ɵɵelementStart(0, "div", 19);
|
|
43481
|
+
i0.ɵɵconditionalCreate(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_20_Conditional_1_Template, 2, 2, "p", 52);
|
|
43482
|
+
i0.ɵɵrepeaterCreate(2, ProfileAnalysisModalComponent_Conditional_0_Conditional_20_For_3_Template, 13, 10, "div", 53, _forTrack0$T);
|
|
43101
43483
|
i0.ɵɵelementEnd();
|
|
43102
43484
|
} if (rf & 2) {
|
|
43103
|
-
const
|
|
43485
|
+
const data_r15 = ctx;
|
|
43104
43486
|
i0.ɵɵadvance();
|
|
43105
|
-
i0.ɵɵconditional(
|
|
43487
|
+
i0.ɵɵconditional(data_r15.recommendationContext.description ? 1 : -1);
|
|
43106
43488
|
i0.ɵɵadvance();
|
|
43107
|
-
i0.ɵɵrepeater(
|
|
43489
|
+
i0.ɵɵrepeater(data_r15.insights);
|
|
43108
43490
|
} }
|
|
43109
|
-
function
|
|
43110
|
-
i0.ɵɵelementStart(0, "p",
|
|
43491
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_21_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
43492
|
+
i0.ɵɵelementStart(0, "p", 52);
|
|
43111
43493
|
i0.ɵɵtext(1);
|
|
43112
43494
|
i0.ɵɵelementEnd();
|
|
43113
43495
|
} if (rf & 2) {
|
|
43114
|
-
const
|
|
43496
|
+
const data_r18 = i0.ɵɵnextContext();
|
|
43115
43497
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43116
43498
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-700" : "text-slate-300");
|
|
43117
43499
|
i0.ɵɵadvance();
|
|
43118
|
-
i0.ɵɵtextInterpolate(
|
|
43500
|
+
i0.ɵɵtextInterpolate(data_r18.goalContext.description);
|
|
43119
43501
|
} }
|
|
43120
|
-
function
|
|
43121
|
-
const
|
|
43122
|
-
i0.ɵɵelementStart(0, "div")(1, "symphiq-recommendation-card",
|
|
43123
|
-
i0.ɵɵlistener("cardNavigate", function
|
|
43502
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_21_For_3_Template(rf, ctx) { if (rf & 1) {
|
|
43503
|
+
const _r19 = i0.ɵɵgetCurrentView();
|
|
43504
|
+
i0.ɵɵelementStart(0, "div")(1, "symphiq-recommendation-card", 67);
|
|
43505
|
+
i0.ɵɵlistener("cardNavigate", function ProfileAnalysisModalComponent_Conditional_0_Conditional_21_For_3_Template_symphiq_recommendation_card_cardNavigate_1_listener() { const businessInsight_r20 = i0.ɵɵrestoreView(_r19).$implicit; const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.openBusinessInsightDetailFromRecommendation(businessInsight_r20)); });
|
|
43124
43506
|
i0.ɵɵelementEnd()();
|
|
43125
43507
|
} if (rf & 2) {
|
|
43126
|
-
const
|
|
43127
|
-
const $
|
|
43128
|
-
const
|
|
43508
|
+
const businessInsight_r20 = ctx.$implicit;
|
|
43509
|
+
const $index_r21 = ctx.$index;
|
|
43510
|
+
const data_r18 = i0.ɵɵnextContext();
|
|
43129
43511
|
i0.ɵɵadvance();
|
|
43130
|
-
i0.ɵɵproperty("recommendation",
|
|
43512
|
+
i0.ɵɵproperty("recommendation", businessInsight_r20)("viewMode", data_r18.viewMode)("animationIndex", $index_r21)("showNavigationChevron", true)("inModalContext", true);
|
|
43131
43513
|
} }
|
|
43132
|
-
function
|
|
43133
|
-
i0.ɵɵelementStart(0, "div",
|
|
43134
|
-
i0.ɵɵconditionalCreate(1,
|
|
43135
|
-
i0.ɵɵrepeaterCreate(2,
|
|
43514
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_21_Template(rf, ctx) { if (rf & 1) {
|
|
43515
|
+
i0.ɵɵelementStart(0, "div", 20);
|
|
43516
|
+
i0.ɵɵconditionalCreate(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_21_Conditional_1_Template, 2, 2, "p", 52);
|
|
43517
|
+
i0.ɵɵrepeaterCreate(2, ProfileAnalysisModalComponent_Conditional_0_Conditional_21_For_3_Template, 2, 5, "div", null, _forTrack1$a);
|
|
43136
43518
|
i0.ɵɵelementEnd();
|
|
43137
43519
|
} if (rf & 2) {
|
|
43138
|
-
const
|
|
43520
|
+
const data_r18 = ctx;
|
|
43139
43521
|
i0.ɵɵadvance();
|
|
43140
|
-
i0.ɵɵconditional(
|
|
43522
|
+
i0.ɵɵconditional(data_r18.goalContext.description ? 1 : -1);
|
|
43141
43523
|
i0.ɵɵadvance();
|
|
43142
|
-
i0.ɵɵrepeater(
|
|
43524
|
+
i0.ɵɵrepeater(data_r18.businessInsights);
|
|
43143
43525
|
} }
|
|
43144
|
-
function
|
|
43145
|
-
i0.ɵɵelementStart(0, "p",
|
|
43526
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_22_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
43527
|
+
i0.ɵɵelementStart(0, "p", 52);
|
|
43146
43528
|
i0.ɵɵtext(1);
|
|
43147
43529
|
i0.ɵɵelementEnd();
|
|
43148
43530
|
} if (rf & 2) {
|
|
43149
|
-
const
|
|
43531
|
+
const data_r22 = i0.ɵɵnextContext();
|
|
43150
43532
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43151
43533
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-700" : "text-slate-300");
|
|
43152
43534
|
i0.ɵɵadvance();
|
|
43153
|
-
i0.ɵɵtextInterpolate(
|
|
43535
|
+
i0.ɵɵtextInterpolate(data_r22.recommendationContext.description);
|
|
43154
43536
|
} }
|
|
43155
|
-
function
|
|
43156
|
-
const
|
|
43157
|
-
i0.ɵɵelementStart(0, "div")(1, "symphiq-recommendation-card",
|
|
43158
|
-
i0.ɵɵlistener("cardNavigate", function
|
|
43537
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_22_For_3_Template(rf, ctx) { if (rf & 1) {
|
|
43538
|
+
const _r23 = i0.ɵɵgetCurrentView();
|
|
43539
|
+
i0.ɵɵelementStart(0, "div")(1, "symphiq-recommendation-card", 67);
|
|
43540
|
+
i0.ɵɵlistener("cardNavigate", function ProfileAnalysisModalComponent_Conditional_0_Conditional_22_For_3_Template_symphiq_recommendation_card_cardNavigate_1_listener() { const businessInsight_r24 = i0.ɵɵrestoreView(_r23).$implicit; const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.openBusinessInsightDetailFromRecommendation(businessInsight_r24)); });
|
|
43159
43541
|
i0.ɵɵelementEnd()();
|
|
43160
43542
|
} if (rf & 2) {
|
|
43161
|
-
const
|
|
43162
|
-
const $
|
|
43543
|
+
const businessInsight_r24 = ctx.$implicit;
|
|
43544
|
+
const $index_r25 = ctx.$index;
|
|
43163
43545
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
43164
43546
|
i0.ɵɵadvance();
|
|
43165
|
-
i0.ɵɵproperty("recommendation",
|
|
43547
|
+
i0.ɵɵproperty("recommendation", businessInsight_r24)("viewMode", ctx_r1.viewMode())("animationIndex", $index_r25)("showNavigationChevron", true)("inModalContext", true);
|
|
43166
43548
|
} }
|
|
43167
|
-
function
|
|
43168
|
-
i0.ɵɵelementStart(0, "div",
|
|
43169
|
-
i0.ɵɵconditionalCreate(1,
|
|
43170
|
-
i0.ɵɵrepeaterCreate(2,
|
|
43549
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_22_Template(rf, ctx) { if (rf & 1) {
|
|
43550
|
+
i0.ɵɵelementStart(0, "div", 20);
|
|
43551
|
+
i0.ɵɵconditionalCreate(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_22_Conditional_1_Template, 2, 2, "p", 52);
|
|
43552
|
+
i0.ɵɵrepeaterCreate(2, ProfileAnalysisModalComponent_Conditional_0_Conditional_22_For_3_Template, 2, 5, "div", null, _forTrack1$a);
|
|
43171
43553
|
i0.ɵɵelementEnd();
|
|
43172
43554
|
} if (rf & 2) {
|
|
43173
|
-
const
|
|
43555
|
+
const data_r22 = ctx;
|
|
43174
43556
|
i0.ɵɵadvance();
|
|
43175
|
-
i0.ɵɵconditional(
|
|
43557
|
+
i0.ɵɵconditional(data_r22.recommendationContext.description ? 1 : -1);
|
|
43176
43558
|
i0.ɵɵadvance();
|
|
43177
|
-
i0.ɵɵrepeater(
|
|
43559
|
+
i0.ɵɵrepeater(data_r22.businessInsights);
|
|
43178
43560
|
} }
|
|
43179
|
-
function
|
|
43180
|
-
i0.ɵɵelement(0, "symphiq-recommendation-card",
|
|
43561
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_23_Template(rf, ctx) { if (rf & 1) {
|
|
43562
|
+
i0.ɵɵelement(0, "symphiq-recommendation-card", 21);
|
|
43181
43563
|
} if (rf & 2) {
|
|
43182
|
-
const
|
|
43564
|
+
const data_r26 = ctx;
|
|
43183
43565
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43184
|
-
i0.ɵɵproperty("recommendation",
|
|
43566
|
+
i0.ɵɵproperty("recommendation", data_r26.recommendation)("viewMode", data_r26.viewMode)("forceExpanded", true)("showNavigationChevron", false)("inModalContext", true)("isCompactMode", false)("fromProfileAnalysis", true)("animationIndex", 0)("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("allInsights", ctx_r1.allInsights())("currentModalState", ctx_r1.getCurrentModalState())("goalTitle", ctx_r1.extractGoalTitle())("objectiveTitle", ctx_r1.extractObjectiveTitle())("strategyTitle", ctx_r1.extractStrategyTitle());
|
|
43185
43567
|
} }
|
|
43186
|
-
function
|
|
43187
|
-
const
|
|
43188
|
-
i0.ɵɵelementStart(0, "symphiq-item-detail-modal",
|
|
43189
|
-
i0.ɵɵlistener("close", function
|
|
43568
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_24_Template(rf, ctx) { if (rf & 1) {
|
|
43569
|
+
const _r27 = i0.ɵɵgetCurrentView();
|
|
43570
|
+
i0.ɵɵelementStart(0, "symphiq-item-detail-modal", 68);
|
|
43571
|
+
i0.ɵɵlistener("close", function ProfileAnalysisModalComponent_Conditional_0_Conditional_24_Template_symphiq_item_detail_modal_close_0_listener() { i0.ɵɵrestoreView(_r27); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.closeModal()); })("scrollToTop", function ProfileAnalysisModalComponent_Conditional_0_Conditional_24_Template_symphiq_item_detail_modal_scrollToTop_0_listener() { i0.ɵɵrestoreView(_r27); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.scrollModalToTop()); });
|
|
43190
43572
|
i0.ɵɵelementEnd();
|
|
43191
43573
|
} if (rf & 2) {
|
|
43192
|
-
const
|
|
43193
|
-
i0.ɵɵproperty("item",
|
|
43574
|
+
const data_r28 = ctx;
|
|
43575
|
+
i0.ɵɵproperty("item", data_r28.item)("viewMode", data_r28.viewMode)("sectionTitle", data_r28.sectionTitle || "Section")("subsectionTitle", data_r28.subsectionTitle || "Subsection")("isCompactMode", data_r28.isCompactMode || false)("fromProfileAnalysis", true);
|
|
43194
43576
|
} }
|
|
43195
|
-
function
|
|
43196
|
-
const
|
|
43197
|
-
i0.ɵɵelementStart(0, "div")(1, "symphiq-metric-list-item",
|
|
43198
|
-
i0.ɵɵlistener("metricClick", function
|
|
43577
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Conditional_0_For_4_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
43578
|
+
const _r29 = i0.ɵɵgetCurrentView();
|
|
43579
|
+
i0.ɵɵelementStart(0, "div")(1, "symphiq-metric-list-item", 71);
|
|
43580
|
+
i0.ɵɵlistener("metricClick", function ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Conditional_0_For_4_Conditional_0_Template_symphiq_metric_list_item_metricClick_1_listener($event) { i0.ɵɵrestoreView(_r29); const ctx_r1 = i0.ɵɵnextContext(6); return i0.ɵɵresetView(ctx_r1.openMetricDetail($event)); });
|
|
43199
43581
|
i0.ɵɵelementEnd()();
|
|
43200
43582
|
} if (rf & 2) {
|
|
43201
|
-
const
|
|
43202
|
-
const
|
|
43203
|
-
const $
|
|
43583
|
+
const ctx_r29 = i0.ɵɵnextContext();
|
|
43584
|
+
const metric_r31 = ctx_r29.$implicit;
|
|
43585
|
+
const $index_r32 = ctx_r29.$index;
|
|
43204
43586
|
const ctx_r1 = i0.ɵɵnextContext(5);
|
|
43205
43587
|
i0.ɵɵadvance();
|
|
43206
|
-
i0.ɵɵproperty("metric",
|
|
43588
|
+
i0.ɵɵproperty("metric", metric_r31)("isLightMode", ctx_r1.isLightMode())("animationKey", $index_r32);
|
|
43207
43589
|
} }
|
|
43208
|
-
function
|
|
43209
|
-
i0.ɵɵconditionalCreate(0,
|
|
43590
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Conditional_0_For_4_Template(rf, ctx) { if (rf & 1) {
|
|
43591
|
+
i0.ɵɵconditionalCreate(0, ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Conditional_0_For_4_Conditional_0_Template, 2, 3, "div");
|
|
43210
43592
|
} if (rf & 2) {
|
|
43211
|
-
const
|
|
43212
|
-
const
|
|
43213
|
-
i0.ɵɵconditional(
|
|
43593
|
+
const metric_r31 = ctx.$implicit;
|
|
43594
|
+
const data_r33 = i0.ɵɵnextContext(3);
|
|
43595
|
+
i0.ɵɵconditional(metric_r31.metric === data_r33.directlyAffectedMetricId ? 0 : -1);
|
|
43214
43596
|
} }
|
|
43215
|
-
function
|
|
43216
|
-
i0.ɵɵelementStart(0, "div",
|
|
43597
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
43598
|
+
i0.ɵɵelementStart(0, "div", 69)(1, "h3", 70);
|
|
43217
43599
|
i0.ɵɵtext(2, " Directly Affected Metric ");
|
|
43218
43600
|
i0.ɵɵelementEnd();
|
|
43219
|
-
i0.ɵɵrepeaterCreate(3,
|
|
43601
|
+
i0.ɵɵrepeaterCreate(3, ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Conditional_0_For_4_Template, 1, 1, null, null, _forTrack2$2);
|
|
43220
43602
|
i0.ɵɵelementEnd();
|
|
43221
43603
|
} if (rf & 2) {
|
|
43222
|
-
const
|
|
43604
|
+
const data_r33 = i0.ɵɵnextContext(2);
|
|
43223
43605
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43224
43606
|
i0.ɵɵadvance();
|
|
43225
43607
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-600" : "text-slate-400");
|
|
43226
43608
|
i0.ɵɵadvance(2);
|
|
43227
|
-
i0.ɵɵrepeater(
|
|
43609
|
+
i0.ɵɵrepeater(data_r33.metrics);
|
|
43228
43610
|
} }
|
|
43229
|
-
function
|
|
43230
|
-
const
|
|
43231
|
-
i0.ɵɵelementStart(0, "div")(1, "symphiq-metric-list-item",
|
|
43232
|
-
i0.ɵɵlistener("metricClick", function
|
|
43611
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Conditional_1_For_4_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
43612
|
+
const _r34 = i0.ɵɵgetCurrentView();
|
|
43613
|
+
i0.ɵɵelementStart(0, "div")(1, "symphiq-metric-list-item", 71);
|
|
43614
|
+
i0.ɵɵlistener("metricClick", function ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Conditional_1_For_4_Conditional_0_Template_symphiq_metric_list_item_metricClick_1_listener($event) { i0.ɵɵrestoreView(_r34); const ctx_r1 = i0.ɵɵnextContext(6); return i0.ɵɵresetView(ctx_r1.openMetricDetail($event)); });
|
|
43233
43615
|
i0.ɵɵelementEnd()();
|
|
43234
43616
|
} if (rf & 2) {
|
|
43235
|
-
const
|
|
43236
|
-
const
|
|
43237
|
-
const $
|
|
43617
|
+
const ctx_r34 = i0.ɵɵnextContext();
|
|
43618
|
+
const metric_r36 = ctx_r34.$implicit;
|
|
43619
|
+
const $index_r37 = ctx_r34.$index;
|
|
43238
43620
|
const ctx_r1 = i0.ɵɵnextContext(5);
|
|
43239
43621
|
i0.ɵɵadvance();
|
|
43240
|
-
i0.ɵɵproperty("metric",
|
|
43622
|
+
i0.ɵɵproperty("metric", metric_r36)("isLightMode", ctx_r1.isLightMode())("animationKey", $index_r37);
|
|
43241
43623
|
} }
|
|
43242
|
-
function
|
|
43243
|
-
i0.ɵɵconditionalCreate(0,
|
|
43624
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Conditional_1_For_4_Template(rf, ctx) { if (rf & 1) {
|
|
43625
|
+
i0.ɵɵconditionalCreate(0, ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Conditional_1_For_4_Conditional_0_Template, 2, 3, "div");
|
|
43244
43626
|
} if (rf & 2) {
|
|
43245
|
-
const
|
|
43246
|
-
const
|
|
43247
|
-
i0.ɵɵconditional(
|
|
43627
|
+
const metric_r36 = ctx.$implicit;
|
|
43628
|
+
const data_r33 = i0.ɵɵnextContext(3);
|
|
43629
|
+
i0.ɵɵconditional(data_r33.indirectlyAffectedMetricIds.includes(metric_r36.metric || "") ? 0 : -1);
|
|
43248
43630
|
} }
|
|
43249
|
-
function
|
|
43250
|
-
i0.ɵɵelementStart(0, "div",
|
|
43631
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
43632
|
+
i0.ɵɵelementStart(0, "div", 69)(1, "h3", 70);
|
|
43251
43633
|
i0.ɵɵtext(2, " Indirectly Affected Metrics ");
|
|
43252
43634
|
i0.ɵɵelementEnd();
|
|
43253
|
-
i0.ɵɵrepeaterCreate(3,
|
|
43635
|
+
i0.ɵɵrepeaterCreate(3, ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Conditional_1_For_4_Template, 1, 1, null, null, _forTrack2$2);
|
|
43254
43636
|
i0.ɵɵelementEnd();
|
|
43255
43637
|
} if (rf & 2) {
|
|
43256
|
-
const
|
|
43638
|
+
const data_r33 = i0.ɵɵnextContext(2);
|
|
43257
43639
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43258
43640
|
i0.ɵɵadvance();
|
|
43259
43641
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-600" : "text-slate-400");
|
|
43260
43642
|
i0.ɵɵadvance(2);
|
|
43261
|
-
i0.ɵɵrepeater(
|
|
43643
|
+
i0.ɵɵrepeater(data_r33.metrics);
|
|
43262
43644
|
} }
|
|
43263
|
-
function
|
|
43264
|
-
i0.ɵɵconditionalCreate(0,
|
|
43265
|
-
i0.ɵɵconditionalCreate(1,
|
|
43645
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
43646
|
+
i0.ɵɵconditionalCreate(0, ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Conditional_0_Template, 5, 1, "div", 69);
|
|
43647
|
+
i0.ɵɵconditionalCreate(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Conditional_1_Template, 5, 1, "div", 69);
|
|
43266
43648
|
} if (rf & 2) {
|
|
43267
|
-
const
|
|
43268
|
-
i0.ɵɵconditional(
|
|
43649
|
+
const data_r33 = i0.ɵɵnextContext();
|
|
43650
|
+
i0.ɵɵconditional(data_r33.directlyAffectedMetricId ? 0 : -1);
|
|
43269
43651
|
i0.ɵɵadvance();
|
|
43270
|
-
i0.ɵɵconditional(
|
|
43652
|
+
i0.ɵɵconditional(data_r33.indirectlyAffectedMetricIds && data_r33.indirectlyAffectedMetricIds.length > 0 ? 1 : -1);
|
|
43271
43653
|
} }
|
|
43272
|
-
function
|
|
43273
|
-
const
|
|
43274
|
-
i0.ɵɵelementStart(0, "div")(1, "symphiq-metric-list-item",
|
|
43275
|
-
i0.ɵɵlistener("metricClick", function
|
|
43654
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_2_For_1_Template(rf, ctx) { if (rf & 1) {
|
|
43655
|
+
const _r38 = i0.ɵɵgetCurrentView();
|
|
43656
|
+
i0.ɵɵelementStart(0, "div")(1, "symphiq-metric-list-item", 71);
|
|
43657
|
+
i0.ɵɵlistener("metricClick", function ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_2_For_1_Template_symphiq_metric_list_item_metricClick_1_listener($event) { i0.ɵɵrestoreView(_r38); const ctx_r1 = i0.ɵɵnextContext(4); return i0.ɵɵresetView(ctx_r1.openMetricDetail($event)); });
|
|
43276
43658
|
i0.ɵɵelementEnd()();
|
|
43277
43659
|
} if (rf & 2) {
|
|
43278
|
-
const
|
|
43279
|
-
const $
|
|
43660
|
+
const metric_r39 = ctx.$implicit;
|
|
43661
|
+
const $index_r40 = ctx.$index;
|
|
43280
43662
|
const ctx_r1 = i0.ɵɵnextContext(4);
|
|
43281
43663
|
i0.ɵɵadvance();
|
|
43282
|
-
i0.ɵɵproperty("metric",
|
|
43664
|
+
i0.ɵɵproperty("metric", metric_r39)("isLightMode", ctx_r1.isLightMode())("animationKey", $index_r40);
|
|
43283
43665
|
} }
|
|
43284
|
-
function
|
|
43285
|
-
i0.ɵɵrepeaterCreate(0,
|
|
43666
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
43667
|
+
i0.ɵɵrepeaterCreate(0, ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_2_For_1_Template, 2, 3, "div", null, _forTrack0$T);
|
|
43286
43668
|
} if (rf & 2) {
|
|
43287
|
-
const
|
|
43288
|
-
i0.ɵɵrepeater(
|
|
43669
|
+
const data_r33 = i0.ɵɵnextContext();
|
|
43670
|
+
i0.ɵɵrepeater(data_r33.metrics);
|
|
43289
43671
|
} }
|
|
43290
|
-
function
|
|
43291
|
-
i0.ɵɵelementStart(0, "div",
|
|
43292
|
-
i0.ɵɵconditionalCreate(1,
|
|
43672
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Template(rf, ctx) { if (rf & 1) {
|
|
43673
|
+
i0.ɵɵelementStart(0, "div", 19);
|
|
43674
|
+
i0.ɵɵconditionalCreate(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_1_Template, 2, 2)(2, ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Conditional_2_Template, 2, 0);
|
|
43293
43675
|
i0.ɵɵelementEnd();
|
|
43294
43676
|
} if (rf & 2) {
|
|
43295
|
-
const
|
|
43677
|
+
const data_r33 = ctx;
|
|
43296
43678
|
i0.ɵɵadvance();
|
|
43297
|
-
i0.ɵɵconditional(
|
|
43679
|
+
i0.ɵɵconditional(data_r33.recommendationContext && (data_r33.directlyAffectedMetricId || data_r33.indirectlyAffectedMetricIds) ? 1 : 2);
|
|
43298
43680
|
} }
|
|
43299
|
-
function
|
|
43300
|
-
i0.ɵɵelement(0, "symphiq-funnel-analysis-metric-card",
|
|
43681
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_26_Template(rf, ctx) { if (rf & 1) {
|
|
43682
|
+
i0.ɵɵelement(0, "symphiq-funnel-analysis-metric-card", 23);
|
|
43301
43683
|
} if (rf & 2) {
|
|
43302
43684
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43303
43685
|
i0.ɵɵproperty("metric", ctx)("insights", ctx_r1.allInsights())("charts", ctx_r1.currentCharts())("allCharts", ctx_r1.allCharts())("isLightMode", ctx_r1.isLightMode())("isInModal", true)("currentModalState", ctx_r1.getCurrentModalState())("viewMode", ctx_r1.viewMode());
|
|
43304
43686
|
} }
|
|
43305
|
-
function
|
|
43306
|
-
i0.ɵɵelementStart(0, "p",
|
|
43687
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_27_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
43688
|
+
i0.ɵɵelementStart(0, "p", 52);
|
|
43307
43689
|
i0.ɵɵtext(1);
|
|
43308
43690
|
i0.ɵɵelementEnd();
|
|
43309
43691
|
} if (rf & 2) {
|
|
43310
|
-
const
|
|
43692
|
+
const data_r41 = i0.ɵɵnextContext();
|
|
43311
43693
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43312
43694
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-700" : "text-slate-300");
|
|
43313
43695
|
i0.ɵɵadvance();
|
|
43314
|
-
i0.ɵɵtextInterpolate(
|
|
43696
|
+
i0.ɵɵtextInterpolate(data_r41.insightContext == null ? null : data_r41.insightContext.description);
|
|
43315
43697
|
} }
|
|
43316
|
-
function
|
|
43317
|
-
const
|
|
43318
|
-
i0.ɵɵelementStart(0, "div")(1, "symphiq-chart-card",
|
|
43319
|
-
i0.ɵɵlistener("chartClick", function
|
|
43698
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_27_For_3_Template(rf, ctx) { if (rf & 1) {
|
|
43699
|
+
const _r42 = i0.ɵɵgetCurrentView();
|
|
43700
|
+
i0.ɵɵelementStart(0, "div")(1, "symphiq-chart-card", 72);
|
|
43701
|
+
i0.ɵɵlistener("chartClick", function ProfileAnalysisModalComponent_Conditional_0_Conditional_27_For_3_Template_symphiq_chart_card_chartClick_1_listener($event) { i0.ɵɵrestoreView(_r42); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.openChartDetail($event)); });
|
|
43320
43702
|
i0.ɵɵelementEnd()();
|
|
43321
43703
|
} if (rf & 2) {
|
|
43322
|
-
const
|
|
43704
|
+
const chart_r43 = ctx.$implicit;
|
|
43323
43705
|
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
43324
43706
|
i0.ɵɵadvance();
|
|
43325
|
-
i0.ɵɵproperty("chart",
|
|
43707
|
+
i0.ɵɵproperty("chart", chart_r43)("viewMode", ctx_r1.viewMode())("isLightMode", ctx_r1.isLightMode());
|
|
43326
43708
|
} }
|
|
43327
|
-
function
|
|
43328
|
-
i0.ɵɵelementStart(0, "div",
|
|
43329
|
-
i0.ɵɵconditionalCreate(1,
|
|
43330
|
-
i0.ɵɵrepeaterCreate(2,
|
|
43709
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_27_Template(rf, ctx) { if (rf & 1) {
|
|
43710
|
+
i0.ɵɵelementStart(0, "div", 19);
|
|
43711
|
+
i0.ɵɵconditionalCreate(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_27_Conditional_1_Template, 2, 2, "p", 52);
|
|
43712
|
+
i0.ɵɵrepeaterCreate(2, ProfileAnalysisModalComponent_Conditional_0_Conditional_27_For_3_Template, 2, 3, "div", null, i0.ɵɵrepeaterTrackByIndex);
|
|
43331
43713
|
i0.ɵɵelementEnd();
|
|
43332
43714
|
} if (rf & 2) {
|
|
43333
|
-
const
|
|
43715
|
+
const data_r41 = ctx;
|
|
43334
43716
|
i0.ɵɵadvance();
|
|
43335
|
-
i0.ɵɵconditional((
|
|
43717
|
+
i0.ɵɵconditional((data_r41.insightContext == null ? null : data_r41.insightContext.description) ? 1 : -1);
|
|
43336
43718
|
i0.ɵɵadvance();
|
|
43337
|
-
i0.ɵɵrepeater(
|
|
43719
|
+
i0.ɵɵrepeater(data_r41.charts);
|
|
43338
43720
|
} }
|
|
43339
|
-
function
|
|
43340
|
-
i0.ɵɵelement(0, "symphiq-funnel-analysis-insight-card",
|
|
43721
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_28_Template(rf, ctx) { if (rf & 1) {
|
|
43722
|
+
i0.ɵɵelement(0, "symphiq-funnel-analysis-insight-card", 24);
|
|
43341
43723
|
} if (rf & 2) {
|
|
43342
43724
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43343
43725
|
i0.ɵɵproperty("insight", ctx)("allMetrics", ctx_r1.allMetrics())("charts", ctx_r1.currentCharts())("allCharts", ctx_r1.allCharts())("allBusinessInsights", ctx_r1.businessInsightsForInsightCard())("isLightMode", ctx_r1.isLightMode())("isInModal", true)("isLoading", false)("isCompactMode", false)("viewMode", ctx_r1.viewMode())("currentModalState", ctx_r1.getCurrentModalState());
|
|
43344
43726
|
} }
|
|
43345
|
-
function
|
|
43346
|
-
i0.ɵɵelementStart(0, "p",
|
|
43727
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
43728
|
+
i0.ɵɵelementStart(0, "p", 73);
|
|
43347
43729
|
i0.ɵɵtext(1);
|
|
43348
43730
|
i0.ɵɵelementEnd();
|
|
43349
43731
|
} if (rf & 2) {
|
|
43350
|
-
const
|
|
43732
|
+
const chart_r44 = i0.ɵɵnextContext();
|
|
43351
43733
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43352
43734
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-600" : "text-slate-400");
|
|
43353
43735
|
i0.ɵɵadvance();
|
|
43354
|
-
i0.ɵɵtextInterpolate(
|
|
43736
|
+
i0.ɵɵtextInterpolate(chart_r44.description);
|
|
43355
43737
|
} }
|
|
43356
|
-
function
|
|
43357
|
-
i0.ɵɵelement(0, "symphiq-line-chart",
|
|
43738
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_3_Defer_0_Template(rf, ctx) { if (rf & 1) {
|
|
43739
|
+
i0.ɵɵelement(0, "symphiq-line-chart", 75);
|
|
43358
43740
|
} if (rf & 2) {
|
|
43359
|
-
const
|
|
43741
|
+
const chart_r44 = i0.ɵɵnextContext(2);
|
|
43360
43742
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43361
|
-
i0.ɵɵproperty("chart",
|
|
43743
|
+
i0.ɵɵproperty("chart", chart_r44)("showAxisLabels", true)("viewMode", ctx_r1.viewMode());
|
|
43362
43744
|
} }
|
|
43363
|
-
function
|
|
43364
|
-
i0.ɵɵelementStart(0, "div",
|
|
43365
|
-
i0.ɵɵelement(1, "div",
|
|
43745
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_3_DeferPlaceholder_1_Template(rf, ctx) { if (rf & 1) {
|
|
43746
|
+
i0.ɵɵelementStart(0, "div", 76);
|
|
43747
|
+
i0.ɵɵelement(1, "div", 77);
|
|
43366
43748
|
i0.ɵɵelementEnd();
|
|
43367
43749
|
} if (rf & 2) {
|
|
43368
43750
|
const ctx_r1 = i0.ɵɵnextContext(4);
|
|
43369
43751
|
i0.ɵɵadvance();
|
|
43370
43752
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "border-2 border-slate-300 border-t-blue-500" : "border-2 border-slate-600 border-t-blue-400");
|
|
43371
43753
|
} }
|
|
43372
|
-
function
|
|
43373
|
-
i0.ɵɵdomTemplate(0,
|
|
43374
|
-
i0.ɵɵdefer(2, 0,
|
|
43754
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
43755
|
+
i0.ɵɵdomTemplate(0, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_3_Defer_0_Template, 1, 3)(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_3_DeferPlaceholder_1_Template, 2, 1);
|
|
43756
|
+
i0.ɵɵdefer(2, 0, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_3_Defer_2_DepsFn, null, 1);
|
|
43375
43757
|
i0.ɵɵdeferOnIdle();
|
|
43376
43758
|
} }
|
|
43377
|
-
function
|
|
43378
|
-
i0.ɵɵelement(0, "symphiq-bar-chart",
|
|
43759
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_4_Defer_0_Template(rf, ctx) { if (rf & 1) {
|
|
43760
|
+
i0.ɵɵelement(0, "symphiq-bar-chart", 75);
|
|
43379
43761
|
} if (rf & 2) {
|
|
43380
|
-
const
|
|
43762
|
+
const chart_r44 = i0.ɵɵnextContext(2);
|
|
43381
43763
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43382
|
-
i0.ɵɵproperty("chart",
|
|
43764
|
+
i0.ɵɵproperty("chart", chart_r44)("showAxisLabels", true)("viewMode", ctx_r1.viewMode());
|
|
43383
43765
|
} }
|
|
43384
|
-
function
|
|
43385
|
-
i0.ɵɵelementStart(0, "div",
|
|
43386
|
-
i0.ɵɵelement(1, "div",
|
|
43766
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_4_DeferPlaceholder_1_Template(rf, ctx) { if (rf & 1) {
|
|
43767
|
+
i0.ɵɵelementStart(0, "div", 76);
|
|
43768
|
+
i0.ɵɵelement(1, "div", 77);
|
|
43387
43769
|
i0.ɵɵelementEnd();
|
|
43388
43770
|
} if (rf & 2) {
|
|
43389
43771
|
const ctx_r1 = i0.ɵɵnextContext(4);
|
|
43390
43772
|
i0.ɵɵadvance();
|
|
43391
43773
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "border-2 border-slate-300 border-t-blue-500" : "border-2 border-slate-600 border-t-blue-400");
|
|
43392
43774
|
} }
|
|
43393
|
-
function
|
|
43394
|
-
i0.ɵɵdomTemplate(0,
|
|
43395
|
-
i0.ɵɵdefer(2, 0,
|
|
43775
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
43776
|
+
i0.ɵɵdomTemplate(0, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_4_Defer_0_Template, 1, 3)(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_4_DeferPlaceholder_1_Template, 2, 1);
|
|
43777
|
+
i0.ɵɵdefer(2, 0, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_4_Defer_2_DepsFn, null, 1);
|
|
43396
43778
|
i0.ɵɵdeferOnIdle();
|
|
43397
43779
|
} }
|
|
43398
|
-
function
|
|
43399
|
-
i0.ɵɵelement(0, "symphiq-pie-chart",
|
|
43780
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_5_Defer_0_Template(rf, ctx) { if (rf & 1) {
|
|
43781
|
+
i0.ɵɵelement(0, "symphiq-pie-chart", 75);
|
|
43400
43782
|
} if (rf & 2) {
|
|
43401
|
-
const
|
|
43783
|
+
const chart_r44 = i0.ɵɵnextContext(2);
|
|
43402
43784
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43403
|
-
i0.ɵɵproperty("chart",
|
|
43785
|
+
i0.ɵɵproperty("chart", chart_r44)("showAxisLabels", true)("viewMode", ctx_r1.viewMode());
|
|
43404
43786
|
} }
|
|
43405
|
-
function
|
|
43406
|
-
i0.ɵɵelementStart(0, "div",
|
|
43407
|
-
i0.ɵɵelement(1, "div",
|
|
43787
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_5_DeferPlaceholder_1_Template(rf, ctx) { if (rf & 1) {
|
|
43788
|
+
i0.ɵɵelementStart(0, "div", 76);
|
|
43789
|
+
i0.ɵɵelement(1, "div", 77);
|
|
43408
43790
|
i0.ɵɵelementEnd();
|
|
43409
43791
|
} if (rf & 2) {
|
|
43410
43792
|
const ctx_r1 = i0.ɵɵnextContext(4);
|
|
43411
43793
|
i0.ɵɵadvance();
|
|
43412
43794
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "border-2 border-slate-300 border-t-blue-500" : "border-2 border-slate-600 border-t-blue-400");
|
|
43413
43795
|
} }
|
|
43414
|
-
function
|
|
43415
|
-
i0.ɵɵdomTemplate(0,
|
|
43416
|
-
i0.ɵɵdefer(2, 0,
|
|
43796
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
43797
|
+
i0.ɵɵdomTemplate(0, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_5_Defer_0_Template, 1, 3)(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_5_DeferPlaceholder_1_Template, 2, 1);
|
|
43798
|
+
i0.ɵɵdefer(2, 0, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_5_Defer_2_DepsFn, null, 1);
|
|
43417
43799
|
i0.ɵɵdeferOnIdle();
|
|
43418
43800
|
} }
|
|
43419
|
-
function
|
|
43420
|
-
i0.ɵɵelement(0, "symphiq-area-chart",
|
|
43801
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_6_Defer_0_Template(rf, ctx) { if (rf & 1) {
|
|
43802
|
+
i0.ɵɵelement(0, "symphiq-area-chart", 75);
|
|
43421
43803
|
} if (rf & 2) {
|
|
43422
|
-
const
|
|
43804
|
+
const chart_r44 = i0.ɵɵnextContext(2);
|
|
43423
43805
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43424
|
-
i0.ɵɵproperty("chart",
|
|
43806
|
+
i0.ɵɵproperty("chart", chart_r44)("showAxisLabels", true)("viewMode", ctx_r1.viewMode());
|
|
43425
43807
|
} }
|
|
43426
|
-
function
|
|
43427
|
-
i0.ɵɵelementStart(0, "div",
|
|
43428
|
-
i0.ɵɵelement(1, "div",
|
|
43808
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_6_DeferPlaceholder_1_Template(rf, ctx) { if (rf & 1) {
|
|
43809
|
+
i0.ɵɵelementStart(0, "div", 76);
|
|
43810
|
+
i0.ɵɵelement(1, "div", 77);
|
|
43429
43811
|
i0.ɵɵelementEnd();
|
|
43430
43812
|
} if (rf & 2) {
|
|
43431
43813
|
const ctx_r1 = i0.ɵɵnextContext(4);
|
|
43432
43814
|
i0.ɵɵadvance();
|
|
43433
43815
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "border-2 border-slate-300 border-t-blue-500" : "border-2 border-slate-600 border-t-blue-400");
|
|
43434
43816
|
} }
|
|
43435
|
-
function
|
|
43436
|
-
i0.ɵɵdomTemplate(0,
|
|
43437
|
-
i0.ɵɵdefer(2, 0,
|
|
43817
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
43818
|
+
i0.ɵɵdomTemplate(0, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_6_Defer_0_Template, 1, 3)(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_6_DeferPlaceholder_1_Template, 2, 1);
|
|
43819
|
+
i0.ɵɵdefer(2, 0, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_6_Defer_2_DepsFn, null, 1);
|
|
43438
43820
|
i0.ɵɵdeferOnIdle();
|
|
43439
43821
|
} }
|
|
43440
|
-
function
|
|
43441
|
-
i0.ɵɵelementStart(0, "div",
|
|
43442
|
-
i0.ɵɵconditionalCreate(1,
|
|
43443
|
-
i0.ɵɵelementStart(2, "div",
|
|
43444
|
-
i0.ɵɵconditionalCreate(3,
|
|
43445
|
-
i0.ɵɵconditionalCreate(4,
|
|
43446
|
-
i0.ɵɵconditionalCreate(5,
|
|
43447
|
-
i0.ɵɵconditionalCreate(6,
|
|
43822
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Template(rf, ctx) { if (rf & 1) {
|
|
43823
|
+
i0.ɵɵelementStart(0, "div", 25);
|
|
43824
|
+
i0.ɵɵconditionalCreate(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_1_Template, 2, 2, "p", 73);
|
|
43825
|
+
i0.ɵɵelementStart(2, "div", 74);
|
|
43826
|
+
i0.ɵɵconditionalCreate(3, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_3_Template, 4, 0);
|
|
43827
|
+
i0.ɵɵconditionalCreate(4, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_4_Template, 4, 0);
|
|
43828
|
+
i0.ɵɵconditionalCreate(5, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_5_Template, 4, 0);
|
|
43829
|
+
i0.ɵɵconditionalCreate(6, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Conditional_6_Template, 4, 0);
|
|
43448
43830
|
i0.ɵɵelementEnd()();
|
|
43449
43831
|
} if (rf & 2) {
|
|
43450
|
-
const
|
|
43832
|
+
const chart_r44 = ctx;
|
|
43451
43833
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43452
43834
|
i0.ɵɵproperty("@fadeIn", undefined);
|
|
43453
43835
|
i0.ɵɵadvance();
|
|
43454
|
-
i0.ɵɵconditional(
|
|
43836
|
+
i0.ɵɵconditional(chart_r44.description ? 1 : -1);
|
|
43455
43837
|
i0.ɵɵadvance(2);
|
|
43456
|
-
i0.ɵɵconditional(
|
|
43838
|
+
i0.ɵɵconditional(chart_r44.chartType === ctx_r1.ChartTypeEnum.LINE && chart_r44.lineChartData ? 3 : -1);
|
|
43457
43839
|
i0.ɵɵadvance();
|
|
43458
|
-
i0.ɵɵconditional(
|
|
43840
|
+
i0.ɵɵconditional(chart_r44.chartType === ctx_r1.ChartTypeEnum.BAR && chart_r44.barChartData ? 4 : -1);
|
|
43459
43841
|
i0.ɵɵadvance();
|
|
43460
|
-
i0.ɵɵconditional(
|
|
43842
|
+
i0.ɵɵconditional(chart_r44.chartType === ctx_r1.ChartTypeEnum.PIE && chart_r44.pieChartData ? 5 : -1);
|
|
43461
43843
|
i0.ɵɵadvance();
|
|
43462
|
-
i0.ɵɵconditional(
|
|
43463
|
-
} }
|
|
43464
|
-
function ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Template(rf, ctx) { if (rf & 1) {
|
|
43465
|
-
i0.ɵɵelement(0, "symphiq-key-strengths-list-modal-content", 25);
|
|
43466
|
-
} if (rf & 2) {
|
|
43467
|
-
const data_r44 = ctx;
|
|
43468
|
-
i0.ɵɵproperty("keyStrengths", data_r44.keyStrengths)("viewMode", data_r44.viewMode)("@fadeIn", undefined);
|
|
43844
|
+
i0.ɵɵconditional(chart_r44.chartType === ctx_r1.ChartTypeEnum.AREA && chart_r44.areaChartData ? 6 : -1);
|
|
43469
43845
|
} }
|
|
43470
43846
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_30_Template(rf, ctx) { if (rf & 1) {
|
|
43471
|
-
i0.ɵɵelement(0, "symphiq-
|
|
43847
|
+
i0.ɵɵelement(0, "symphiq-key-strengths-list-modal-content", 26);
|
|
43472
43848
|
} if (rf & 2) {
|
|
43473
43849
|
const data_r45 = ctx;
|
|
43474
|
-
i0.ɵɵproperty("
|
|
43850
|
+
i0.ɵɵproperty("keyStrengths", data_r45.keyStrengths)("viewMode", data_r45.viewMode)("@fadeIn", undefined);
|
|
43475
43851
|
} }
|
|
43476
43852
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_31_Template(rf, ctx) { if (rf & 1) {
|
|
43477
|
-
i0.ɵɵelement(0, "symphiq-
|
|
43853
|
+
i0.ɵɵelement(0, "symphiq-critical-gaps-list-modal-content", 27);
|
|
43478
43854
|
} if (rf & 2) {
|
|
43479
43855
|
const data_r46 = ctx;
|
|
43480
|
-
i0.ɵɵproperty("
|
|
43856
|
+
i0.ɵɵproperty("criticalGaps", data_r46.criticalGaps)("viewMode", data_r46.viewMode)("@fadeIn", undefined);
|
|
43481
43857
|
} }
|
|
43482
43858
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_32_Template(rf, ctx) { if (rf & 1) {
|
|
43483
|
-
i0.ɵɵelement(0, "symphiq-
|
|
43859
|
+
i0.ɵɵelement(0, "symphiq-key-strength-detail-modal-content", 28);
|
|
43484
43860
|
} if (rf & 2) {
|
|
43485
43861
|
const data_r47 = ctx;
|
|
43486
|
-
i0.ɵɵproperty("
|
|
43862
|
+
i0.ɵɵproperty("strength", data_r47.strength)("viewMode", data_r47.viewMode)("@fadeIn", undefined);
|
|
43487
43863
|
} }
|
|
43488
43864
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_33_Template(rf, ctx) { if (rf & 1) {
|
|
43489
|
-
|
|
43490
|
-
i0.ɵɵelementStart(0, "symphiq-top-priorities-list-modal-content", 76);
|
|
43491
|
-
i0.ɵɵlistener("priorityClick", function ProfileAnalysisModalComponent_Conditional_0_Conditional_33_Template_symphiq_top_priorities_list_modal_content_priorityClick_0_listener($event) { i0.ɵɵrestoreView(_r48); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onTopPriorityClick($event.priority, $event.index)); });
|
|
43492
|
-
i0.ɵɵelementEnd();
|
|
43865
|
+
i0.ɵɵelement(0, "symphiq-critical-gap-detail-modal-content", 29);
|
|
43493
43866
|
} if (rf & 2) {
|
|
43494
|
-
const
|
|
43495
|
-
i0.ɵɵproperty("
|
|
43867
|
+
const data_r48 = ctx;
|
|
43868
|
+
i0.ɵɵproperty("gap", data_r48.gap)("viewMode", data_r48.viewMode)("@fadeIn", undefined);
|
|
43496
43869
|
} }
|
|
43497
43870
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_34_Template(rf, ctx) { if (rf & 1) {
|
|
43498
|
-
i0.ɵɵ
|
|
43871
|
+
const _r49 = i0.ɵɵgetCurrentView();
|
|
43872
|
+
i0.ɵɵelementStart(0, "symphiq-top-priorities-list-modal-content", 78);
|
|
43873
|
+
i0.ɵɵlistener("priorityClick", function ProfileAnalysisModalComponent_Conditional_0_Conditional_34_Template_symphiq_top_priorities_list_modal_content_priorityClick_0_listener($event) { i0.ɵɵrestoreView(_r49); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onTopPriorityClick($event.priority, $event.index)); });
|
|
43874
|
+
i0.ɵɵelementEnd();
|
|
43499
43875
|
} if (rf & 2) {
|
|
43500
43876
|
const data_r50 = ctx;
|
|
43501
|
-
i0.ɵɵproperty("
|
|
43877
|
+
i0.ɵɵproperty("priorities", data_r50.priorities)("viewMode", data_r50.viewMode)("focusAreaName", data_r50.focusAreaName)("@fadeIn", undefined);
|
|
43502
43878
|
} }
|
|
43503
43879
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_35_Template(rf, ctx) { if (rf & 1) {
|
|
43504
|
-
i0.ɵɵelement(0, "symphiq-
|
|
43880
|
+
i0.ɵɵelement(0, "symphiq-top-priority-detail-modal-content", 31);
|
|
43505
43881
|
} if (rf & 2) {
|
|
43506
43882
|
const data_r51 = ctx;
|
|
43507
|
-
i0.ɵɵproperty("
|
|
43883
|
+
i0.ɵɵproperty("priority", data_r51.priority)("index", data_r51.index)("totalCount", data_r51.totalCount)("viewMode", data_r51.viewMode)("focusAreaName", data_r51.focusAreaName)("@fadeIn", undefined);
|
|
43508
43884
|
} }
|
|
43509
43885
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_36_Template(rf, ctx) { if (rf & 1) {
|
|
43510
|
-
i0.ɵɵelement(0, "symphiq-focus-area-
|
|
43886
|
+
i0.ɵɵelement(0, "symphiq-focus-area-strengths-list-modal-content", 32);
|
|
43511
43887
|
} if (rf & 2) {
|
|
43512
43888
|
const data_r52 = ctx;
|
|
43513
|
-
i0.ɵɵproperty("
|
|
43889
|
+
i0.ɵɵproperty("strengths", data_r52.strengths)("viewMode", data_r52.viewMode)("categoryTitle", data_r52.categoryTitle)("@fadeIn", undefined);
|
|
43514
43890
|
} }
|
|
43515
43891
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_37_Template(rf, ctx) { if (rf & 1) {
|
|
43516
|
-
i0.ɵɵelement(0, "symphiq-focus-area-
|
|
43892
|
+
i0.ɵɵelement(0, "symphiq-focus-area-gaps-list-modal-content", 33);
|
|
43517
43893
|
} if (rf & 2) {
|
|
43518
43894
|
const data_r53 = ctx;
|
|
43519
|
-
i0.ɵɵproperty("
|
|
43895
|
+
i0.ɵɵproperty("gaps", data_r53.gaps)("viewMode", data_r53.viewMode)("categoryTitle", data_r53.categoryTitle)("@fadeIn", undefined);
|
|
43520
43896
|
} }
|
|
43521
43897
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_38_Template(rf, ctx) { if (rf & 1) {
|
|
43522
|
-
i0.ɵɵelement(0, "symphiq-focus-area-
|
|
43898
|
+
i0.ɵɵelement(0, "symphiq-focus-area-opportunities-list-modal-content", 34);
|
|
43523
43899
|
} if (rf & 2) {
|
|
43524
43900
|
const data_r54 = ctx;
|
|
43525
|
-
|
|
43526
|
-
i0.ɵɵproperty("strength", data_r54.strength)("viewMode", data_r54.viewMode)("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("currentModalState", ctx_r1.getCurrentModalState())("@fadeIn", undefined);
|
|
43901
|
+
i0.ɵɵproperty("opportunities", data_r54.opportunities)("viewMode", data_r54.viewMode)("categoryTitle", data_r54.categoryTitle)("@fadeIn", undefined);
|
|
43527
43902
|
} }
|
|
43528
43903
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_39_Template(rf, ctx) { if (rf & 1) {
|
|
43529
|
-
i0.ɵɵelement(0, "symphiq-focus-area-
|
|
43904
|
+
i0.ɵɵelement(0, "symphiq-focus-area-strength-detail-modal-content", 35);
|
|
43530
43905
|
} if (rf & 2) {
|
|
43531
43906
|
const data_r55 = ctx;
|
|
43532
43907
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43533
|
-
i0.ɵɵproperty("
|
|
43908
|
+
i0.ɵɵproperty("strength", data_r55.strength)("viewMode", data_r55.viewMode)("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("currentModalState", ctx_r1.getCurrentModalState())("@fadeIn", undefined);
|
|
43534
43909
|
} }
|
|
43535
43910
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_40_Template(rf, ctx) { if (rf & 1) {
|
|
43536
|
-
i0.ɵɵelement(0, "symphiq-focus-area-
|
|
43911
|
+
i0.ɵɵelement(0, "symphiq-focus-area-gap-detail-modal-content", 36);
|
|
43537
43912
|
} if (rf & 2) {
|
|
43538
43913
|
const data_r56 = ctx;
|
|
43539
43914
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43540
|
-
i0.ɵɵproperty("
|
|
43915
|
+
i0.ɵɵproperty("gap", data_r56.gap)("viewMode", data_r56.viewMode)("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("currentModalState", ctx_r1.getCurrentModalState())("@fadeIn", undefined);
|
|
43541
43916
|
} }
|
|
43542
43917
|
function ProfileAnalysisModalComponent_Conditional_0_Conditional_41_Template(rf, ctx) { if (rf & 1) {
|
|
43918
|
+
i0.ɵɵelement(0, "symphiq-focus-area-opportunity-detail-modal-content", 37);
|
|
43919
|
+
} if (rf & 2) {
|
|
43920
|
+
const data_r57 = ctx;
|
|
43921
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
43922
|
+
i0.ɵɵproperty("opportunity", data_r57.opportunity)("viewMode", data_r57.viewMode)("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("currentModalState", ctx_r1.getCurrentModalState())("@fadeIn", undefined);
|
|
43923
|
+
} }
|
|
43924
|
+
function ProfileAnalysisModalComponent_Conditional_0_Conditional_42_Template(rf, ctx) { if (rf & 1) {
|
|
43543
43925
|
i0.ɵɵprojection(0);
|
|
43544
43926
|
} }
|
|
43545
43927
|
function ProfileAnalysisModalComponent_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
@@ -43551,7 +43933,7 @@ function ProfileAnalysisModalComponent_Conditional_0_Template(rf, ctx) { if (rf
|
|
|
43551
43933
|
i0.ɵɵlistener("click", function ProfileAnalysisModalComponent_Conditional_0_Template_div_click_3_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView($event.stopPropagation()); });
|
|
43552
43934
|
i0.ɵɵelementStart(4, "div", 6)(5, "div", 7)(6, "div", 8);
|
|
43553
43935
|
i0.ɵɵconditionalCreate(7, ProfileAnalysisModalComponent_Conditional_0_Conditional_7_Template, 6, 5, "div", 9);
|
|
43554
|
-
i0.ɵɵconditionalCreate(8, ProfileAnalysisModalComponent_Conditional_0_Conditional_8_Template,
|
|
43936
|
+
i0.ɵɵconditionalCreate(8, ProfileAnalysisModalComponent_Conditional_0_Conditional_8_Template, 5, 4, "div", 10);
|
|
43555
43937
|
i0.ɵɵelementStart(9, "h3", 11);
|
|
43556
43938
|
i0.ɵɵtext(10);
|
|
43557
43939
|
i0.ɵɵelementEnd()();
|
|
@@ -43564,16 +43946,17 @@ function ProfileAnalysisModalComponent_Conditional_0_Template(rf, ctx) { if (rf
|
|
|
43564
43946
|
i0.ɵɵelementEnd()()()();
|
|
43565
43947
|
i0.ɵɵnamespaceHTML();
|
|
43566
43948
|
i0.ɵɵelementStart(15, "div", 16, 1);
|
|
43567
|
-
i0.ɵɵconditionalCreate(17, ProfileAnalysisModalComponent_Conditional_0_Conditional_17_Template, 1, 7, "symphiq-goal-detail-modal-content", 17)(18, ProfileAnalysisModalComponent_Conditional_0_Conditional_18_Template,
|
|
43949
|
+
i0.ɵɵconditionalCreate(17, ProfileAnalysisModalComponent_Conditional_0_Conditional_17_Template, 1, 7, "symphiq-goal-detail-modal-content", 17)(18, ProfileAnalysisModalComponent_Conditional_0_Conditional_18_Template, 1, 5, "symphiq-goal-objectives-modal-content", 18)(19, ProfileAnalysisModalComponent_Conditional_0_Conditional_19_Template, 4, 1, "div", 19)(20, ProfileAnalysisModalComponent_Conditional_0_Conditional_20_Template, 4, 1, "div", 19)(21, ProfileAnalysisModalComponent_Conditional_0_Conditional_21_Template, 4, 1, "div", 20)(22, ProfileAnalysisModalComponent_Conditional_0_Conditional_22_Template, 4, 1, "div", 20)(23, ProfileAnalysisModalComponent_Conditional_0_Conditional_23_Template, 1, 15, "symphiq-recommendation-card", 21)(24, ProfileAnalysisModalComponent_Conditional_0_Conditional_24_Template, 1, 6, "symphiq-item-detail-modal", 22)(25, ProfileAnalysisModalComponent_Conditional_0_Conditional_25_Template, 3, 1, "div", 19)(26, ProfileAnalysisModalComponent_Conditional_0_Conditional_26_Template, 1, 8, "symphiq-funnel-analysis-metric-card", 23)(27, ProfileAnalysisModalComponent_Conditional_0_Conditional_27_Template, 4, 1, "div", 19)(28, ProfileAnalysisModalComponent_Conditional_0_Conditional_28_Template, 1, 11, "symphiq-funnel-analysis-insight-card", 24)(29, ProfileAnalysisModalComponent_Conditional_0_Conditional_29_Template, 7, 6, "div", 25)(30, ProfileAnalysisModalComponent_Conditional_0_Conditional_30_Template, 1, 3, "symphiq-key-strengths-list-modal-content", 26)(31, ProfileAnalysisModalComponent_Conditional_0_Conditional_31_Template, 1, 3, "symphiq-critical-gaps-list-modal-content", 27)(32, ProfileAnalysisModalComponent_Conditional_0_Conditional_32_Template, 1, 3, "symphiq-key-strength-detail-modal-content", 28)(33, ProfileAnalysisModalComponent_Conditional_0_Conditional_33_Template, 1, 3, "symphiq-critical-gap-detail-modal-content", 29)(34, ProfileAnalysisModalComponent_Conditional_0_Conditional_34_Template, 1, 4, "symphiq-top-priorities-list-modal-content", 30)(35, ProfileAnalysisModalComponent_Conditional_0_Conditional_35_Template, 1, 6, "symphiq-top-priority-detail-modal-content", 31)(36, ProfileAnalysisModalComponent_Conditional_0_Conditional_36_Template, 1, 4, "symphiq-focus-area-strengths-list-modal-content", 32)(37, ProfileAnalysisModalComponent_Conditional_0_Conditional_37_Template, 1, 4, "symphiq-focus-area-gaps-list-modal-content", 33)(38, ProfileAnalysisModalComponent_Conditional_0_Conditional_38_Template, 1, 4, "symphiq-focus-area-opportunities-list-modal-content", 34)(39, ProfileAnalysisModalComponent_Conditional_0_Conditional_39_Template, 1, 6, "symphiq-focus-area-strength-detail-modal-content", 35)(40, ProfileAnalysisModalComponent_Conditional_0_Conditional_40_Template, 1, 6, "symphiq-focus-area-gap-detail-modal-content", 36)(41, ProfileAnalysisModalComponent_Conditional_0_Conditional_41_Template, 1, 6, "symphiq-focus-area-opportunity-detail-modal-content", 37)(42, ProfileAnalysisModalComponent_Conditional_0_Conditional_42_Template, 1, 0);
|
|
43568
43950
|
i0.ɵɵelementEnd()()();
|
|
43569
43951
|
} if (rf & 2) {
|
|
43570
|
-
let
|
|
43571
|
-
let
|
|
43952
|
+
let tmp_17_0;
|
|
43953
|
+
let tmp_20_0;
|
|
43572
43954
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
43573
43955
|
i0.ɵɵstyleProp("z-index", ctx_r1.baseZIndex())("visibility", ctx_r1.modalReady() ? "visible" : "hidden");
|
|
43574
43956
|
i0.ɵɵadvance(2);
|
|
43575
43957
|
i0.ɵɵstyleProp("z-index", ctx_r1.backdropZIndex());
|
|
43576
|
-
i0.ɵɵ
|
|
43958
|
+
i0.ɵɵclassProp("opacity-0", !ctx_r1.modalReady())("opacity-100", ctx_r1.modalReady());
|
|
43959
|
+
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "bg-slate-900/15" : "bg-slate-950/25");
|
|
43577
43960
|
i0.ɵɵadvance();
|
|
43578
43961
|
i0.ɵɵstyleProp("z-index", ctx_r1.contentZIndex());
|
|
43579
43962
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "bg-white/90 border-slate-200/50" : "bg-slate-800/90 border-slate-700/50")("@slideUpFade", undefined);
|
|
@@ -43588,13 +43971,13 @@ function ProfileAnalysisModalComponent_Conditional_0_Template(rf, ctx) { if (rf
|
|
|
43588
43971
|
i0.ɵɵadvance();
|
|
43589
43972
|
i0.ɵɵtextInterpolate1(" ", ctx_r1.modalTitle(), " ");
|
|
43590
43973
|
i0.ɵɵadvance();
|
|
43591
|
-
i0.ɵɵconditional((
|
|
43974
|
+
i0.ɵɵconditional((tmp_17_0 = ctx_r1.getGoalChips()) ? 11 : -1, tmp_17_0);
|
|
43592
43975
|
i0.ɵɵadvance();
|
|
43593
43976
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-600 hover:text-slate-900 hover:bg-slate-100" : "text-slate-400 hover:text-white hover:bg-slate-700");
|
|
43594
43977
|
i0.ɵɵadvance(3);
|
|
43595
43978
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "bg-white/30" : "bg-slate-800/30");
|
|
43596
43979
|
i0.ɵɵadvance(2);
|
|
43597
|
-
i0.ɵɵconditional((
|
|
43980
|
+
i0.ɵɵconditional((tmp_20_0 = ctx_r1.modalType() === "goal-detail" && ctx_r1.getGoalDetailData()) ? 17 : (tmp_20_0 = ctx_r1.modalType() === "goal-objectives" && ctx_r1.getGoalObjectivesData()) ? 18 : (tmp_20_0 = ctx_r1.modalType() === "goal-insights-list" && ctx_r1.getInsightsListData()) ? 19 : (tmp_20_0 = ctx_r1.modalType() === "recommendation-insights-list" && ctx_r1.getRecommendationInsightsListData()) ? 20 : (tmp_20_0 = ctx_r1.modalType() === "goal-business-insights-list" && ctx_r1.getBusinessInsightsListData()) ? 21 : (tmp_20_0 = ctx_r1.modalType() === "recommendation-business-insights-list" && ctx_r1.getRecommendationBusinessInsightsListData()) ? 22 : (tmp_20_0 = ctx_r1.modalType() === "business-insight-detail" && ctx_r1.getBusinessInsightDetailData()) ? 23 : (tmp_20_0 = ctx_r1.modalType() === "item-detail" && ctx_r1.itemDetailData()) ? 24 : (tmp_20_0 = ctx_r1.modalType() === "metrics-list" && ctx_r1.getMetricsListData()) ? 25 : (tmp_20_0 = ctx_r1.modalType() === "metric" && ctx_r1.getMetricData()) ? 26 : (tmp_20_0 = ctx_r1.modalType() === "charts-list" && ctx_r1.getChartsListData()) ? 27 : (tmp_20_0 = ctx_r1.modalType() === "insight" && ctx_r1.getInsightData()) ? 28 : (tmp_20_0 = ctx_r1.modalType() === "chart" && ctx_r1.getChartData()) ? 29 : (tmp_20_0 = ctx_r1.modalType() === "key-strengths-list" && ctx_r1.getKeyStrengthsListData()) ? 30 : (tmp_20_0 = ctx_r1.modalType() === "critical-gaps-list" && ctx_r1.getCriticalGapsListData()) ? 31 : (tmp_20_0 = ctx_r1.modalType() === "key-strength-detail" && ctx_r1.getKeyStrengthDetailData()) ? 32 : (tmp_20_0 = ctx_r1.modalType() === "critical-gap-detail" && ctx_r1.getCriticalGapDetailData()) ? 33 : (tmp_20_0 = ctx_r1.modalType() === "top-priorities-list" && ctx_r1.getTopPrioritiesListData()) ? 34 : (tmp_20_0 = ctx_r1.modalType() === "top-priority-detail" && ctx_r1.getTopPriorityDetailData()) ? 35 : (tmp_20_0 = ctx_r1.modalType() === "focus-area-strengths-list" && ctx_r1.getFocusAreaStrengthsListData()) ? 36 : (tmp_20_0 = ctx_r1.modalType() === "focus-area-gaps-list" && ctx_r1.getFocusAreaGapsListData()) ? 37 : (tmp_20_0 = ctx_r1.modalType() === "focus-area-opportunities-list" && ctx_r1.getFocusAreaOpportunitiesListData()) ? 38 : (tmp_20_0 = ctx_r1.modalType() === "focus-area-strength-detail" && ctx_r1.getFocusAreaStrengthDetailData()) ? 39 : (tmp_20_0 = ctx_r1.modalType() === "focus-area-gap-detail" && ctx_r1.getFocusAreaGapDetailData()) ? 40 : (tmp_20_0 = ctx_r1.modalType() === "focus-area-opportunity-detail" && ctx_r1.getFocusAreaOpportunityDetailData()) ? 41 : 42, tmp_20_0);
|
|
43598
43981
|
} }
|
|
43599
43982
|
class ProfileAnalysisModalComponent {
|
|
43600
43983
|
constructor() {
|
|
@@ -43635,6 +44018,7 @@ class ProfileAnalysisModalComponent {
|
|
|
43635
44018
|
this.hostElement = inject(ElementRef);
|
|
43636
44019
|
this.isOpen = signal(false, ...(ngDevMode ? [{ debugName: "isOpen" }] : []));
|
|
43637
44020
|
this.modalReady = signal(false, ...(ngDevMode ? [{ debugName: "modalReady" }] : []));
|
|
44021
|
+
this.isFreshOpen = signal(false, ...(ngDevMode ? [{ debugName: "isFreshOpen" }] : []));
|
|
43638
44022
|
this.modalMovedToBody = false;
|
|
43639
44023
|
this.modalType = signal(null, ...(ngDevMode ? [{ debugName: "modalType" }] : []));
|
|
43640
44024
|
this.modalTitle = signal('', ...(ngDevMode ? [{ debugName: "modalTitle" }] : []));
|
|
@@ -44201,12 +44585,35 @@ class ProfileAnalysisModalComponent {
|
|
|
44201
44585
|
}
|
|
44202
44586
|
return deduplicatedBreadcrumbs;
|
|
44203
44587
|
}, ...(ngDevMode ? [{ debugName: "getBreadcrumbs" }] : []));
|
|
44588
|
+
this.sourceAnalysisType = computed(() => {
|
|
44589
|
+
const data = this.modalData();
|
|
44590
|
+
if (data && 'sourceAnalysisType' in data) {
|
|
44591
|
+
return data.sourceAnalysisType;
|
|
44592
|
+
}
|
|
44593
|
+
return undefined;
|
|
44594
|
+
}, ...(ngDevMode ? [{ debugName: "sourceAnalysisType" }] : []));
|
|
44595
|
+
this.sourceAnalysisTypeLabel = computed(() => {
|
|
44596
|
+
const type = this.sourceAnalysisType();
|
|
44597
|
+
if (!type)
|
|
44598
|
+
return null;
|
|
44599
|
+
switch (type) {
|
|
44600
|
+
case ProfileAnalysisTypeEnum.SHOP:
|
|
44601
|
+
return 'Shop Analysis';
|
|
44602
|
+
case ProfileAnalysisTypeEnum.FOCUS_AREA:
|
|
44603
|
+
return 'Focus Area';
|
|
44604
|
+
case ProfileAnalysisTypeEnum.METRIC:
|
|
44605
|
+
return 'Metric Analysis';
|
|
44606
|
+
default:
|
|
44607
|
+
return null;
|
|
44608
|
+
}
|
|
44609
|
+
}, ...(ngDevMode ? [{ debugName: "sourceAnalysisTypeLabel" }] : []));
|
|
44204
44610
|
this.modalTypeLabel = computed(() => {
|
|
44205
44611
|
const type = this.modalType();
|
|
44612
|
+
const sourceType = this.sourceAnalysisType();
|
|
44206
44613
|
switch (type) {
|
|
44207
44614
|
case 'goal-detail':
|
|
44208
44615
|
case 'goal-objectives':
|
|
44209
|
-
return 'GOAL';
|
|
44616
|
+
return sourceType ? 'SOURCE GOAL' : 'GOAL';
|
|
44210
44617
|
case 'objective-strategies':
|
|
44211
44618
|
return 'OBJECTIVE';
|
|
44212
44619
|
case 'strategy-recommendations':
|
|
@@ -44259,23 +44666,18 @@ class ProfileAnalysisModalComponent {
|
|
|
44259
44666
|
return this.modalService['modalState'].value;
|
|
44260
44667
|
}, ...(ngDevMode ? [{ debugName: "getCurrentModalState" }] : []));
|
|
44261
44668
|
effect(() => {
|
|
44262
|
-
const
|
|
44263
|
-
if (
|
|
44669
|
+
const freshOpen = this.isFreshOpen();
|
|
44670
|
+
if (freshOpen) {
|
|
44264
44671
|
this.modalReady.set(false);
|
|
44265
44672
|
this.logContainingBlockInfo();
|
|
44266
|
-
console.log('[ProfileAnalysisModal] Modal opening - z-index info:', {
|
|
44267
|
-
modalType: this.modalType(),
|
|
44268
|
-
modalDepth: this.modalDepth(),
|
|
44269
|
-
baseZIndex: this.baseZIndex(),
|
|
44270
|
-
contentZIndex: this.contentZIndex(),
|
|
44271
|
-
previousStateType: this.previousState()?.type
|
|
44272
|
-
});
|
|
44273
44673
|
setTimeout(() => {
|
|
44274
44674
|
this.moveModalToBody();
|
|
44275
44675
|
this.modalReady.set(true);
|
|
44676
|
+
this.isFreshOpen.set(false);
|
|
44276
44677
|
}, 0);
|
|
44277
44678
|
}
|
|
44278
|
-
|
|
44679
|
+
const open = this.isOpen();
|
|
44680
|
+
if (!open) {
|
|
44279
44681
|
this.modalReady.set(false);
|
|
44280
44682
|
this.returnModalToHost();
|
|
44281
44683
|
}
|
|
@@ -44325,7 +44727,6 @@ class ProfileAnalysisModalComponent {
|
|
|
44325
44727
|
// These should be handled by UnifiedDashboardModalComponent
|
|
44326
44728
|
const unifiedDashboardOwnedTypes = ['unified-goal-detail', 'unified-goal-objectives', 'unified-goal-related-metrics'];
|
|
44327
44729
|
if (unifiedDashboardOwnedTypes.includes(state.type || '')) {
|
|
44328
|
-
console.log('[ProfileAnalysisModal] Closing - unified dashboard type detected:', state.type);
|
|
44329
44730
|
this.isOpen.set(false);
|
|
44330
44731
|
setTimeout(() => {
|
|
44331
44732
|
this.modalData.set(null);
|
|
@@ -44343,7 +44744,6 @@ class ProfileAnalysisModalComponent {
|
|
|
44343
44744
|
const isFromUnifiedFlow = state.previousState?.type?.startsWith('unified-goal-') ||
|
|
44344
44745
|
state.navigationStack?.some(s => s.type?.startsWith('unified-goal-'));
|
|
44345
44746
|
if (isFromUnifiedFlow) {
|
|
44346
|
-
console.log('[ProfileAnalysisModal] Closing - unified flow detected for:', state.type);
|
|
44347
44747
|
this.isOpen.set(false);
|
|
44348
44748
|
setTimeout(() => {
|
|
44349
44749
|
this.modalData.set(null);
|
|
@@ -44360,15 +44760,17 @@ class ProfileAnalysisModalComponent {
|
|
|
44360
44760
|
this.modalData.set(data);
|
|
44361
44761
|
this.modalTitle.set(data.goal.title || 'Goal');
|
|
44362
44762
|
this.modalType.set('goal-detail');
|
|
44363
|
-
this.
|
|
44364
|
-
|
|
44763
|
+
this.openModalFresh();
|
|
44764
|
+
const stack = state.navigationStack || [];
|
|
44765
|
+
console.log('[ProfileAnalysisModal] goal-detail opened, navigationStack:', stack.length, 'items', stack.map(s => s.type));
|
|
44766
|
+
this.navigationStack.set(stack);
|
|
44365
44767
|
}
|
|
44366
44768
|
else if (state.type === 'goal-objectives' && state.data) {
|
|
44367
44769
|
const data = state.data;
|
|
44368
44770
|
this.modalData.set(data);
|
|
44369
44771
|
this.modalTitle.set(data.goal.title || 'Goal');
|
|
44370
44772
|
this.modalType.set('goal-objectives');
|
|
44371
|
-
this.
|
|
44773
|
+
this.openModalFresh();
|
|
44372
44774
|
const stack = state.navigationStack || [];
|
|
44373
44775
|
this.navigationStack.set(stack);
|
|
44374
44776
|
}
|
|
@@ -44377,7 +44779,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44377
44779
|
this.modalData.set(data);
|
|
44378
44780
|
this.modalTitle.set(data.objective.title || 'Objective');
|
|
44379
44781
|
this.modalType.set('objective-strategies');
|
|
44380
|
-
this.
|
|
44782
|
+
this.openModalFresh();
|
|
44381
44783
|
const stack = state.navigationStack || [];
|
|
44382
44784
|
this.navigationStack.set(stack);
|
|
44383
44785
|
}
|
|
@@ -44386,7 +44788,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44386
44788
|
this.modalData.set(data);
|
|
44387
44789
|
this.modalTitle.set(data.strategy.title || 'Strategy');
|
|
44388
44790
|
this.modalType.set('strategy-recommendations');
|
|
44389
|
-
this.
|
|
44791
|
+
this.openModalFresh();
|
|
44390
44792
|
const stack = state.navigationStack || [];
|
|
44391
44793
|
this.navigationStack.set(stack);
|
|
44392
44794
|
}
|
|
@@ -44395,7 +44797,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44395
44797
|
this.modalData.set(data);
|
|
44396
44798
|
this.modalTitle.set(data.category.title || 'Category Details');
|
|
44397
44799
|
this.modalType.set('category-detail');
|
|
44398
|
-
this.
|
|
44800
|
+
this.openModalFresh();
|
|
44399
44801
|
this.navigationStack.set([]);
|
|
44400
44802
|
}
|
|
44401
44803
|
else if (state.type === 'strength-detail' && state.data) {
|
|
@@ -44403,7 +44805,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44403
44805
|
this.modalData.set(data);
|
|
44404
44806
|
this.modalTitle.set(data.strength.capability || 'Strength Details');
|
|
44405
44807
|
this.modalType.set('strength-detail');
|
|
44406
|
-
this.
|
|
44808
|
+
this.openModalFresh();
|
|
44407
44809
|
const stack = state.navigationStack || [];
|
|
44408
44810
|
this.navigationStack.set(stack);
|
|
44409
44811
|
}
|
|
@@ -44412,7 +44814,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44412
44814
|
this.modalData.set(data);
|
|
44413
44815
|
this.modalTitle.set(data.gap.capability || 'Gap Details');
|
|
44414
44816
|
this.modalType.set('gap-detail');
|
|
44415
|
-
this.
|
|
44817
|
+
this.openModalFresh();
|
|
44416
44818
|
const stack = state.navigationStack || [];
|
|
44417
44819
|
this.navigationStack.set(stack);
|
|
44418
44820
|
}
|
|
@@ -44421,7 +44823,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44421
44823
|
this.modalData.set(data);
|
|
44422
44824
|
this.modalTitle.set(data.opportunity.opportunity || 'Opportunity Details');
|
|
44423
44825
|
this.modalType.set('opportunity-detail');
|
|
44424
|
-
this.
|
|
44826
|
+
this.openModalFresh();
|
|
44425
44827
|
const stack = state.navigationStack || [];
|
|
44426
44828
|
this.navigationStack.set(stack);
|
|
44427
44829
|
}
|
|
@@ -44430,7 +44832,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44430
44832
|
this.modalData.set(data);
|
|
44431
44833
|
this.modalTitle.set(`Related Insights for ${data.goalContext.title}`);
|
|
44432
44834
|
this.modalType.set('goal-insights-list');
|
|
44433
|
-
this.
|
|
44835
|
+
this.openModalFresh();
|
|
44434
44836
|
const stack = state.navigationStack || [];
|
|
44435
44837
|
this.navigationStack.set(stack);
|
|
44436
44838
|
this.currentCharts.set(state.charts || []);
|
|
@@ -44440,7 +44842,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44440
44842
|
this.modalData.set(data);
|
|
44441
44843
|
this.modalTitle.set(`Related Insights for ${data.recommendationContext.title}`);
|
|
44442
44844
|
this.modalType.set('recommendation-insights-list');
|
|
44443
|
-
this.
|
|
44845
|
+
this.openModalFresh();
|
|
44444
44846
|
const stack = state.navigationStack || [];
|
|
44445
44847
|
this.navigationStack.set(stack);
|
|
44446
44848
|
this.currentCharts.set(state.charts || []);
|
|
@@ -44450,7 +44852,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44450
44852
|
this.modalData.set(data);
|
|
44451
44853
|
this.modalTitle.set(`Related Business Insights For ${data.recommendationContext.title}`);
|
|
44452
44854
|
this.modalType.set('recommendation-business-insights-list');
|
|
44453
|
-
this.
|
|
44855
|
+
this.openModalFresh();
|
|
44454
44856
|
const stack = state.navigationStack || [];
|
|
44455
44857
|
this.navigationStack.set(stack);
|
|
44456
44858
|
this.currentCharts.set([]);
|
|
@@ -44460,7 +44862,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44460
44862
|
this.modalData.set(data);
|
|
44461
44863
|
this.modalTitle.set(`Related Business Insights For ${data.goalContext.title}`);
|
|
44462
44864
|
this.modalType.set('goal-business-insights-list');
|
|
44463
|
-
this.
|
|
44865
|
+
this.openModalFresh();
|
|
44464
44866
|
const stack = state.navigationStack || [];
|
|
44465
44867
|
this.navigationStack.set(stack);
|
|
44466
44868
|
this.currentCharts.set([]);
|
|
@@ -44470,7 +44872,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44470
44872
|
this.modalData.set(data);
|
|
44471
44873
|
this.modalTitle.set(data.recommendation.title || data.recommendation.description || 'Business Insight');
|
|
44472
44874
|
this.modalType.set('business-insight-detail');
|
|
44473
|
-
this.
|
|
44875
|
+
this.openModalFresh();
|
|
44474
44876
|
const stack = state.navigationStack || [];
|
|
44475
44877
|
this.navigationStack.set(stack);
|
|
44476
44878
|
this.currentCharts.set([]);
|
|
@@ -44480,7 +44882,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44480
44882
|
this.modalData.set(data);
|
|
44481
44883
|
this.modalTitle.set('Key Strengths');
|
|
44482
44884
|
this.modalType.set('key-strengths-list');
|
|
44483
|
-
this.
|
|
44885
|
+
this.openModalFresh();
|
|
44484
44886
|
this.navigationStack.set([]);
|
|
44485
44887
|
this.currentCharts.set([]);
|
|
44486
44888
|
}
|
|
@@ -44489,7 +44891,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44489
44891
|
this.modalData.set(data);
|
|
44490
44892
|
this.modalTitle.set('Critical Gaps');
|
|
44491
44893
|
this.modalType.set('critical-gaps-list');
|
|
44492
|
-
this.
|
|
44894
|
+
this.openModalFresh();
|
|
44493
44895
|
this.navigationStack.set([]);
|
|
44494
44896
|
this.currentCharts.set([]);
|
|
44495
44897
|
}
|
|
@@ -44498,7 +44900,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44498
44900
|
this.modalData.set(data);
|
|
44499
44901
|
this.modalTitle.set(data.strength.area || 'Strength Details');
|
|
44500
44902
|
this.modalType.set('key-strength-detail');
|
|
44501
|
-
this.
|
|
44903
|
+
this.openModalFresh();
|
|
44502
44904
|
const stack = state.navigationStack || [];
|
|
44503
44905
|
this.navigationStack.set(stack);
|
|
44504
44906
|
this.currentCharts.set([]);
|
|
@@ -44508,7 +44910,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44508
44910
|
this.modalData.set(data);
|
|
44509
44911
|
this.modalTitle.set(data.gap.area || 'Gap Details');
|
|
44510
44912
|
this.modalType.set('critical-gap-detail');
|
|
44511
|
-
this.
|
|
44913
|
+
this.openModalFresh();
|
|
44512
44914
|
const stack = state.navigationStack || [];
|
|
44513
44915
|
this.navigationStack.set(stack);
|
|
44514
44916
|
this.currentCharts.set([]);
|
|
@@ -44518,7 +44920,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44518
44920
|
this.modalData.set(data);
|
|
44519
44921
|
this.modalTitle.set('Top Priorities');
|
|
44520
44922
|
this.modalType.set('top-priorities-list');
|
|
44521
|
-
this.
|
|
44923
|
+
this.openModalFresh();
|
|
44522
44924
|
this.navigationStack.set([]);
|
|
44523
44925
|
this.currentCharts.set([]);
|
|
44524
44926
|
}
|
|
@@ -44527,7 +44929,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44527
44929
|
this.modalData.set(data);
|
|
44528
44930
|
this.modalTitle.set(data.priority.priority || 'Priority Details');
|
|
44529
44931
|
this.modalType.set('top-priority-detail');
|
|
44530
|
-
this.
|
|
44932
|
+
this.openModalFresh();
|
|
44531
44933
|
const stack = state.navigationStack || [];
|
|
44532
44934
|
this.navigationStack.set(stack);
|
|
44533
44935
|
this.currentCharts.set([]);
|
|
@@ -44537,7 +44939,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44537
44939
|
this.modalData.set(data);
|
|
44538
44940
|
this.modalTitle.set('Strengths');
|
|
44539
44941
|
this.modalType.set('focus-area-strengths-list');
|
|
44540
|
-
this.
|
|
44942
|
+
this.openModalFresh();
|
|
44541
44943
|
this.navigationStack.set([]);
|
|
44542
44944
|
this.currentCharts.set([]);
|
|
44543
44945
|
}
|
|
@@ -44546,7 +44948,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44546
44948
|
this.modalData.set(data);
|
|
44547
44949
|
this.modalTitle.set('Gaps to Address');
|
|
44548
44950
|
this.modalType.set('focus-area-gaps-list');
|
|
44549
|
-
this.
|
|
44951
|
+
this.openModalFresh();
|
|
44550
44952
|
this.navigationStack.set([]);
|
|
44551
44953
|
this.currentCharts.set([]);
|
|
44552
44954
|
}
|
|
@@ -44555,7 +44957,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44555
44957
|
this.modalData.set(data);
|
|
44556
44958
|
this.modalTitle.set('Opportunities');
|
|
44557
44959
|
this.modalType.set('focus-area-opportunities-list');
|
|
44558
|
-
this.
|
|
44960
|
+
this.openModalFresh();
|
|
44559
44961
|
this.navigationStack.set([]);
|
|
44560
44962
|
this.currentCharts.set([]);
|
|
44561
44963
|
}
|
|
@@ -44564,7 +44966,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44564
44966
|
this.modalData.set(data);
|
|
44565
44967
|
this.modalTitle.set(data.strength.capability || 'Strength Details');
|
|
44566
44968
|
this.modalType.set('focus-area-strength-detail');
|
|
44567
|
-
this.
|
|
44969
|
+
this.openModalFresh();
|
|
44568
44970
|
const stack = state.navigationStack || [];
|
|
44569
44971
|
this.navigationStack.set(stack);
|
|
44570
44972
|
this.currentCharts.set([]);
|
|
@@ -44574,7 +44976,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44574
44976
|
this.modalData.set(data);
|
|
44575
44977
|
this.modalTitle.set(data.gap.capability || 'Gap Details');
|
|
44576
44978
|
this.modalType.set('focus-area-gap-detail');
|
|
44577
|
-
this.
|
|
44979
|
+
this.openModalFresh();
|
|
44578
44980
|
const stack = state.navigationStack || [];
|
|
44579
44981
|
this.navigationStack.set(stack);
|
|
44580
44982
|
this.currentCharts.set([]);
|
|
@@ -44584,7 +44986,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44584
44986
|
this.modalData.set(data);
|
|
44585
44987
|
this.modalTitle.set(data.opportunity.opportunity || 'Opportunity Details');
|
|
44586
44988
|
this.modalType.set('focus-area-opportunity-detail');
|
|
44587
|
-
this.
|
|
44989
|
+
this.openModalFresh();
|
|
44588
44990
|
const stack = state.navigationStack || [];
|
|
44589
44991
|
this.navigationStack.set(stack);
|
|
44590
44992
|
this.currentCharts.set([]);
|
|
@@ -44597,13 +44999,6 @@ class ProfileAnalysisModalComponent {
|
|
|
44597
44999
|
depthFromPrevState++;
|
|
44598
45000
|
walkState = walkState.previousState;
|
|
44599
45001
|
}
|
|
44600
|
-
console.log('[ProfileAnalysisModal] metrics-list state received:', {
|
|
44601
|
-
previousStateExists: !!state.previousState,
|
|
44602
|
-
previousStateType: state.previousState?.type,
|
|
44603
|
-
depthFromPrevState,
|
|
44604
|
-
navigationStackLength: state.navigationStack?.length,
|
|
44605
|
-
navigationStackTypes: state.navigationStack?.map(s => s.type)
|
|
44606
|
-
});
|
|
44607
45002
|
this.modalData.set(data);
|
|
44608
45003
|
let title = 'Related Metrics';
|
|
44609
45004
|
if (data.recommendationContext?.title) {
|
|
@@ -44614,26 +45009,18 @@ class ProfileAnalysisModalComponent {
|
|
|
44614
45009
|
}
|
|
44615
45010
|
this.modalTitle.set(title);
|
|
44616
45011
|
this.modalType.set('metrics-list');
|
|
44617
|
-
this.
|
|
45012
|
+
this.openModalFresh();
|
|
44618
45013
|
const stack = state.navigationStack || [];
|
|
44619
45014
|
this.navigationStack.set(stack);
|
|
44620
45015
|
this.currentCharts.set(state.charts || []);
|
|
44621
45016
|
}
|
|
44622
45017
|
else if (state.type === 'metric' && state.data) {
|
|
44623
45018
|
const metric = state.data;
|
|
44624
|
-
console.log('[ProfileAnalysisModal] Handling metric state:', {
|
|
44625
|
-
metricName: metric.metric,
|
|
44626
|
-
chartsFromState: state.charts?.length || 0,
|
|
44627
|
-
chartIds: state.charts?.map(c => c.performanceItemId),
|
|
44628
|
-
allChartsInput: this.allCharts()?.length || 0,
|
|
44629
|
-
navigationStackLength: state.navigationStack?.length || 0,
|
|
44630
|
-
navigationStackTypes: state.navigationStack?.map(s => s.type)
|
|
44631
|
-
});
|
|
44632
45019
|
this.modalData.set(metric);
|
|
44633
45020
|
const formattedName = metric.metric ? this.metricFormatter.formatMetricName(metric.metric) : 'Metric Details';
|
|
44634
45021
|
this.modalTitle.set(formattedName);
|
|
44635
45022
|
this.modalType.set('metric');
|
|
44636
|
-
this.
|
|
45023
|
+
this.openModalFresh();
|
|
44637
45024
|
const stack = state.navigationStack || [];
|
|
44638
45025
|
this.navigationStack.set(stack);
|
|
44639
45026
|
this.currentCharts.set(state.charts || []);
|
|
@@ -44643,7 +45030,7 @@ class ProfileAnalysisModalComponent {
|
|
|
44643
45030
|
this.itemDetailData.set(data);
|
|
44644
45031
|
this.modalTitle.set(data.item.label || 'Item Details');
|
|
44645
45032
|
this.modalType.set('item-detail');
|
|
44646
|
-
this.
|
|
45033
|
+
this.openModalFresh();
|
|
44647
45034
|
const stack = state.navigationStack || [];
|
|
44648
45035
|
this.navigationStack.set(stack);
|
|
44649
45036
|
this.currentCharts.set([]);
|
|
@@ -44663,7 +45050,9 @@ class ProfileAnalysisModalComponent {
|
|
|
44663
45050
|
ngOnInit() {
|
|
44664
45051
|
}
|
|
44665
45052
|
hasNavigationHistory() {
|
|
44666
|
-
|
|
45053
|
+
const hasHistory = this.navigationStack().length > 0;
|
|
45054
|
+
console.log('[ProfileAnalysisModal] hasNavigationHistory:', hasHistory, 'stack length:', this.navigationStack().length);
|
|
45055
|
+
return hasHistory;
|
|
44667
45056
|
}
|
|
44668
45057
|
hasSourceContext() {
|
|
44669
45058
|
const currentData = this.modalData();
|
|
@@ -44721,6 +45110,16 @@ class ProfileAnalysisModalComponent {
|
|
|
44721
45110
|
}
|
|
44722
45111
|
return null;
|
|
44723
45112
|
}
|
|
45113
|
+
getGoalObjectivesData() {
|
|
45114
|
+
const data = this.modalData();
|
|
45115
|
+
console.log('[ProfileAnalysisModal] getGoalObjectivesData called, modalType:', this.modalType(), 'data:', data);
|
|
45116
|
+
if (this.modalType() === 'goal-objectives' && data && 'goal' in data && 'viewMode' in data) {
|
|
45117
|
+
const goalData = data;
|
|
45118
|
+
console.log('[ProfileAnalysisModal] getGoalObjectivesData returning goal with objectives:', goalData.goal.objectives?.length || 0);
|
|
45119
|
+
return goalData;
|
|
45120
|
+
}
|
|
45121
|
+
return null;
|
|
45122
|
+
}
|
|
44724
45123
|
getInsightsListData() {
|
|
44725
45124
|
const data = this.modalData();
|
|
44726
45125
|
if (data && 'insights' in data && 'goalContext' in data) {
|
|
@@ -45087,6 +45486,12 @@ class ProfileAnalysisModalComponent {
|
|
|
45087
45486
|
this.modalService.closeModal();
|
|
45088
45487
|
}
|
|
45089
45488
|
}
|
|
45489
|
+
openModalFresh() {
|
|
45490
|
+
if (!this.isOpen()) {
|
|
45491
|
+
this.isFreshOpen.set(true);
|
|
45492
|
+
}
|
|
45493
|
+
this.isOpen.set(true);
|
|
45494
|
+
}
|
|
45090
45495
|
extractGoalTitle() {
|
|
45091
45496
|
const stack = this.navigationStack();
|
|
45092
45497
|
for (const state of stack) {
|
|
@@ -45149,12 +45554,12 @@ class ProfileAnalysisModalComponent {
|
|
|
45149
45554
|
let _t;
|
|
45150
45555
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.modalContent = _t.first);
|
|
45151
45556
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.modalWrapper = _t.first);
|
|
45152
|
-
} }, inputs: { isLightMode: [1, "isLightMode"], allMetrics: [1, "allMetrics"], allInsights: [1, "allInsights"], allCharts: [1, "allCharts"], allBusinessInsights: [1, "allBusinessInsights"] }, ngContentSelectors: _c2$g, decls: 1, vars: 1, consts: [["modalWrapper", ""], ["modalContent", ""], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto", 3, "z-index", "visibility"], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto"], ["aria-hidden", "true", 1, "fixed", "inset-0", "backdrop-blur-sm", 3, "click", "ngClass"], [1, "relative", "w-full", "max-w-5xl", "rounded-2xl", "text-left", "overflow-hidden", "shadow-xl", "border", "backdrop-blur-xl", 3, "click", "ngClass"], [1, "px-6", "py-5", "border-b", "backdrop-blur-sm", 3, "ngClass"], [1, "flex", "items-start", "justify-between"], [1, "flex-1"], [1, "flex", "items-center", "gap-2", "text-sm", "mb-2", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "mb-2"], [1, "text-2xl", "font-bold", "leading-tight", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "ml-4"], ["type", "button", 1, "transition-all", "rounded-lg", "p-1", "hover:scale-110", "active:scale-90", "cursor-pointer", "z-[10001]", "relative", "ml-4", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M6 18L18 6M6 6l12 12"], [1, "px-6", "py-8", "max-h-[80vh]", "overflow-y-auto", "backdrop-blur-sm", 3, "ngClass"], [3, "goal", "viewMode", "allInsights", "allMetrics", "allBusinessInsights", "allCharts"], [1, "space-y-4"], [1, "space-y-6"], [3, "recommendation", "viewMode", "forceExpanded", "showNavigationChevron", "inModalContext", "isCompactMode", "fromProfileAnalysis", "animationIndex", "allMetrics", "allCharts", "allInsights", "currentModalState", "goalTitle", "objectiveTitle", "strategyTitle"], [3, "item", "viewMode", "sectionTitle", "subsectionTitle", "isCompactMode", "fromProfileAnalysis"], [3, "metric", "insights", "charts", "allCharts", "isLightMode", "isInModal", "currentModalState", "viewMode"], [3, "insight", "allMetrics", "charts", "allCharts", "allBusinessInsights", "isLightMode", "isInModal", "isLoading", "isCompactMode", "viewMode", "currentModalState"], [1, "chart-modal-content"], [3, "keyStrengths", "viewMode"], [3, "criticalGaps", "viewMode"], [3, "strength", "viewMode"], [3, "gap", "viewMode"], [3, "priorities", "viewMode", "focusAreaName"], [3, "priority", "index", "totalCount", "viewMode", "focusAreaName"], [3, "strengths", "viewMode", "categoryTitle"], [3, "gaps", "viewMode", "categoryTitle"], [3, "opportunities", "viewMode", "categoryTitle"], [3, "strength", "viewMode", "allMetrics", "allCharts", "currentModalState"], [3, "gap", "viewMode", "allMetrics", "allCharts", "currentModalState"], [3, "opportunity", "viewMode", "allMetrics", "allCharts", "currentModalState"], ["type", "button", 1, "p-1.5", "rounded-md", "transition-colors", "cursor-pointer", "hover:scale-110", "flex-shrink-0", 3, "click", "ngClass"], ["size", "w-4 h-4", 3, "icon"], [1, "flex", "items-center", "gap-2", "flex-wrap", "flex-1", "min-w-0"], [1, "opacity-90", "font-medium", "truncate"], ["type", "button", 1, "opacity-75", "hover:opacity-100", "transition-opacity", "cursor-pointer", "truncate", 3, "ngClass"], [1, "opacity-75", "font-medium", "truncate"], ["size", "w-4 h-4", 1, "opacity-50", "flex-shrink-0", 3, "icon"], ["type", "button", 1, "opacity-75", "hover:opacity-100", "transition-opacity", "cursor-pointer", "truncate", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4", 3, "ngClass"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2"], [1, "px-3", "py-1", "text-xs", "font-semibold", "rounded-full", 3, "ngClass"], [3, "showObjectives", "goal", "viewMode", "allInsights", "allMetrics", "allBusinessInsights", "allCharts"], [1, "text-sm", "mb-6", 3, "ngClass"], [1, "p-5", "rounded-lg", "border", "transition-all", "duration-300", "hover:shadow-lg", "cursor-pointer", "group", 3, "ngClass"], [1, "p-5", "rounded-lg", "border", "transition-all", "duration-300", "hover:shadow-lg", "cursor-pointer", "group", 3, "click", "ngClass"], [1, "flex", "items-start", "gap-3"], [1, "flex-shrink-0", "w-8", "h-8", "flex", "items-center", "justify-center", "rounded-full", "text-xs", "font-bold", "border-2", "backdrop-blur-md", "transition-all", "duration-300", "group-hover:scale-110", 3, "ngClass", "ngStyle"], [1, "flex-1", "min-w-0"], [1, "font-semibold", "mb-2", "transition-colors", 3, "ngClass"], [1, "text-sm", "leading-relaxed", 3, "ngClass"], [1, "mt-3", "flex", "items-center"], [1, "flex-shrink-0"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "transition-colors", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"], [1, "inline-flex", "items-center", "gap-1.5", "px-2.5", "py-1", "text-xs", "font-semibold", "rounded-full", "border", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-3.5", "h-3.5"], ["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"], [3, "cardNavigate", "recommendation", "viewMode", "animationIndex", "showNavigationChevron", "inModalContext"], [3, "close", "scrollToTop", "item", "viewMode", "sectionTitle", "subsectionTitle", "isCompactMode", "fromProfileAnalysis"], [1, "space-y-3"], [1, "text-xs", "font-bold", "uppercase", "tracking-wider", "px-1", 3, "ngClass"], [3, "metricClick", "metric", "isLightMode", "animationKey"], [3, "chartClick", "chart", "viewMode", "isLightMode"], [1, "text-sm", "mb-4", 3, "ngClass"], [1, "min-h-[500px]"], [3, "chart", "showAxisLabels", "viewMode"], [1, "flex", "items-center", "justify-center", "py-12"], [1, "animate-spin", "rounded-full", "h-8", "w-8", 3, "ngClass"], [3, "priorityClick", "priorities", "viewMode", "focusAreaName"]], template: function ProfileAnalysisModalComponent_Template(rf, ctx) { if (rf & 1) {
|
|
45557
|
+
} }, inputs: { isLightMode: [1, "isLightMode"], allMetrics: [1, "allMetrics"], allInsights: [1, "allInsights"], allCharts: [1, "allCharts"], allBusinessInsights: [1, "allBusinessInsights"] }, ngContentSelectors: _c2$g, decls: 1, vars: 1, consts: [["modalWrapper", ""], ["modalContent", ""], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto", 3, "z-index", "visibility"], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto"], ["aria-hidden", "true", 1, "fixed", "inset-0", "backdrop-blur-sm", "transition-opacity", "duration-200", 3, "click", "ngClass"], [1, "relative", "w-full", "max-w-5xl", "rounded-2xl", "text-left", "overflow-hidden", "shadow-xl", "border", "backdrop-blur-xl", 3, "click", "ngClass"], [1, "px-6", "py-5", "border-b", "backdrop-blur-sm", 3, "ngClass"], [1, "flex", "items-start", "justify-between"], [1, "flex-1"], [1, "flex", "items-center", "gap-2", "text-sm", "mb-2", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "mb-2"], [1, "text-2xl", "font-bold", "leading-tight", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "ml-4"], ["type", "button", 1, "transition-all", "rounded-lg", "p-1", "hover:scale-110", "active:scale-90", "cursor-pointer", "z-[10001]", "relative", "ml-4", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M6 18L18 6M6 6l12 12"], [1, "px-6", "py-8", "max-h-[80vh]", "overflow-y-auto", "backdrop-blur-sm", 3, "ngClass"], [3, "goal", "viewMode", "allInsights", "allMetrics", "allBusinessInsights", "allCharts"], [3, "objectives", "goalTitle", "viewMode"], [1, "space-y-4"], [1, "space-y-6"], [3, "recommendation", "viewMode", "forceExpanded", "showNavigationChevron", "inModalContext", "isCompactMode", "fromProfileAnalysis", "animationIndex", "allMetrics", "allCharts", "allInsights", "currentModalState", "goalTitle", "objectiveTitle", "strategyTitle"], [3, "item", "viewMode", "sectionTitle", "subsectionTitle", "isCompactMode", "fromProfileAnalysis"], [3, "metric", "insights", "charts", "allCharts", "isLightMode", "isInModal", "currentModalState", "viewMode"], [3, "insight", "allMetrics", "charts", "allCharts", "allBusinessInsights", "isLightMode", "isInModal", "isLoading", "isCompactMode", "viewMode", "currentModalState"], [1, "chart-modal-content"], [3, "keyStrengths", "viewMode"], [3, "criticalGaps", "viewMode"], [3, "strength", "viewMode"], [3, "gap", "viewMode"], [3, "priorities", "viewMode", "focusAreaName"], [3, "priority", "index", "totalCount", "viewMode", "focusAreaName"], [3, "strengths", "viewMode", "categoryTitle"], [3, "gaps", "viewMode", "categoryTitle"], [3, "opportunities", "viewMode", "categoryTitle"], [3, "strength", "viewMode", "allMetrics", "allCharts", "currentModalState"], [3, "gap", "viewMode", "allMetrics", "allCharts", "currentModalState"], [3, "opportunity", "viewMode", "allMetrics", "allCharts", "currentModalState"], ["type", "button", 1, "p-1.5", "rounded-md", "transition-colors", "cursor-pointer", "hover:scale-110", "flex-shrink-0", 3, "click", "ngClass"], ["size", "w-4 h-4", 3, "icon"], [1, "flex", "items-center", "gap-2", "flex-wrap", "flex-1", "min-w-0"], [1, "opacity-90", "font-medium", "truncate"], ["type", "button", 1, "opacity-75", "hover:opacity-100", "transition-opacity", "cursor-pointer", "truncate", 3, "ngClass"], [1, "opacity-75", "font-medium", "truncate"], ["size", "w-4 h-4", 1, "opacity-50", "flex-shrink-0", 3, "icon"], ["type", "button", 1, "opacity-75", "hover:opacity-100", "transition-opacity", "cursor-pointer", "truncate", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4", 3, "ngClass"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [1, "px-2", "py-0.5", "text-xs", "font-medium", "rounded-full", "border", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2"], [1, "px-3", "py-1", "text-xs", "font-semibold", "rounded-full", 3, "ngClass"], [3, "showObjectives", "goal", "viewMode", "allInsights", "allMetrics", "allBusinessInsights", "allCharts"], [1, "text-sm", "mb-6", 3, "ngClass"], [1, "p-5", "rounded-lg", "border", "transition-all", "duration-300", "hover:shadow-lg", "cursor-pointer", "group", 3, "ngClass"], [1, "p-5", "rounded-lg", "border", "transition-all", "duration-300", "hover:shadow-lg", "cursor-pointer", "group", 3, "click", "ngClass"], [1, "flex", "items-start", "gap-3"], [1, "flex-shrink-0", "w-8", "h-8", "flex", "items-center", "justify-center", "rounded-full", "text-xs", "font-bold", "border-2", "backdrop-blur-md", "transition-all", "duration-300", "group-hover:scale-110", 3, "ngClass", "ngStyle"], [1, "flex-1", "min-w-0"], [1, "font-semibold", "mb-2", "transition-colors", 3, "ngClass"], [1, "text-sm", "leading-relaxed", 3, "ngClass"], [1, "mt-3", "flex", "items-center"], [1, "flex-shrink-0"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "transition-colors", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"], [1, "inline-flex", "items-center", "gap-1.5", "px-2.5", "py-1", "text-xs", "font-semibold", "rounded-full", "border", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-3.5", "h-3.5"], ["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"], [3, "cardNavigate", "recommendation", "viewMode", "animationIndex", "showNavigationChevron", "inModalContext"], [3, "close", "scrollToTop", "item", "viewMode", "sectionTitle", "subsectionTitle", "isCompactMode", "fromProfileAnalysis"], [1, "space-y-3"], [1, "text-xs", "font-bold", "uppercase", "tracking-wider", "px-1", 3, "ngClass"], [3, "metricClick", "metric", "isLightMode", "animationKey"], [3, "chartClick", "chart", "viewMode", "isLightMode"], [1, "text-sm", "mb-4", 3, "ngClass"], [1, "min-h-[500px]"], [3, "chart", "showAxisLabels", "viewMode"], [1, "flex", "items-center", "justify-center", "py-12"], [1, "animate-spin", "rounded-full", "h-8", "w-8", 3, "ngClass"], [3, "priorityClick", "priorities", "viewMode", "focusAreaName"]], template: function ProfileAnalysisModalComponent_Template(rf, ctx) { if (rf & 1) {
|
|
45153
45558
|
i0.ɵɵprojectionDef();
|
|
45154
|
-
i0.ɵɵconditionalCreate(0, ProfileAnalysisModalComponent_Conditional_0_Template,
|
|
45559
|
+
i0.ɵɵconditionalCreate(0, ProfileAnalysisModalComponent_Conditional_0_Template, 43, 24, "div", 2);
|
|
45155
45560
|
} if (rf & 2) {
|
|
45156
45561
|
i0.ɵɵconditional(ctx.isOpen() ? 0 : -1);
|
|
45157
|
-
} }, dependencies: [CommonModule, i1$1.NgClass, i1$1.NgStyle, SymphiqIconComponent, InsightCardComponent, ChartCardComponent, MetricListItemComponent, MetricCardComponent, RecommendationCardComponent, KeyStrengthsListModalContentComponent, CriticalGapsListModalContentComponent, KeyStrengthDetailModalContentComponent, CriticalGapDetailModalContentComponent, GoalDetailModalContentComponent, TopPrioritiesListModalContentComponent, TopPriorityDetailModalContentComponent, FocusAreaStrengthsListModalContentComponent, FocusAreaGapsListModalContentComponent, FocusAreaOpportunitiesListModalContentComponent, FocusAreaStrengthDetailModalContentComponent, FocusAreaGapDetailModalContentComponent, FocusAreaOpportunityDetailModalContentComponent, ItemDetailModalComponent], encapsulation: 2, data: { animation: [
|
|
45562
|
+
} }, dependencies: [CommonModule, i1$1.NgClass, i1$1.NgStyle, SymphiqIconComponent, InsightCardComponent, ChartCardComponent, MetricListItemComponent, MetricCardComponent, RecommendationCardComponent, KeyStrengthsListModalContentComponent, CriticalGapsListModalContentComponent, KeyStrengthDetailModalContentComponent, CriticalGapDetailModalContentComponent, GoalDetailModalContentComponent, GoalObjectivesModalContentComponent, TopPrioritiesListModalContentComponent, TopPriorityDetailModalContentComponent, FocusAreaStrengthsListModalContentComponent, FocusAreaGapsListModalContentComponent, FocusAreaOpportunitiesListModalContentComponent, FocusAreaStrengthDetailModalContentComponent, FocusAreaGapDetailModalContentComponent, FocusAreaOpportunityDetailModalContentComponent, ItemDetailModalComponent], encapsulation: 2, data: { animation: [
|
|
45158
45563
|
trigger('fadeIn', [
|
|
45159
45564
|
transition(':enter', [
|
|
45160
45565
|
style({ opacity: 0 }),
|
|
@@ -45175,7 +45580,7 @@ class ProfileAnalysisModalComponent {
|
|
|
45175
45580
|
selector: 'symphiq-profile-analysis-modal',
|
|
45176
45581
|
standalone: true,
|
|
45177
45582
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
45178
|
-
imports: [CommonModule, SymphiqIconComponent, InsightCardComponent, ChartCardComponent, MetricListItemComponent, MetricCardComponent, LineChartComponent, BarChartComponent, PieChartComponent, AreaChartComponent, RecommendationCardComponent, KeyStrengthsListModalContentComponent, CriticalGapsListModalContentComponent, KeyStrengthDetailModalContentComponent, CriticalGapDetailModalContentComponent, GoalDetailModalContentComponent, TopPrioritiesListModalContentComponent, TopPriorityDetailModalContentComponent, FocusAreaStrengthsListModalContentComponent, FocusAreaGapsListModalContentComponent, FocusAreaOpportunitiesListModalContentComponent, FocusAreaStrengthDetailModalContentComponent, FocusAreaGapDetailModalContentComponent, FocusAreaOpportunityDetailModalContentComponent, ItemDetailModalComponent],
|
|
45583
|
+
imports: [CommonModule, SymphiqIconComponent, InsightCardComponent, ChartCardComponent, MetricListItemComponent, MetricCardComponent, LineChartComponent, BarChartComponent, PieChartComponent, AreaChartComponent, RecommendationCardComponent, KeyStrengthsListModalContentComponent, CriticalGapsListModalContentComponent, KeyStrengthDetailModalContentComponent, CriticalGapDetailModalContentComponent, GoalDetailModalContentComponent, GoalObjectivesModalContentComponent, TopPrioritiesListModalContentComponent, TopPriorityDetailModalContentComponent, FocusAreaStrengthsListModalContentComponent, FocusAreaGapsListModalContentComponent, FocusAreaOpportunitiesListModalContentComponent, FocusAreaStrengthDetailModalContentComponent, FocusAreaGapDetailModalContentComponent, FocusAreaOpportunityDetailModalContentComponent, ItemDetailModalComponent],
|
|
45179
45584
|
animations: [
|
|
45180
45585
|
trigger('fadeIn', [
|
|
45181
45586
|
transition(':enter', [
|
|
@@ -45193,7 +45598,7 @@ class ProfileAnalysisModalComponent {
|
|
|
45193
45598
|
template: `
|
|
45194
45599
|
@if (isOpen()) {
|
|
45195
45600
|
<div #modalWrapper class="fixed inset-0 flex items-center justify-center p-4 overflow-y-auto" [style.z-index]="baseZIndex()" [style.visibility]="modalReady() ? 'visible' : 'hidden'">
|
|
45196
|
-
<div [ngClass]="isLightMode() ? 'bg-slate-900/15' : 'bg-slate-950/25'" class="fixed inset-0 backdrop-blur-sm" [style.z-index]="backdropZIndex()" aria-hidden="true"
|
|
45601
|
+
<div [ngClass]="isLightMode() ? 'bg-slate-900/15' : 'bg-slate-950/25'" class="fixed inset-0 backdrop-blur-sm transition-opacity duration-200" [class.opacity-0]="!modalReady()" [class.opacity-100]="modalReady()" [style.z-index]="backdropZIndex()" aria-hidden="true" (click)="closeModal()"></div>
|
|
45197
45602
|
|
|
45198
45603
|
<div
|
|
45199
45604
|
(click)="$event.stopPropagation()"
|
|
@@ -45257,6 +45662,11 @@ class ProfileAnalysisModalComponent {
|
|
|
45257
45662
|
<span [ngClass]="modalTypeLabelClasses()" class="text-xs font-semibold uppercase tracking-wider">
|
|
45258
45663
|
{{ modalTypeLabel() }}
|
|
45259
45664
|
</span>
|
|
45665
|
+
@if (sourceAnalysisTypeLabel(); as sourceLabel) {
|
|
45666
|
+
<span [ngClass]="isLightMode() ? 'bg-purple-100 text-purple-700 border-purple-300' : 'bg-purple-900/30 text-purple-400 border-purple-700/50'" class="px-2 py-0.5 text-xs font-medium rounded-full border">
|
|
45667
|
+
{{ sourceLabel }}
|
|
45668
|
+
</span>
|
|
45669
|
+
}
|
|
45260
45670
|
</div>
|
|
45261
45671
|
}
|
|
45262
45672
|
|
|
@@ -45303,6 +45713,12 @@ class ProfileAnalysisModalComponent {
|
|
|
45303
45713
|
[allCharts]="allCharts()"
|
|
45304
45714
|
(showObjectives)="showGoalObjectives(data.goal, data.viewMode)"
|
|
45305
45715
|
@fadeIn />
|
|
45716
|
+
} @else if (modalType() === 'goal-objectives' && getGoalObjectivesData(); as data) {
|
|
45717
|
+
<symphiq-goal-objectives-modal-content
|
|
45718
|
+
[objectives]="data.goal.objectives || []"
|
|
45719
|
+
[goalTitle]="data.goal.title || 'Goal'"
|
|
45720
|
+
[viewMode]="data.viewMode"
|
|
45721
|
+
@fadeIn />
|
|
45306
45722
|
} @else if (modalType() === 'goal-insights-list' && getInsightsListData(); as data) {
|
|
45307
45723
|
<div class="space-y-4">
|
|
45308
45724
|
@if (data.goalContext.description) {
|
|
@@ -45692,7 +46108,7 @@ class ProfileAnalysisModalComponent {
|
|
|
45692
46108
|
type: ViewChild,
|
|
45693
46109
|
args: ['modalWrapper']
|
|
45694
46110
|
}] }); }); })();
|
|
45695
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileAnalysisModalComponent, { className: "ProfileAnalysisModalComponent", filePath: "lib/components/profile-analysis-shop-dashboard/profile-analysis-modal.component.ts", lineNumber:
|
|
46111
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileAnalysisModalComponent, { className: "ProfileAnalysisModalComponent", filePath: "lib/components/profile-analysis-shop-dashboard/profile-analysis-modal.component.ts", lineNumber: 562 }); })();
|
|
45696
46112
|
|
|
45697
46113
|
const _c0$S = a0 => ({ name: "light-bulb", source: a0 });
|
|
45698
46114
|
const _c1$p = a0 => ({ name: "trophy", source: a0 });
|
|
@@ -46029,7 +46445,7 @@ const _c0$R = a0 => ({ name: "list-bullet", source: a0 });
|
|
|
46029
46445
|
const _c1$o = a0 => ({ name: "arrow-right", source: a0 });
|
|
46030
46446
|
const _c2$e = a0 => ({ name: "check-circle", source: a0 });
|
|
46031
46447
|
const _c3$9 = a0 => ({ name: "exclamation-circle", source: a0 });
|
|
46032
|
-
const _forTrack0$
|
|
46448
|
+
const _forTrack0$S = ($index, $item) => $item.order;
|
|
46033
46449
|
function RecommendationActionStepsModalComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
46034
46450
|
i0.ɵɵelementStart(0, "div", 1)(1, "div", 5);
|
|
46035
46451
|
i0.ɵɵelement(2, "symphiq-icon", 6);
|
|
@@ -46183,7 +46599,7 @@ class RecommendationActionStepsModalComponent {
|
|
|
46183
46599
|
i0.ɵɵelementStart(0, "div", 0);
|
|
46184
46600
|
i0.ɵɵconditionalCreate(1, RecommendationActionStepsModalComponent_Conditional_1_Template, 8, 7, "div", 1);
|
|
46185
46601
|
i0.ɵɵelementStart(2, "div", 2);
|
|
46186
|
-
i0.ɵɵrepeaterCreate(3, RecommendationActionStepsModalComponent_For_4_Template, 13, 11, "div", 3, _forTrack0$
|
|
46602
|
+
i0.ɵɵrepeaterCreate(3, RecommendationActionStepsModalComponent_For_4_Template, 13, 11, "div", 3, _forTrack0$S);
|
|
46187
46603
|
i0.ɵɵelementEnd();
|
|
46188
46604
|
i0.ɵɵconditionalCreate(5, RecommendationActionStepsModalComponent_Conditional_5_Template, 4, 5, "div", 4);
|
|
46189
46605
|
i0.ɵɵelementEnd();
|
|
@@ -48303,7 +48719,7 @@ const _c2$d = () => [1, 2, 3, 4, 5, 6];
|
|
|
48303
48719
|
const _c3$8 = () => [1, 2, 3];
|
|
48304
48720
|
const _c4$5 = () => [1, 2, 3, 4];
|
|
48305
48721
|
const _c5$2 = () => [1, 2];
|
|
48306
|
-
const _forTrack0$
|
|
48722
|
+
const _forTrack0$R = ($index, $item) => $item.value;
|
|
48307
48723
|
function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_For_6_Template(rf, ctx) { if (rf & 1) {
|
|
48308
48724
|
i0.ɵɵelementStart(0, "option", 25);
|
|
48309
48725
|
i0.ɵɵtext(1);
|
|
@@ -48323,7 +48739,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template(rf, ctx)
|
|
|
48323
48739
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template_div_click_3_listener($event) { i0.ɵɵrestoreView(_r2); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template_div_mousedown_3_listener($event) { i0.ɵɵrestoreView(_r2); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template_div_pointerdown_3_listener($event) { i0.ɵɵrestoreView(_r2); return i0.ɵɵresetView($event.stopPropagation()); });
|
|
48324
48740
|
i0.ɵɵelementStart(4, "select", 24);
|
|
48325
48741
|
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template_select_ngModelChange_4_listener($event) { i0.ɵɵrestoreView(_r2); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeSectionFilter($event)); });
|
|
48326
|
-
i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_6_For_6_Template, 2, 2, "option", 25, _forTrack0$
|
|
48742
|
+
i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_6_For_6_Template, 2, 2, "option", 25, _forTrack0$R);
|
|
48327
48743
|
i0.ɵɵelementEnd()()();
|
|
48328
48744
|
} if (rf & 2) {
|
|
48329
48745
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -48375,7 +48791,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template(rf, ctx
|
|
|
48375
48791
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template_div_click_0_listener($event) { i0.ɵɵrestoreView(_r5); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template_div_mousedown_0_listener($event) { i0.ɵɵrestoreView(_r5); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template_div_pointerdown_0_listener($event) { i0.ɵɵrestoreView(_r5); return i0.ɵɵresetView($event.stopPropagation()); });
|
|
48376
48792
|
i0.ɵɵelementStart(1, "select", 29);
|
|
48377
48793
|
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template_select_ngModelChange_1_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeSectionFilter($event)); });
|
|
48378
|
-
i0.ɵɵrepeaterCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_10_For_3_Template, 2, 2, "option", 25, _forTrack0$
|
|
48794
|
+
i0.ɵɵrepeaterCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_10_For_3_Template, 2, 2, "option", 25, _forTrack0$R);
|
|
48379
48795
|
i0.ɵɵelementEnd()();
|
|
48380
48796
|
} if (rf & 2) {
|
|
48381
48797
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -49169,7 +49585,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Te
|
|
|
49169
49585
|
i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_14_Template, 2, 0, "div", 107);
|
|
49170
49586
|
i0.ɵɵelementStart(15, "select", 108);
|
|
49171
49587
|
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Template_select_ngModelChange_15_listener($event) { i0.ɵɵrestoreView(_r26); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter($event)); });
|
|
49172
|
-
i0.ɵɵrepeaterCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Template, 2, 1, null, null, _forTrack0$
|
|
49588
|
+
i0.ɵɵrepeaterCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Template, 2, 1, null, null, _forTrack0$R);
|
|
49173
49589
|
i0.ɵɵelementEnd();
|
|
49174
49590
|
i0.ɵɵelementStart(18, "button", 109);
|
|
49175
49591
|
i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Template_button_click_18_listener() { i0.ɵɵrestoreView(_r26); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.toggleSortOrder()); });
|
|
@@ -49183,7 +49599,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Te
|
|
|
49183
49599
|
i0.ɵɵtext(23, "Sort");
|
|
49184
49600
|
i0.ɵɵelementEnd()()()();
|
|
49185
49601
|
i0.ɵɵelementStart(24, "div", 113)(25, "div", 114);
|
|
49186
|
-
i0.ɵɵrepeaterCreate(26, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Template, 1, 1, null, null, _forTrack0$
|
|
49602
|
+
i0.ɵɵrepeaterCreate(26, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Template, 1, 1, null, null, _forTrack0$R);
|
|
49187
49603
|
i0.ɵɵelementEnd()()();
|
|
49188
49604
|
i0.ɵɵconditionalCreate(28, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_Template, 3, 1, "div", 115)(29, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_Template, 4, 5, "div", 116);
|
|
49189
49605
|
i0.ɵɵelementEnd()();
|
|
@@ -49360,7 +49776,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Te
|
|
|
49360
49776
|
i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_12_Template, 2, 0, "div", 107);
|
|
49361
49777
|
i0.ɵɵelementStart(13, "select", 150);
|
|
49362
49778
|
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template_select_ngModelChange_13_listener($event) { i0.ɵɵrestoreView(_r36); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeBreakdownFilter($event)); });
|
|
49363
|
-
i0.ɵɵrepeaterCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Template, 2, 1, null, null, _forTrack0$
|
|
49779
|
+
i0.ɵɵrepeaterCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Template, 2, 1, null, null, _forTrack0$R);
|
|
49364
49780
|
i0.ɵɵelementEnd()()();
|
|
49365
49781
|
i0.ɵɵconditionalCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_Template, 3, 1, "div", 80)(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_Template, 4, 5, "div", 151);
|
|
49366
49782
|
i0.ɵɵelementEnd()();
|
|
@@ -49471,7 +49887,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Te
|
|
|
49471
49887
|
i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_13_Template, 2, 0, "div", 107);
|
|
49472
49888
|
i0.ɵɵelementStart(14, "select", 108);
|
|
49473
49889
|
i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Template_select_ngModelChange_14_listener($event) { i0.ɵɵrestoreView(_r40); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeCompetitiveFilter($event)); });
|
|
49474
|
-
i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Template, 2, 1, null, null, _forTrack0$
|
|
49890
|
+
i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Template, 2, 1, null, null, _forTrack0$R);
|
|
49475
49891
|
i0.ɵɵelementEnd()()();
|
|
49476
49892
|
i0.ɵɵconditionalCreate(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_17_Template, 6, 5, "div", 80)(18, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_18_Template, 1, 6, "symphiq-competitive-intelligence-view", 77);
|
|
49477
49893
|
i0.ɵɵelementEnd()();
|
|
@@ -51993,7 +52409,7 @@ function getTrendClasses(trendPercent, viewMode) {
|
|
|
51993
52409
|
}
|
|
51994
52410
|
}
|
|
51995
52411
|
|
|
51996
|
-
const _forTrack0$
|
|
52412
|
+
const _forTrack0$Q = ($index, $item) => $item.metric.performanceItemId;
|
|
51997
52413
|
function SymphiqFunnelAnalysisPreviewComponent_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
51998
52414
|
i0.ɵɵelementStart(0, "div", 17)(1, "p", 18);
|
|
51999
52415
|
i0.ɵɵtext(2);
|
|
@@ -52605,7 +53021,7 @@ class SymphiqFunnelAnalysisPreviewComponent {
|
|
|
52605
53021
|
i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisPreviewComponent_Conditional_12_Template, 3, 7, "div", 9);
|
|
52606
53022
|
i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisPreviewComponent_Conditional_13_Template, 18, 23, "div", 10);
|
|
52607
53023
|
i0.ɵɵelementStart(14, "div", 11);
|
|
52608
|
-
i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisPreviewComponent_For_16_Template, 10, 17, "div", 12, _forTrack0$
|
|
53024
|
+
i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisPreviewComponent_For_16_Template, 10, 17, "div", 12, _forTrack0$Q);
|
|
52609
53025
|
i0.ɵɵelementEnd();
|
|
52610
53026
|
i0.ɵɵconditionalCreate(17, SymphiqFunnelAnalysisPreviewComponent_Conditional_17_Template, 9, 11, "div", 9);
|
|
52611
53027
|
i0.ɵɵconditionalCreate(18, SymphiqFunnelAnalysisPreviewComponent_Conditional_18_Template, 14, 19, "div", 9);
|
|
@@ -52848,7 +53264,7 @@ class SymphiqFunnelAnalysisPreviewComponent {
|
|
|
52848
53264
|
}], () => [], { analysisInput: [{ type: i0.Input, args: [{ isSignal: true, alias: "funnelAnalysis", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], scrollElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollElement", required: false }] }], onViewAnalysis: [{ type: i0.Output, args: ["onViewAnalysis"] }] }); })();
|
|
52849
53265
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqFunnelAnalysisPreviewComponent, { className: "SymphiqFunnelAnalysisPreviewComponent", filePath: "lib/components/funnel-analysis-preview/symphiq-funnel-analysis-preview.component.ts", lineNumber: 228 }); })();
|
|
52850
53266
|
|
|
52851
|
-
const _forTrack0$
|
|
53267
|
+
const _forTrack0$P = ($index, $item) => $item.id;
|
|
52852
53268
|
function SymphiqWelcomeDashboardComponent_For_50_Template(rf, ctx) { if (rf & 1) {
|
|
52853
53269
|
i0.ɵɵelementStart(0, "div", 27)(1, "div", 32)(2, "div", 33)(3, "span", 34);
|
|
52854
53270
|
i0.ɵɵtext(4);
|
|
@@ -53077,7 +53493,7 @@ class SymphiqWelcomeDashboardComponent {
|
|
|
53077
53493
|
i0.ɵɵtext(47, " Your Onboarding Journey ");
|
|
53078
53494
|
i0.ɵɵelementEnd();
|
|
53079
53495
|
i0.ɵɵelementStart(48, "div", 26);
|
|
53080
|
-
i0.ɵɵrepeaterCreate(49, SymphiqWelcomeDashboardComponent_For_50_Template, 9, 3, "div", 27, _forTrack0$
|
|
53496
|
+
i0.ɵɵrepeaterCreate(49, SymphiqWelcomeDashboardComponent_For_50_Template, 9, 3, "div", 27, _forTrack0$P);
|
|
53081
53497
|
i0.ɵɵelementEnd()()();
|
|
53082
53498
|
i0.ɵɵelementStart(51, "div", 28);
|
|
53083
53499
|
i0.ɵɵnamespaceSVG();
|
|
@@ -53261,7 +53677,7 @@ class SymphiqWelcomeDashboardComponent {
|
|
|
53261
53677
|
}] }); })();
|
|
53262
53678
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqWelcomeDashboardComponent, { className: "SymphiqWelcomeDashboardComponent", filePath: "lib/components/welcome-dashboard/symphiq-welcome-dashboard.component.ts", lineNumber: 163 }); })();
|
|
53263
53679
|
|
|
53264
|
-
const _forTrack0$
|
|
53680
|
+
const _forTrack0$O = ($index, $item) => $item.status;
|
|
53265
53681
|
function FocusAreaQuestionComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
53266
53682
|
i0.ɵɵelementStart(0, "span", 5);
|
|
53267
53683
|
i0.ɵɵtext(1, " Not answered yet ");
|
|
@@ -53474,7 +53890,7 @@ class FocusAreaQuestionComponent {
|
|
|
53474
53890
|
i0.ɵɵtext(8);
|
|
53475
53891
|
i0.ɵɵelementEnd()();
|
|
53476
53892
|
i0.ɵɵelementStart(9, "div", 7);
|
|
53477
|
-
i0.ɵɵrepeaterCreate(10, FocusAreaQuestionComponent_For_11_Template, 10, 8, "label", 8, _forTrack0$
|
|
53893
|
+
i0.ɵɵrepeaterCreate(10, FocusAreaQuestionComponent_For_11_Template, 10, 8, "label", 8, _forTrack0$O);
|
|
53478
53894
|
i0.ɵɵelementEnd();
|
|
53479
53895
|
i0.ɵɵelementStart(12, "div", 9)(13, "div", 10)(14, "div", 11)(15, "label", 12);
|
|
53480
53896
|
i0.ɵɵtext(16, " Marketing automation tools used ");
|
|
@@ -53609,7 +54025,7 @@ class FocusAreaQuestionComponent {
|
|
|
53609
54025
|
}], null, { focusAreaDomain: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaDomain", required: true }] }], selectedStatus: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectedStatus", required: false }] }], selectedTools: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectedTools", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: true }] }], description: [{ type: i0.Input, args: [{ isSignal: true, alias: "description", required: true }] }], statusChange: [{ type: i0.Output, args: ["statusChange"] }], toolsClick: [{ type: i0.Output, args: ["toolsClick"] }] }); })();
|
|
53610
54026
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FocusAreaQuestionComponent, { className: "FocusAreaQuestionComponent", filePath: "lib/components/create-account-dashboard/focus-area-question.component.ts", lineNumber: 106 }); })();
|
|
53611
54027
|
|
|
53612
|
-
const _forTrack0$
|
|
54028
|
+
const _forTrack0$N = ($index, $item) => $item.tool;
|
|
53613
54029
|
function FocusAreaToolsModalComponent_Conditional_0_Conditional_10_For_5_Template(rf, ctx) { if (rf & 1) {
|
|
53614
54030
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
53615
54031
|
i0.ɵɵelementStart(0, "label", 18)(1, "input", 19);
|
|
@@ -53633,7 +54049,7 @@ function FocusAreaToolsModalComponent_Conditional_0_Conditional_10_Template(rf,
|
|
|
53633
54049
|
i0.ɵɵtext(2, " Select tools from the list: ");
|
|
53634
54050
|
i0.ɵɵelementEnd();
|
|
53635
54051
|
i0.ɵɵelementStart(3, "div", 17);
|
|
53636
|
-
i0.ɵɵrepeaterCreate(4, FocusAreaToolsModalComponent_Conditional_0_Conditional_10_For_5_Template, 4, 4, "label", 18, _forTrack0$
|
|
54052
|
+
i0.ɵɵrepeaterCreate(4, FocusAreaToolsModalComponent_Conditional_0_Conditional_10_For_5_Template, 4, 4, "label", 18, _forTrack0$N);
|
|
53637
54053
|
i0.ɵɵelementEnd()();
|
|
53638
54054
|
} if (rf & 2) {
|
|
53639
54055
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -53927,7 +54343,7 @@ class FocusAreaToolsModalComponent {
|
|
|
53927
54343
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FocusAreaToolsModalComponent, { className: "FocusAreaToolsModalComponent", filePath: "lib/components/create-account-dashboard/focus-area-tools-modal.component.ts", lineNumber: 149 }); })();
|
|
53928
54344
|
|
|
53929
54345
|
const _c0$N = ["shopNameInput"];
|
|
53930
|
-
const _forTrack0$
|
|
54346
|
+
const _forTrack0$M = ($index, $item) => $item.focusArea.focusAreaDomain;
|
|
53931
54347
|
const _forTrack1$9 = ($index, $item) => $item.domain;
|
|
53932
54348
|
function SymphiqCreateAccountDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
53933
54349
|
i0.ɵɵelementStart(0, "div", 8);
|
|
@@ -54264,7 +54680,7 @@ function SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Cond
|
|
|
54264
54680
|
i0.ɵɵtext(3);
|
|
54265
54681
|
i0.ɵɵelementEnd();
|
|
54266
54682
|
i0.ɵɵelementStart(4, "div", 52);
|
|
54267
|
-
i0.ɵɵrepeaterCreate(5, SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Conditional_12_For_6_Template, 7, 5, "div", 53, _forTrack0$
|
|
54683
|
+
i0.ɵɵrepeaterCreate(5, SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Conditional_12_For_6_Template, 7, 5, "div", 53, _forTrack0$M);
|
|
54268
54684
|
i0.ɵɵelementEnd()();
|
|
54269
54685
|
} if (rf & 2) {
|
|
54270
54686
|
const ctx_r0 = i0.ɵɵnextContext(3);
|
|
@@ -54294,7 +54710,7 @@ function SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Cond
|
|
|
54294
54710
|
i0.ɵɵtext(3);
|
|
54295
54711
|
i0.ɵɵelementEnd();
|
|
54296
54712
|
i0.ɵɵelementStart(4, "div", 62);
|
|
54297
|
-
i0.ɵɵrepeaterCreate(5, SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Conditional_13_For_6_Template, 3, 3, "div", 63, _forTrack0$
|
|
54713
|
+
i0.ɵɵrepeaterCreate(5, SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Conditional_13_For_6_Template, 3, 3, "div", 63, _forTrack0$M);
|
|
54298
54714
|
i0.ɵɵelementEnd()();
|
|
54299
54715
|
} if (rf & 2) {
|
|
54300
54716
|
const ctx_r0 = i0.ɵɵnextContext(3);
|
|
@@ -54324,7 +54740,7 @@ function SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Cond
|
|
|
54324
54740
|
i0.ɵɵtext(3);
|
|
54325
54741
|
i0.ɵɵelementEnd();
|
|
54326
54742
|
i0.ɵɵelementStart(4, "div", 65);
|
|
54327
|
-
i0.ɵɵrepeaterCreate(5, SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Conditional_14_For_6_Template, 3, 3, "div", 66, _forTrack0$
|
|
54743
|
+
i0.ɵɵrepeaterCreate(5, SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Conditional_14_For_6_Template, 3, 3, "div", 66, _forTrack0$M);
|
|
54328
54744
|
i0.ɵɵelementEnd()();
|
|
54329
54745
|
} if (rf & 2) {
|
|
54330
54746
|
const ctx_r0 = i0.ɵɵnextContext(3);
|
|
@@ -55915,7 +56331,7 @@ class ConnectGaWelcomeBannerComponent {
|
|
|
55915
56331
|
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }] }); })();
|
|
55916
56332
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ConnectGaWelcomeBannerComponent, { className: "ConnectGaWelcomeBannerComponent", filePath: "lib/components/connect-ga-dashboard/connect-ga-welcome-banner.component.ts", lineNumber: 70 }); })();
|
|
55917
56333
|
|
|
55918
|
-
const _forTrack0$
|
|
56334
|
+
const _forTrack0$L = ($index, $item) => $item.property.id;
|
|
55919
56335
|
function SymphiqConnectGaDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
55920
56336
|
i0.ɵɵelementStart(0, "div", 8)(1, "div", 10)(2, "div", 11);
|
|
55921
56337
|
i0.ɵɵelement(3, "symphiq-indeterminate-spinner", 12);
|
|
@@ -56144,7 +56560,7 @@ function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_
|
|
|
56144
56560
|
function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
56145
56561
|
const _r5 = i0.ɵɵgetCurrentView();
|
|
56146
56562
|
i0.ɵɵelementStart(0, "div", 53);
|
|
56147
|
-
i0.ɵɵrepeaterCreate(1, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Template, 11, 8, "label", 54, _forTrack0$
|
|
56563
|
+
i0.ɵɵrepeaterCreate(1, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Template, 11, 8, "label", 54, _forTrack0$L);
|
|
56148
56564
|
i0.ɵɵelementEnd();
|
|
56149
56565
|
i0.ɵɵelement(3, "div", 55);
|
|
56150
56566
|
i0.ɵɵelementStart(4, "button", 56);
|
|
@@ -57975,7 +58391,7 @@ class TargetChangeBadgeComponent {
|
|
|
57975
58391
|
}], () => [{ type: i0.ElementRef }], { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], percentageChange: [{ type: i0.Input, args: [{ isSignal: true, alias: "percentageChange", required: false }] }], metric: [{ type: i0.Input, args: [{ isSignal: true, alias: "metric", required: false }] }], priorYear: [{ type: i0.Input, args: [{ isSignal: true, alias: "priorYear", required: false }] }], isCompact: [{ type: i0.Input, args: [{ isSignal: true, alias: "isCompact", required: false }] }] }); })();
|
|
57976
58392
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(TargetChangeBadgeComponent, { className: "TargetChangeBadgeComponent", filePath: "lib/components/revenue-calculator-dashboard/target-change-badge.component.ts", lineNumber: 27 }); })();
|
|
57977
58393
|
|
|
57978
|
-
const _forTrack0$
|
|
58394
|
+
const _forTrack0$K = ($index, $item) => $item.stageMetric.metric;
|
|
57979
58395
|
const _forTrack1$8 = ($index, $item) => $item.calc.metric;
|
|
57980
58396
|
function FunnelMetricsVisualizationComponent_For_4_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
57981
58397
|
i0.ɵɵelementStart(0, "button", 7);
|
|
@@ -58431,7 +58847,7 @@ class FunnelMetricsVisualizationComponent {
|
|
|
58431
58847
|
i0.ɵɵelementStart(0, "div", 0);
|
|
58432
58848
|
i0.ɵɵelement(1, "symphiq-tooltip-container");
|
|
58433
58849
|
i0.ɵɵelementStart(2, "div", 1);
|
|
58434
|
-
i0.ɵɵrepeaterCreate(3, FunnelMetricsVisualizationComponent_For_4_Template, 28, 15, "div", 2, _forTrack0$
|
|
58850
|
+
i0.ɵɵrepeaterCreate(3, FunnelMetricsVisualizationComponent_For_4_Template, 28, 15, "div", 2, _forTrack0$K);
|
|
58435
58851
|
i0.ɵɵelementEnd()();
|
|
58436
58852
|
} if (rf & 2) {
|
|
58437
58853
|
i0.ɵɵadvance(3);
|
|
@@ -60330,7 +60746,7 @@ class ProgressToTargetChartComponent {
|
|
|
60330
60746
|
}] }); })();
|
|
60331
60747
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProgressToTargetChartComponent, { className: "ProgressToTargetChartComponent", filePath: "lib/components/revenue-calculator-dashboard/progress-to-target-chart.component.ts", lineNumber: 67 }); })();
|
|
60332
60748
|
|
|
60333
|
-
const _forTrack0$
|
|
60749
|
+
const _forTrack0$J = ($index, $item) => $item.metric.metric;
|
|
60334
60750
|
function MetricReportModalComponent_Conditional_0_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
60335
60751
|
i0.ɵɵelement(0, "symphiq-current-data-indicator", 9);
|
|
60336
60752
|
} if (rf & 2) {
|
|
@@ -60474,7 +60890,7 @@ function MetricReportModalComponent_Conditional_0_Conditional_63_Template(rf, ct
|
|
|
60474
60890
|
i0.ɵɵtext(12, "Improve by");
|
|
60475
60891
|
i0.ɵɵelementEnd()()();
|
|
60476
60892
|
i0.ɵɵelementStart(13, "tbody");
|
|
60477
|
-
i0.ɵɵrepeaterCreate(14, MetricReportModalComponent_Conditional_0_Conditional_63_For_15_Template, 15, 7, "tr", 46, _forTrack0$
|
|
60893
|
+
i0.ɵɵrepeaterCreate(14, MetricReportModalComponent_Conditional_0_Conditional_63_For_15_Template, 15, 7, "tr", 46, _forTrack0$J);
|
|
60478
60894
|
i0.ɵɵelementEnd()()()();
|
|
60479
60895
|
} if (rf & 2) {
|
|
60480
60896
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -62047,7 +62463,7 @@ class UserDisplayComponent {
|
|
|
62047
62463
|
|
|
62048
62464
|
const _c0$J = ["absoluteInputRef"];
|
|
62049
62465
|
const _c1$k = ["percentageInputRef"];
|
|
62050
|
-
const _forTrack0$
|
|
62466
|
+
const _forTrack0$I = ($index, $item) => $item.history.id;
|
|
62051
62467
|
function EditMetricTargetModalComponent_Conditional_0_Conditional_24_Template(rf, ctx) { if (rf & 1) {
|
|
62052
62468
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
62053
62469
|
i0.ɵɵelementStart(0, "div", 16);
|
|
@@ -62463,7 +62879,7 @@ function EditMetricTargetModalComponent_Conditional_0_Conditional_34_Template(rf
|
|
|
62463
62879
|
i0.ɵɵtext(8, "Amount set");
|
|
62464
62880
|
i0.ɵɵelementEnd()();
|
|
62465
62881
|
i0.ɵɵelementStart(9, "div", 65);
|
|
62466
|
-
i0.ɵɵrepeaterCreate(10, EditMetricTargetModalComponent_Conditional_0_Conditional_34_For_11_Template, 7, 6, "div", 66, _forTrack0$
|
|
62882
|
+
i0.ɵɵrepeaterCreate(10, EditMetricTargetModalComponent_Conditional_0_Conditional_34_For_11_Template, 7, 6, "div", 66, _forTrack0$I);
|
|
62467
62883
|
i0.ɵɵelementEnd()()();
|
|
62468
62884
|
} if (rf & 2) {
|
|
62469
62885
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -67561,7 +67977,7 @@ class FloatingBackButtonComponent {
|
|
|
67561
67977
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FloatingBackButtonComponent, { className: "FloatingBackButtonComponent", filePath: "lib/components/business-analysis-dashboard/floating-back-button.component.ts", lineNumber: 70 }); })();
|
|
67562
67978
|
|
|
67563
67979
|
const _c0$F = ["searchInput"];
|
|
67564
|
-
const _forTrack0$
|
|
67980
|
+
const _forTrack0$H = ($index, $item) => $item.result.id;
|
|
67565
67981
|
function SearchModalComponent_Conditional_0_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
67566
67982
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
67567
67983
|
i0.ɵɵelementStart(0, "button", 18);
|
|
@@ -67685,7 +68101,7 @@ function SearchModalComponent_Conditional_0_Conditional_14_For_2_Template(rf, ct
|
|
|
67685
68101
|
} }
|
|
67686
68102
|
function SearchModalComponent_Conditional_0_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
67687
68103
|
i0.ɵɵelementStart(0, "div", 15);
|
|
67688
|
-
i0.ɵɵrepeaterCreate(1, SearchModalComponent_Conditional_0_Conditional_14_For_2_Template, 17, 13, "button", 19, _forTrack0$
|
|
68104
|
+
i0.ɵɵrepeaterCreate(1, SearchModalComponent_Conditional_0_Conditional_14_For_2_Template, 17, 13, "button", 19, _forTrack0$H);
|
|
67689
68105
|
i0.ɵɵelementEnd();
|
|
67690
68106
|
} if (rf & 2) {
|
|
67691
68107
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -68674,7 +69090,7 @@ class SimplifiedRecommendationCardComponent {
|
|
|
68674
69090
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SimplifiedRecommendationCardComponent, { className: "SimplifiedRecommendationCardComponent", filePath: "lib/components/business-analysis-dashboard/simplified-recommendation-card.component.ts", lineNumber: 121 }); })();
|
|
68675
69091
|
|
|
68676
69092
|
const _c0$E = () => [0, 1, 2];
|
|
68677
|
-
const _forTrack0$
|
|
69093
|
+
const _forTrack0$G = ($index, $item) => $item.id;
|
|
68678
69094
|
function RecommendationsTiledGridComponent_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
68679
69095
|
i0.ɵɵelementStart(0, "div", 9);
|
|
68680
69096
|
i0.ɵɵtext(1);
|
|
@@ -68698,7 +69114,7 @@ function RecommendationsTiledGridComponent_Conditional_14_For_2_Template(rf, ctx
|
|
|
68698
69114
|
} }
|
|
68699
69115
|
function RecommendationsTiledGridComponent_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
68700
69116
|
i0.ɵɵelementStart(0, "div", 11);
|
|
68701
|
-
i0.ɵɵrepeaterCreate(1, RecommendationsTiledGridComponent_Conditional_14_For_2_Template, 1, 3, "symphiq-simplified-recommendation-card", 13, _forTrack0$
|
|
69117
|
+
i0.ɵɵrepeaterCreate(1, RecommendationsTiledGridComponent_Conditional_14_For_2_Template, 1, 3, "symphiq-simplified-recommendation-card", 13, _forTrack0$G);
|
|
68702
69118
|
i0.ɵɵelementEnd();
|
|
68703
69119
|
} if (rf & 2) {
|
|
68704
69120
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
@@ -68990,7 +69406,7 @@ class RecommendationsTiledGridComponent {
|
|
|
68990
69406
|
}], null, { recommendations: [{ type: i0.Input, args: [{ isSignal: true, alias: "recommendations", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], isLoading: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoading", required: false }] }], viewMoreClick: [{ type: i0.Output, args: ["viewMoreClick"] }] }); })();
|
|
68991
69407
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(RecommendationsTiledGridComponent, { className: "RecommendationsTiledGridComponent", filePath: "lib/components/business-analysis-dashboard/recommendations-tiled-grid.component.ts", lineNumber: 92 }); })();
|
|
68992
69408
|
|
|
68993
|
-
const _forTrack0$
|
|
69409
|
+
const _forTrack0$F = ($index, $item) => $item.section.id;
|
|
68994
69410
|
function CollapsibleSectionGroupComponent_For_23_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
68995
69411
|
i0.ɵɵelementStart(0, "div", 20);
|
|
68996
69412
|
i0.ɵɵelement(1, "symphiq-icon", 30);
|
|
@@ -69262,7 +69678,7 @@ class CollapsibleSectionGroupComponent {
|
|
|
69262
69678
|
i0.ɵɵtext(20, " The information below was gathered from your website and competitor research. While recommendations above are based on this initial analysis, connecting your GA4 data will provide quantitative insights that dramatically improve recommendation accuracy. ");
|
|
69263
69679
|
i0.ɵɵelementEnd()()();
|
|
69264
69680
|
i0.ɵɵelementStart(21, "div", 16);
|
|
69265
|
-
i0.ɵɵrepeaterCreate(22, CollapsibleSectionGroupComponent_For_23_Template, 15, 17, "div", 17, _forTrack0$
|
|
69681
|
+
i0.ɵɵrepeaterCreate(22, CollapsibleSectionGroupComponent_For_23_Template, 15, 17, "div", 17, _forTrack0$F);
|
|
69266
69682
|
i0.ɵɵelementEnd()()();
|
|
69267
69683
|
} if (rf & 2) {
|
|
69268
69684
|
i0.ɵɵproperty("ngClass", ctx.containerClasses());
|
|
@@ -70780,7 +71196,7 @@ class MetricWelcomeBannerComponent {
|
|
|
70780
71196
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(MetricWelcomeBannerComponent, { className: "MetricWelcomeBannerComponent", filePath: "lib/components/profile-analysis-shop-dashboard/metric-welcome-banner.component.ts", lineNumber: 63 }); })();
|
|
70781
71197
|
|
|
70782
71198
|
const _c0$C = a0 => ({ name: "chevron-right", source: a0 });
|
|
70783
|
-
const _forTrack0$
|
|
71199
|
+
const _forTrack0$E = ($index, $item) => $item.id;
|
|
70784
71200
|
function RelatedGoalChipsComponent_Conditional_0_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
70785
71201
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
70786
71202
|
i0.ɵɵelementStart(0, "button", 2);
|
|
@@ -70801,7 +71217,7 @@ function RelatedGoalChipsComponent_Conditional_0_For_2_Template(rf, ctx) { if (r
|
|
|
70801
71217
|
} }
|
|
70802
71218
|
function RelatedGoalChipsComponent_Conditional_0_Template(rf, ctx) { if (rf & 1) {
|
|
70803
71219
|
i0.ɵɵelementStart(0, "div", 0);
|
|
70804
|
-
i0.ɵɵrepeaterCreate(1, RelatedGoalChipsComponent_Conditional_0_For_2_Template, 4, 5, "button", 1, _forTrack0$
|
|
71220
|
+
i0.ɵɵrepeaterCreate(1, RelatedGoalChipsComponent_Conditional_0_For_2_Template, 4, 5, "button", 1, _forTrack0$E);
|
|
70805
71221
|
i0.ɵɵelementEnd();
|
|
70806
71222
|
} if (rf & 2) {
|
|
70807
71223
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -70970,7 +71386,7 @@ const _c7 = a0 => ({ name: "light-bulb", source: a0 });
|
|
|
70970
71386
|
const _c8 = a0 => ({ name: "clock", source: a0 });
|
|
70971
71387
|
const _c9 = a0 => [a0];
|
|
70972
71388
|
const _c10 = () => [];
|
|
70973
|
-
const _forTrack0$
|
|
71389
|
+
const _forTrack0$D = ($index, $item) => $item.index;
|
|
70974
71390
|
function MetricExecutiveSummaryComponent_Conditional_11_Template(rf, ctx) { if (rf & 1) {
|
|
70975
71391
|
i0.ɵɵelement(0, "symphiq-grade-badge", 9);
|
|
70976
71392
|
} if (rf & 2) {
|
|
@@ -71277,7 +71693,7 @@ function MetricExecutiveSummaryComponent_Conditional_31_Template(rf, ctx) { if (
|
|
|
71277
71693
|
i0.ɵɵtext(2, "Quick Wins");
|
|
71278
71694
|
i0.ɵɵelementEnd();
|
|
71279
71695
|
i0.ɵɵelementStart(3, "div", 48);
|
|
71280
|
-
i0.ɵɵrepeaterCreate(4, MetricExecutiveSummaryComponent_Conditional_31_For_5_Template, 14, 11, "div", 49, _forTrack0$
|
|
71696
|
+
i0.ɵɵrepeaterCreate(4, MetricExecutiveSummaryComponent_Conditional_31_For_5_Template, 14, 11, "div", 49, _forTrack0$D);
|
|
71281
71697
|
i0.ɵɵelementEnd()();
|
|
71282
71698
|
} if (rf & 2) {
|
|
71283
71699
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
@@ -73531,7 +73947,7 @@ class CapabilityMatrixCardComponent {
|
|
|
73531
73947
|
}], () => [], { capability: [{ type: i0.Input, args: [{ isSignal: true, alias: "capability", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], allGoals: [{ type: i0.Input, args: [{ isSignal: true, alias: "allGoals", required: false }] }] }); })();
|
|
73532
73948
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CapabilityMatrixCardComponent, { className: "CapabilityMatrixCardComponent", filePath: "lib/components/profile-analysis-shop-dashboard/cards/capability-matrix-card.component.ts", lineNumber: 118 }); })();
|
|
73533
73949
|
|
|
73534
|
-
const _forTrack0$
|
|
73950
|
+
const _forTrack0$C = ($index, $item) => $item.competitorId || $index;
|
|
73535
73951
|
function CompetitiveComparisonCardComponent_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
73536
73952
|
i0.ɵɵelementStart(0, "span", 15);
|
|
73537
73953
|
i0.ɵɵtext(1);
|
|
@@ -73644,7 +74060,7 @@ function CompetitiveComparisonCardComponent_Conditional_13_Template(rf, ctx) { i
|
|
|
73644
74060
|
i0.ɵɵelementStart(0, "div", 12)(1, "h6", 21);
|
|
73645
74061
|
i0.ɵɵtext(2, " Competitor Positions ");
|
|
73646
74062
|
i0.ɵɵelementEnd();
|
|
73647
|
-
i0.ɵɵrepeaterCreate(3, CompetitiveComparisonCardComponent_Conditional_13_For_4_Template, 7, 6, "div", 22, _forTrack0$
|
|
74063
|
+
i0.ɵɵrepeaterCreate(3, CompetitiveComparisonCardComponent_Conditional_13_For_4_Template, 7, 6, "div", 22, _forTrack0$C);
|
|
73648
74064
|
i0.ɵɵelementEnd();
|
|
73649
74065
|
} if (rf & 2) {
|
|
73650
74066
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -74033,7 +74449,7 @@ class CompetitiveComparisonCardComponent {
|
|
|
74033
74449
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CompetitiveComparisonCardComponent, { className: "CompetitiveComparisonCardComponent", filePath: "lib/components/profile-analysis-shop-dashboard/cards/competitive-comparison-card.component.ts", lineNumber: 126 }); })();
|
|
74034
74450
|
|
|
74035
74451
|
const _c0$y = a0 => ({ name: "chevron-right", source: a0 });
|
|
74036
|
-
const _forTrack0$
|
|
74452
|
+
const _forTrack0$B = ($index, $item) => $item.id;
|
|
74037
74453
|
function PhaseTimelineCardComponent_Conditional_8_For_7_Template(rf, ctx) { if (rf & 1) {
|
|
74038
74454
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
74039
74455
|
i0.ɵɵelementStart(0, "button", 15);
|
|
@@ -74062,7 +74478,7 @@ function PhaseTimelineCardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1
|
|
|
74062
74478
|
i0.ɵɵelementEnd();
|
|
74063
74479
|
i0.ɵɵnamespaceHTML();
|
|
74064
74480
|
i0.ɵɵelementStart(5, "div", 13);
|
|
74065
|
-
i0.ɵɵrepeaterCreate(6, PhaseTimelineCardComponent_Conditional_8_For_7_Template, 4, 5, "button", 14, _forTrack0$
|
|
74481
|
+
i0.ɵɵrepeaterCreate(6, PhaseTimelineCardComponent_Conditional_8_For_7_Template, 4, 5, "button", 14, _forTrack0$B);
|
|
74066
74482
|
i0.ɵɵelementEnd()();
|
|
74067
74483
|
} if (rf & 2) {
|
|
74068
74484
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -74099,7 +74515,7 @@ function PhaseTimelineCardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1
|
|
|
74099
74515
|
i0.ɵɵelementEnd();
|
|
74100
74516
|
i0.ɵɵnamespaceHTML();
|
|
74101
74517
|
i0.ɵɵelementStart(5, "div", 18);
|
|
74102
|
-
i0.ɵɵrepeaterCreate(6, PhaseTimelineCardComponent_Conditional_9_For_7_Template, 4, 5, "button", 14, _forTrack0$
|
|
74518
|
+
i0.ɵɵrepeaterCreate(6, PhaseTimelineCardComponent_Conditional_9_For_7_Template, 4, 5, "button", 14, _forTrack0$B);
|
|
74103
74519
|
i0.ɵɵelementEnd()();
|
|
74104
74520
|
} if (rf & 2) {
|
|
74105
74521
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -75113,7 +75529,7 @@ class OperationalCategoryCardComponent {
|
|
|
75113
75529
|
|
|
75114
75530
|
const _c0$w = a0 => ({ name: "arrow-trending-up", source: a0 });
|
|
75115
75531
|
const _c1$g = a0 => ({ name: "chat-bubble-left-right", source: a0 });
|
|
75116
|
-
const _forTrack0$
|
|
75532
|
+
const _forTrack0$A = ($index, $item) => $item.questionId;
|
|
75117
75533
|
function KeyDriverCardComponent_Conditional_12_For_6_Template(rf, ctx) { if (rf & 1) {
|
|
75118
75534
|
i0.ɵɵelementStart(0, "div", 13)(1, "p", 14);
|
|
75119
75535
|
i0.ɵɵtext(2);
|
|
@@ -75133,7 +75549,7 @@ function KeyDriverCardComponent_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
|
75133
75549
|
i0.ɵɵelementStart(3, "span", 12);
|
|
75134
75550
|
i0.ɵɵtext(4, " Supporting Profile Insights ");
|
|
75135
75551
|
i0.ɵɵelementEnd()();
|
|
75136
|
-
i0.ɵɵrepeaterCreate(5, KeyDriverCardComponent_Conditional_12_For_6_Template, 3, 3, "div", 13, _forTrack0$
|
|
75552
|
+
i0.ɵɵrepeaterCreate(5, KeyDriverCardComponent_Conditional_12_For_6_Template, 3, 3, "div", 13, _forTrack0$A);
|
|
75137
75553
|
i0.ɵɵelementEnd();
|
|
75138
75554
|
} if (rf & 2) {
|
|
75139
75555
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -75323,7 +75739,7 @@ class KeyDriverCardComponent {
|
|
|
75323
75739
|
|
|
75324
75740
|
const _c0$v = a0 => ({ name: "exclamation-triangle", source: a0 });
|
|
75325
75741
|
const _c1$f = a0 => ({ name: "chat-bubble-left-right", source: a0 });
|
|
75326
|
-
const _forTrack0$
|
|
75742
|
+
const _forTrack0$z = ($index, $item) => $item.questionId;
|
|
75327
75743
|
function BottleneckCardComponent_Conditional_12_For_6_Template(rf, ctx) { if (rf & 1) {
|
|
75328
75744
|
i0.ɵɵelementStart(0, "div", 13)(1, "p", 14);
|
|
75329
75745
|
i0.ɵɵtext(2);
|
|
@@ -75343,7 +75759,7 @@ function BottleneckCardComponent_Conditional_12_Template(rf, ctx) { if (rf & 1)
|
|
|
75343
75759
|
i0.ɵɵelementStart(3, "span", 12);
|
|
75344
75760
|
i0.ɵɵtext(4, " Supporting Profile Insights ");
|
|
75345
75761
|
i0.ɵɵelementEnd()();
|
|
75346
|
-
i0.ɵɵrepeaterCreate(5, BottleneckCardComponent_Conditional_12_For_6_Template, 3, 3, "div", 13, _forTrack0$
|
|
75762
|
+
i0.ɵɵrepeaterCreate(5, BottleneckCardComponent_Conditional_12_For_6_Template, 3, 3, "div", 13, _forTrack0$z);
|
|
75347
75763
|
i0.ɵɵelementEnd();
|
|
75348
75764
|
} if (rf & 2) {
|
|
75349
75765
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -75552,7 +75968,7 @@ const _c0$u = a0 => ({ name: "arrow-right", source: a0 });
|
|
|
75552
75968
|
const _c1$e = a0 => ({ name: "arrow-left", source: a0 });
|
|
75553
75969
|
const _c2$b = a0 => ({ name: "arrows-right-left", source: a0 });
|
|
75554
75970
|
const _c3$6 = a0 => ({ name: "scale", source: a0 });
|
|
75555
|
-
const _forTrack0$
|
|
75971
|
+
const _forTrack0$y = ($index, $item) => $item.metric;
|
|
75556
75972
|
function MetricRelationshipsCardComponent_Conditional_1_For_8_Template(rf, ctx) { if (rf & 1) {
|
|
75557
75973
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
75558
75974
|
i0.ɵɵelementStart(0, "button", 8);
|
|
@@ -75577,7 +75993,7 @@ function MetricRelationshipsCardComponent_Conditional_1_Template(rf, ctx) { if (
|
|
|
75577
75993
|
i0.ɵɵtext(5, " Directly Influences ");
|
|
75578
75994
|
i0.ɵɵelementEnd()();
|
|
75579
75995
|
i0.ɵɵelementStart(6, "div", 6);
|
|
75580
|
-
i0.ɵɵrepeaterCreate(7, MetricRelationshipsCardComponent_Conditional_1_For_8_Template, 4, 2, "button", 7, _forTrack0$
|
|
75996
|
+
i0.ɵɵrepeaterCreate(7, MetricRelationshipsCardComponent_Conditional_1_For_8_Template, 4, 2, "button", 7, _forTrack0$y);
|
|
75581
75997
|
i0.ɵɵelementEnd()();
|
|
75582
75998
|
} if (rf & 2) {
|
|
75583
75999
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -75615,7 +76031,7 @@ function MetricRelationshipsCardComponent_Conditional_2_Template(rf, ctx) { if (
|
|
|
75615
76031
|
i0.ɵɵtext(5, " Directly Influenced By ");
|
|
75616
76032
|
i0.ɵɵelementEnd()();
|
|
75617
76033
|
i0.ɵɵelementStart(6, "div", 6);
|
|
75618
|
-
i0.ɵɵrepeaterCreate(7, MetricRelationshipsCardComponent_Conditional_2_For_8_Template, 4, 2, "button", 7, _forTrack0$
|
|
76034
|
+
i0.ɵɵrepeaterCreate(7, MetricRelationshipsCardComponent_Conditional_2_For_8_Template, 4, 2, "button", 7, _forTrack0$y);
|
|
75619
76035
|
i0.ɵɵelementEnd()();
|
|
75620
76036
|
} if (rf & 2) {
|
|
75621
76037
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -75661,7 +76077,7 @@ function MetricRelationshipsCardComponent_Conditional_3_Template(rf, ctx) { if (
|
|
|
75661
76077
|
i0.ɵɵtext(5, " Trade-offs ");
|
|
75662
76078
|
i0.ɵɵelementEnd()();
|
|
75663
76079
|
i0.ɵɵelementStart(6, "div", 11);
|
|
75664
|
-
i0.ɵɵrepeaterCreate(7, MetricRelationshipsCardComponent_Conditional_3_For_8_Template, 7, 9, "div", 12, _forTrack0$
|
|
76080
|
+
i0.ɵɵrepeaterCreate(7, MetricRelationshipsCardComponent_Conditional_3_For_8_Template, 7, 9, "div", 12, _forTrack0$y);
|
|
75665
76081
|
i0.ɵɵelementEnd()();
|
|
75666
76082
|
} if (rf & 2) {
|
|
75667
76083
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
@@ -75901,7 +76317,7 @@ class MetricRelationshipsCardComponent {
|
|
|
75901
76317
|
|
|
75902
76318
|
const _c0$t = a0 => ({ name: "chevron-right", source: a0 });
|
|
75903
76319
|
const _c1$d = a0 => ({ name: "link", source: a0 });
|
|
75904
|
-
const _forTrack0$
|
|
76320
|
+
const _forTrack0$x = ($index, $item) => $item.id;
|
|
75905
76321
|
function RelatedMetricCardComponent_Conditional_18_Conditional_5_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
75906
76322
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
75907
76323
|
i0.ɵɵelementStart(0, "button", 18);
|
|
@@ -75922,7 +76338,7 @@ function RelatedMetricCardComponent_Conditional_18_Conditional_5_For_2_Template(
|
|
|
75922
76338
|
} }
|
|
75923
76339
|
function RelatedMetricCardComponent_Conditional_18_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
75924
76340
|
i0.ɵɵelementStart(0, "div", 16);
|
|
75925
|
-
i0.ɵɵrepeaterCreate(1, RelatedMetricCardComponent_Conditional_18_Conditional_5_For_2_Template, 4, 5, "button", 17, _forTrack0$
|
|
76341
|
+
i0.ɵɵrepeaterCreate(1, RelatedMetricCardComponent_Conditional_18_Conditional_5_For_2_Template, 4, 5, "button", 17, _forTrack0$x);
|
|
75926
76342
|
i0.ɵɵelementEnd();
|
|
75927
76343
|
} if (rf & 2) {
|
|
75928
76344
|
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
@@ -76235,7 +76651,7 @@ class RelatedMetricCardComponent {
|
|
|
76235
76651
|
}], null, { metric: [{ type: i0.Input, args: [{ isSignal: true, alias: "metric", required: true }] }], relationship: [{ type: i0.Input, args: [{ isSignal: true, alias: "relationship", required: true }] }], relationshipDescription: [{ type: i0.Input, args: [{ isSignal: true, alias: "relationshipDescription", required: true }] }], priority: [{ type: i0.Input, args: [{ isSignal: true, alias: "priority", required: true }] }], sharedGoalIds: [{ type: i0.Input, args: [{ isSignal: true, alias: "sharedGoalIds", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], allGoals: [{ type: i0.Input, args: [{ isSignal: true, alias: "allGoals", required: false }] }], cardClicked: [{ type: i0.Output, args: ["cardClicked"] }] }); })();
|
|
76236
76652
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(RelatedMetricCardComponent, { className: "RelatedMetricCardComponent", filePath: "lib/components/profile-analysis-shop-dashboard/cards/related-metric-card.component.ts", lineNumber: 97 }); })();
|
|
76237
76653
|
|
|
76238
|
-
const _forTrack0$
|
|
76654
|
+
const _forTrack0$w = ($index, $item) => $item.metric;
|
|
76239
76655
|
function RelatedMetricsListComponent_Conditional_1_For_14_Template(rf, ctx) { if (rf & 1) {
|
|
76240
76656
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
76241
76657
|
i0.ɵɵelementStart(0, "symphiq-related-metric-card", 12);
|
|
@@ -76263,7 +76679,7 @@ function RelatedMetricsListComponent_Conditional_1_Template(rf, ctx) { if (rf &
|
|
|
76263
76679
|
i0.ɵɵtext(11);
|
|
76264
76680
|
i0.ɵɵelementEnd()();
|
|
76265
76681
|
i0.ɵɵelementStart(12, "div", 10);
|
|
76266
|
-
i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_1_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$
|
|
76682
|
+
i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_1_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$w);
|
|
76267
76683
|
i0.ɵɵelementEnd()();
|
|
76268
76684
|
} if (rf & 2) {
|
|
76269
76685
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -76309,7 +76725,7 @@ function RelatedMetricsListComponent_Conditional_2_Template(rf, ctx) { if (rf &
|
|
|
76309
76725
|
i0.ɵɵtext(11);
|
|
76310
76726
|
i0.ɵɵelementEnd()();
|
|
76311
76727
|
i0.ɵɵelementStart(12, "div", 10);
|
|
76312
|
-
i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_2_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$
|
|
76728
|
+
i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_2_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$w);
|
|
76313
76729
|
i0.ɵɵelementEnd()();
|
|
76314
76730
|
} if (rf & 2) {
|
|
76315
76731
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -76355,7 +76771,7 @@ function RelatedMetricsListComponent_Conditional_3_Template(rf, ctx) { if (rf &
|
|
|
76355
76771
|
i0.ɵɵtext(11);
|
|
76356
76772
|
i0.ɵɵelementEnd()();
|
|
76357
76773
|
i0.ɵɵelementStart(12, "div", 10);
|
|
76358
|
-
i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_3_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$
|
|
76774
|
+
i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_3_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$w);
|
|
76359
76775
|
i0.ɵɵelementEnd()();
|
|
76360
76776
|
} if (rf & 2) {
|
|
76361
76777
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -76401,7 +76817,7 @@ function RelatedMetricsListComponent_Conditional_4_Template(rf, ctx) { if (rf &
|
|
|
76401
76817
|
i0.ɵɵtext(11);
|
|
76402
76818
|
i0.ɵɵelementEnd()();
|
|
76403
76819
|
i0.ɵɵelementStart(12, "div", 10);
|
|
76404
|
-
i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_4_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$
|
|
76820
|
+
i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_4_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$w);
|
|
76405
76821
|
i0.ɵɵelementEnd()();
|
|
76406
76822
|
} if (rf & 2) {
|
|
76407
76823
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -77892,7 +78308,7 @@ const _c3$3 = a0 => [a0];
|
|
|
77892
78308
|
const _c4$1 = () => [];
|
|
77893
78309
|
const _c5 = a0 => ({ name: "chart-bar", source: a0 });
|
|
77894
78310
|
const _c6 = a0 => ({ name: "user", source: a0 });
|
|
77895
|
-
const _forTrack0$
|
|
78311
|
+
const _forTrack0$v = ($index, $item) => $item.id || $index;
|
|
77896
78312
|
const _forTrack1$7 = ($index, $item) => $item.dimension || $index;
|
|
77897
78313
|
const _forTrack2$1 = ($index, $item) => $item.rec.id || $index;
|
|
77898
78314
|
const _forTrack3$1 = ($index, $item) => $item.phase || $index;
|
|
@@ -78221,7 +78637,7 @@ function ProfileSectionContentComponent_Conditional_4_For_2_Template(rf, ctx) {
|
|
|
78221
78637
|
} }
|
|
78222
78638
|
function ProfileSectionContentComponent_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
78223
78639
|
i0.ɵɵelementStart(0, "div", 3);
|
|
78224
|
-
i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_4_For_2_Template, 2, 3, "div", null, _forTrack0$
|
|
78640
|
+
i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_4_For_2_Template, 2, 3, "div", null, _forTrack0$v);
|
|
78225
78641
|
i0.ɵɵelementEnd();
|
|
78226
78642
|
} if (rf & 2) {
|
|
78227
78643
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -78238,7 +78654,7 @@ function ProfileSectionContentComponent_Conditional_5_For_2_Template(rf, ctx) {
|
|
|
78238
78654
|
} }
|
|
78239
78655
|
function ProfileSectionContentComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
78240
78656
|
i0.ɵɵelementStart(0, "div", 4);
|
|
78241
|
-
i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_5_For_2_Template, 1, 8, "symphiq-goal-card", 47, _forTrack0$
|
|
78657
|
+
i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_5_For_2_Template, 1, 8, "symphiq-goal-card", 47, _forTrack0$v);
|
|
78242
78658
|
i0.ɵɵelementEnd();
|
|
78243
78659
|
} if (rf & 2) {
|
|
78244
78660
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -78254,7 +78670,7 @@ function ProfileSectionContentComponent_Conditional_6_For_2_Template(rf, ctx) {
|
|
|
78254
78670
|
} }
|
|
78255
78671
|
function ProfileSectionContentComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
78256
78672
|
i0.ɵɵelementStart(0, "div", 5);
|
|
78257
|
-
i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_6_For_2_Template, 1, 3, "symphiq-capability-matrix-card", 48, _forTrack0$
|
|
78673
|
+
i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_6_For_2_Template, 1, 3, "symphiq-capability-matrix-card", 48, _forTrack0$v);
|
|
78258
78674
|
i0.ɵɵelementEnd();
|
|
78259
78675
|
} if (rf & 2) {
|
|
78260
78676
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -78309,7 +78725,7 @@ function ProfileSectionContentComponent_Conditional_9_For_2_Template(rf, ctx) {
|
|
|
78309
78725
|
} }
|
|
78310
78726
|
function ProfileSectionContentComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
78311
78727
|
i0.ɵɵelementStart(0, "div", 8);
|
|
78312
|
-
i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_9_For_2_Template, 1, 2, "symphiq-operational-category-card", 52, _forTrack0$
|
|
78728
|
+
i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_9_For_2_Template, 1, 2, "symphiq-operational-category-card", 52, _forTrack0$v);
|
|
78313
78729
|
i0.ɵɵelementEnd();
|
|
78314
78730
|
} if (rf & 2) {
|
|
78315
78731
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
@@ -80706,363 +81122,6 @@ class ProfileSectionContentComponent {
|
|
|
80706
81122
|
}], null, { section: [{ type: i0.Input, args: [{ isSignal: true, alias: "section", required: false }] }], executiveSummary: [{ type: i0.Input, args: [{ isSignal: true, alias: "executiveSummary", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], sectionIndex: [{ type: i0.Input, args: [{ isSignal: true, alias: "sectionIndex", required: false }] }], allGoals: [{ type: i0.Input, args: [{ isSignal: true, alias: "allGoals", required: false }] }], allMetrics: [{ type: i0.Input, args: [{ isSignal: true, alias: "allMetrics", required: false }] }], allCharts: [{ type: i0.Input, args: [{ isSignal: true, alias: "allCharts", required: false }] }], allInsights: [{ type: i0.Input, args: [{ isSignal: true, alias: "allInsights", required: false }] }], businessProfile: [{ type: i0.Input, args: [{ isSignal: true, alias: "businessProfile", required: false }] }] }); })();
|
|
80707
81123
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileSectionContentComponent, { className: "ProfileSectionContentComponent", filePath: "lib/components/profile-analysis-shop-dashboard/profile-section-content.component.ts", lineNumber: 765 }); })();
|
|
80708
81124
|
|
|
80709
|
-
const _forTrack0$v = ($index, $item) => $item.id || $index;
|
|
80710
|
-
function GoalObjectivesModalContentComponent_For_2_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
80711
|
-
i0.ɵɵelementStart(0, "p", 9);
|
|
80712
|
-
i0.ɵɵtext(1);
|
|
80713
|
-
i0.ɵɵelementEnd();
|
|
80714
|
-
} if (rf & 2) {
|
|
80715
|
-
const objective_r1 = i0.ɵɵnextContext().$implicit;
|
|
80716
|
-
const ctx_r1 = i0.ɵɵnextContext();
|
|
80717
|
-
i0.ɵɵproperty("ngClass", ctx_r1.descriptionClasses());
|
|
80718
|
-
i0.ɵɵadvance();
|
|
80719
|
-
i0.ɵɵtextInterpolate(objective_r1.description);
|
|
80720
|
-
} }
|
|
80721
|
-
function GoalObjectivesModalContentComponent_For_2_Conditional_11_Template(rf, ctx) { if (rf & 1) {
|
|
80722
|
-
i0.ɵɵelementStart(0, "div", 10)(1, "div", 13);
|
|
80723
|
-
i0.ɵɵnamespaceSVG();
|
|
80724
|
-
i0.ɵɵelementStart(2, "svg", 14);
|
|
80725
|
-
i0.ɵɵelement(3, "path", 15);
|
|
80726
|
-
i0.ɵɵelementEnd();
|
|
80727
|
-
i0.ɵɵnamespaceHTML();
|
|
80728
|
-
i0.ɵɵelementStart(4, "div", 16)(5, "p", 17);
|
|
80729
|
-
i0.ɵɵtext(6, "Measurable Target");
|
|
80730
|
-
i0.ɵɵelementEnd();
|
|
80731
|
-
i0.ɵɵelementStart(7, "p", 18);
|
|
80732
|
-
i0.ɵɵtext(8);
|
|
80733
|
-
i0.ɵɵelementEnd()()()();
|
|
80734
|
-
} if (rf & 2) {
|
|
80735
|
-
const objective_r1 = i0.ɵɵnextContext().$implicit;
|
|
80736
|
-
const ctx_r1 = i0.ɵɵnextContext();
|
|
80737
|
-
i0.ɵɵproperty("ngClass", ctx_r1.targetSectionClasses());
|
|
80738
|
-
i0.ɵɵadvance(2);
|
|
80739
|
-
i0.ɵɵproperty("ngClass", ctx_r1.targetIconClasses());
|
|
80740
|
-
i0.ɵɵadvance(3);
|
|
80741
|
-
i0.ɵɵproperty("ngClass", ctx_r1.targetLabelClasses());
|
|
80742
|
-
i0.ɵɵadvance(2);
|
|
80743
|
-
i0.ɵɵproperty("ngClass", ctx_r1.targetValueClasses());
|
|
80744
|
-
i0.ɵɵadvance();
|
|
80745
|
-
i0.ɵɵtextInterpolate(objective_r1.measurableTarget);
|
|
80746
|
-
} }
|
|
80747
|
-
function GoalObjectivesModalContentComponent_For_2_Conditional_12_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
80748
|
-
i0.ɵɵelementStart(0, "div", 19)(1, "p", 17);
|
|
80749
|
-
i0.ɵɵtext(2, "Current State");
|
|
80750
|
-
i0.ɵɵelementEnd();
|
|
80751
|
-
i0.ɵɵelementStart(3, "p", 20);
|
|
80752
|
-
i0.ɵɵtext(4);
|
|
80753
|
-
i0.ɵɵelementEnd()();
|
|
80754
|
-
} if (rf & 2) {
|
|
80755
|
-
const objective_r1 = i0.ɵɵnextContext(2).$implicit;
|
|
80756
|
-
const ctx_r1 = i0.ɵɵnextContext();
|
|
80757
|
-
i0.ɵɵproperty("ngClass", ctx_r1.stateSectionClasses());
|
|
80758
|
-
i0.ɵɵadvance();
|
|
80759
|
-
i0.ɵɵproperty("ngClass", ctx_r1.stateLabelClasses());
|
|
80760
|
-
i0.ɵɵadvance(2);
|
|
80761
|
-
i0.ɵɵproperty("ngClass", ctx_r1.stateValueClasses());
|
|
80762
|
-
i0.ɵɵadvance();
|
|
80763
|
-
i0.ɵɵtextInterpolate(objective_r1.currentState);
|
|
80764
|
-
} }
|
|
80765
|
-
function GoalObjectivesModalContentComponent_For_2_Conditional_12_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
80766
|
-
i0.ɵɵelementStart(0, "div", 19)(1, "p", 17);
|
|
80767
|
-
i0.ɵɵtext(2, "Desired State");
|
|
80768
|
-
i0.ɵɵelementEnd();
|
|
80769
|
-
i0.ɵɵelementStart(3, "p", 18);
|
|
80770
|
-
i0.ɵɵtext(4);
|
|
80771
|
-
i0.ɵɵelementEnd()();
|
|
80772
|
-
} if (rf & 2) {
|
|
80773
|
-
const objective_r1 = i0.ɵɵnextContext(2).$implicit;
|
|
80774
|
-
const ctx_r1 = i0.ɵɵnextContext();
|
|
80775
|
-
i0.ɵɵproperty("ngClass", ctx_r1.stateSectionClasses());
|
|
80776
|
-
i0.ɵɵadvance();
|
|
80777
|
-
i0.ɵɵproperty("ngClass", ctx_r1.stateLabelClasses());
|
|
80778
|
-
i0.ɵɵadvance(2);
|
|
80779
|
-
i0.ɵɵproperty("ngClass", ctx_r1.stateValueClasses());
|
|
80780
|
-
i0.ɵɵadvance();
|
|
80781
|
-
i0.ɵɵtextInterpolate(objective_r1.desiredState);
|
|
80782
|
-
} }
|
|
80783
|
-
function GoalObjectivesModalContentComponent_For_2_Conditional_12_Template(rf, ctx) { if (rf & 1) {
|
|
80784
|
-
i0.ɵɵelementStart(0, "div", 11);
|
|
80785
|
-
i0.ɵɵconditionalCreate(1, GoalObjectivesModalContentComponent_For_2_Conditional_12_Conditional_1_Template, 5, 4, "div", 19);
|
|
80786
|
-
i0.ɵɵconditionalCreate(2, GoalObjectivesModalContentComponent_For_2_Conditional_12_Conditional_2_Template, 5, 4, "div", 19);
|
|
80787
|
-
i0.ɵɵelementEnd();
|
|
80788
|
-
} if (rf & 2) {
|
|
80789
|
-
const objective_r1 = i0.ɵɵnextContext().$implicit;
|
|
80790
|
-
i0.ɵɵadvance();
|
|
80791
|
-
i0.ɵɵconditional(objective_r1.currentState ? 1 : -1);
|
|
80792
|
-
i0.ɵɵadvance();
|
|
80793
|
-
i0.ɵɵconditional(objective_r1.desiredState ? 2 : -1);
|
|
80794
|
-
} }
|
|
80795
|
-
function GoalObjectivesModalContentComponent_For_2_Conditional_13_Template(rf, ctx) { if (rf & 1) {
|
|
80796
|
-
const _r3 = i0.ɵɵgetCurrentView();
|
|
80797
|
-
i0.ɵɵelementStart(0, "button", 21);
|
|
80798
|
-
i0.ɵɵlistener("click", function GoalObjectivesModalContentComponent_For_2_Conditional_13_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r3); const objective_r1 = i0.ɵɵnextContext().$implicit; const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openStrategiesModal(objective_r1)); });
|
|
80799
|
-
i0.ɵɵelementStart(1, "div", 22)(2, "div", 23)(3, "div", 24);
|
|
80800
|
-
i0.ɵɵnamespaceSVG();
|
|
80801
|
-
i0.ɵɵelementStart(4, "svg", 25);
|
|
80802
|
-
i0.ɵɵelement(5, "path", 26);
|
|
80803
|
-
i0.ɵɵelementEnd()();
|
|
80804
|
-
i0.ɵɵnamespaceHTML();
|
|
80805
|
-
i0.ɵɵelementStart(6, "div", 27)(7, "div", 18);
|
|
80806
|
-
i0.ɵɵtext(8, "Show Strategies");
|
|
80807
|
-
i0.ɵɵelementEnd();
|
|
80808
|
-
i0.ɵɵelementStart(9, "div", 28);
|
|
80809
|
-
i0.ɵɵtext(10, "View objective strategies");
|
|
80810
|
-
i0.ɵɵelementEnd()()();
|
|
80811
|
-
i0.ɵɵnamespaceSVG();
|
|
80812
|
-
i0.ɵɵelementStart(11, "svg", 29);
|
|
80813
|
-
i0.ɵɵelement(12, "path", 30);
|
|
80814
|
-
i0.ɵɵelementEnd()()();
|
|
80815
|
-
} if (rf & 2) {
|
|
80816
|
-
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
80817
|
-
i0.ɵɵproperty("ngClass", ctx_r1.showStrategiesButtonClasses());
|
|
80818
|
-
i0.ɵɵadvance(3);
|
|
80819
|
-
i0.ɵɵproperty("ngClass", ctx_r1.strategiesIconBgClasses());
|
|
80820
|
-
i0.ɵɵadvance();
|
|
80821
|
-
i0.ɵɵproperty("ngClass", ctx_r1.strategiesIconClasses());
|
|
80822
|
-
i0.ɵɵadvance(3);
|
|
80823
|
-
i0.ɵɵproperty("ngClass", ctx_r1.strategiesLabelClasses());
|
|
80824
|
-
i0.ɵɵadvance(2);
|
|
80825
|
-
i0.ɵɵproperty("ngClass", ctx_r1.strategiesSubLabelClasses());
|
|
80826
|
-
i0.ɵɵadvance(2);
|
|
80827
|
-
i0.ɵɵproperty("ngClass", ctx_r1.strategiesChevronClasses());
|
|
80828
|
-
} }
|
|
80829
|
-
function GoalObjectivesModalContentComponent_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
80830
|
-
i0.ɵɵelementStart(0, "div", 1)(1, "div", 2)(2, "div", 3);
|
|
80831
|
-
i0.ɵɵnamespaceSVG();
|
|
80832
|
-
i0.ɵɵelementStart(3, "svg", 4);
|
|
80833
|
-
i0.ɵɵelement(4, "path", 5);
|
|
80834
|
-
i0.ɵɵelementEnd()();
|
|
80835
|
-
i0.ɵɵnamespaceHTML();
|
|
80836
|
-
i0.ɵɵelementStart(5, "div", 6)(6, "div", 7);
|
|
80837
|
-
i0.ɵɵtext(7, " Objective ");
|
|
80838
|
-
i0.ɵɵelementEnd();
|
|
80839
|
-
i0.ɵɵelementStart(8, "h5", 8);
|
|
80840
|
-
i0.ɵɵtext(9);
|
|
80841
|
-
i0.ɵɵelementEnd();
|
|
80842
|
-
i0.ɵɵconditionalCreate(10, GoalObjectivesModalContentComponent_For_2_Conditional_10_Template, 2, 2, "p", 9);
|
|
80843
|
-
i0.ɵɵconditionalCreate(11, GoalObjectivesModalContentComponent_For_2_Conditional_11_Template, 9, 5, "div", 10);
|
|
80844
|
-
i0.ɵɵconditionalCreate(12, GoalObjectivesModalContentComponent_For_2_Conditional_12_Template, 3, 2, "div", 11);
|
|
80845
|
-
i0.ɵɵconditionalCreate(13, GoalObjectivesModalContentComponent_For_2_Conditional_13_Template, 13, 6, "button", 12);
|
|
80846
|
-
i0.ɵɵelementEnd()()();
|
|
80847
|
-
} if (rf & 2) {
|
|
80848
|
-
const objective_r1 = ctx.$implicit;
|
|
80849
|
-
const ctx_r1 = i0.ɵɵnextContext();
|
|
80850
|
-
i0.ɵɵproperty("ngClass", ctx_r1.cardClasses());
|
|
80851
|
-
i0.ɵɵadvance(2);
|
|
80852
|
-
i0.ɵɵproperty("ngClass", ctx_r1.iconContainerClasses());
|
|
80853
|
-
i0.ɵɵadvance(4);
|
|
80854
|
-
i0.ɵɵproperty("ngClass", ctx_r1.labelClasses());
|
|
80855
|
-
i0.ɵɵadvance(2);
|
|
80856
|
-
i0.ɵɵproperty("ngClass", ctx_r1.titleClasses());
|
|
80857
|
-
i0.ɵɵadvance();
|
|
80858
|
-
i0.ɵɵtextInterpolate(objective_r1.title);
|
|
80859
|
-
i0.ɵɵadvance();
|
|
80860
|
-
i0.ɵɵconditional(objective_r1.description ? 10 : -1);
|
|
80861
|
-
i0.ɵɵadvance();
|
|
80862
|
-
i0.ɵɵconditional(objective_r1.measurableTarget ? 11 : -1);
|
|
80863
|
-
i0.ɵɵadvance();
|
|
80864
|
-
i0.ɵɵconditional(objective_r1.currentState || objective_r1.desiredState ? 12 : -1);
|
|
80865
|
-
i0.ɵɵadvance();
|
|
80866
|
-
i0.ɵɵconditional(objective_r1.strategies && objective_r1.strategies.length > 0 ? 13 : -1);
|
|
80867
|
-
} }
|
|
80868
|
-
class GoalObjectivesModalContentComponent {
|
|
80869
|
-
constructor() {
|
|
80870
|
-
this.objectives = input.required(...(ngDevMode ? [{ debugName: "objectives" }] : []));
|
|
80871
|
-
this.goalTitle = input.required(...(ngDevMode ? [{ debugName: "goalTitle" }] : []));
|
|
80872
|
-
this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
|
|
80873
|
-
this.modalService = inject(ModalService);
|
|
80874
|
-
this.isDark = computed(() => this.viewMode() === ViewModeEnum.DARK, ...(ngDevMode ? [{ debugName: "isDark" }] : []));
|
|
80875
|
-
this.cardClasses = computed(() => {
|
|
80876
|
-
const base = 'transition-all duration-200';
|
|
80877
|
-
if (this.isDark()) {
|
|
80878
|
-
return `${base} bg-slate-900/30 border border-slate-700/30 hover:border-blue-500/20`;
|
|
80879
|
-
}
|
|
80880
|
-
return `${base} bg-slate-50/50 border border-slate-200/50 hover:border-blue-500/20`;
|
|
80881
|
-
}, ...(ngDevMode ? [{ debugName: "cardClasses" }] : []));
|
|
80882
|
-
this.iconContainerClasses = computed(() => {
|
|
80883
|
-
if (this.isDark()) {
|
|
80884
|
-
return 'flex-shrink-0 w-8 h-8 rounded-md bg-green-500/20 flex items-center justify-center text-green-400';
|
|
80885
|
-
}
|
|
80886
|
-
return 'flex-shrink-0 w-8 h-8 rounded-md bg-green-50 flex items-center justify-center text-green-600';
|
|
80887
|
-
}, ...(ngDevMode ? [{ debugName: "iconContainerClasses" }] : []));
|
|
80888
|
-
this.titleClasses = computed(() => {
|
|
80889
|
-
return this.isDark() ? 'text-slate-100' : 'text-slate-900';
|
|
80890
|
-
}, ...(ngDevMode ? [{ debugName: "titleClasses" }] : []));
|
|
80891
|
-
this.descriptionClasses = computed(() => {
|
|
80892
|
-
return this.isDark() ? 'text-slate-300' : 'text-slate-600';
|
|
80893
|
-
}, ...(ngDevMode ? [{ debugName: "descriptionClasses" }] : []));
|
|
80894
|
-
this.targetSectionClasses = computed(() => {
|
|
80895
|
-
if (this.isDark()) {
|
|
80896
|
-
return 'bg-blue-500/10 border border-blue-500/20';
|
|
80897
|
-
}
|
|
80898
|
-
return 'bg-blue-50 border border-blue-200';
|
|
80899
|
-
}, ...(ngDevMode ? [{ debugName: "targetSectionClasses" }] : []));
|
|
80900
|
-
this.targetIconClasses = computed(() => {
|
|
80901
|
-
return this.isDark() ? 'text-blue-400' : 'text-blue-600';
|
|
80902
|
-
}, ...(ngDevMode ? [{ debugName: "targetIconClasses" }] : []));
|
|
80903
|
-
this.targetLabelClasses = computed(() => {
|
|
80904
|
-
return this.isDark() ? 'text-slate-400' : 'text-slate-500';
|
|
80905
|
-
}, ...(ngDevMode ? [{ debugName: "targetLabelClasses" }] : []));
|
|
80906
|
-
this.targetValueClasses = computed(() => {
|
|
80907
|
-
return this.isDark() ? 'text-slate-100' : 'text-slate-900';
|
|
80908
|
-
}, ...(ngDevMode ? [{ debugName: "targetValueClasses" }] : []));
|
|
80909
|
-
this.stateSectionClasses = computed(() => {
|
|
80910
|
-
if (this.isDark()) {
|
|
80911
|
-
return 'bg-slate-800/50 border border-slate-700/50';
|
|
80912
|
-
}
|
|
80913
|
-
return 'bg-white border border-slate-200';
|
|
80914
|
-
}, ...(ngDevMode ? [{ debugName: "stateSectionClasses" }] : []));
|
|
80915
|
-
this.stateLabelClasses = computed(() => {
|
|
80916
|
-
return this.isDark() ? 'text-slate-400' : 'text-slate-500';
|
|
80917
|
-
}, ...(ngDevMode ? [{ debugName: "stateLabelClasses" }] : []));
|
|
80918
|
-
this.stateValueClasses = computed(() => {
|
|
80919
|
-
return this.isDark() ? 'text-slate-200' : 'text-slate-700';
|
|
80920
|
-
}, ...(ngDevMode ? [{ debugName: "stateValueClasses" }] : []));
|
|
80921
|
-
this.showStrategiesButtonClasses = computed(() => {
|
|
80922
|
-
if (this.isDark()) {
|
|
80923
|
-
return 'bg-slate-800/50 border-slate-700 hover:border-blue-500/50 hover:bg-slate-700/50';
|
|
80924
|
-
}
|
|
80925
|
-
return 'bg-white border-slate-200 hover:border-blue-500/50 hover:bg-slate-50';
|
|
80926
|
-
}, ...(ngDevMode ? [{ debugName: "showStrategiesButtonClasses" }] : []));
|
|
80927
|
-
this.strategiesIconBgClasses = computed(() => {
|
|
80928
|
-
if (this.isDark()) {
|
|
80929
|
-
return 'bg-blue-900/30';
|
|
80930
|
-
}
|
|
80931
|
-
return 'bg-blue-100';
|
|
80932
|
-
}, ...(ngDevMode ? [{ debugName: "strategiesIconBgClasses" }] : []));
|
|
80933
|
-
this.strategiesIconClasses = computed(() => {
|
|
80934
|
-
if (this.isDark()) {
|
|
80935
|
-
return 'text-blue-400';
|
|
80936
|
-
}
|
|
80937
|
-
return 'text-blue-600';
|
|
80938
|
-
}, ...(ngDevMode ? [{ debugName: "strategiesIconClasses" }] : []));
|
|
80939
|
-
this.strategiesLabelClasses = computed(() => {
|
|
80940
|
-
if (this.isDark()) {
|
|
80941
|
-
return 'text-white';
|
|
80942
|
-
}
|
|
80943
|
-
return 'text-slate-900';
|
|
80944
|
-
}, ...(ngDevMode ? [{ debugName: "strategiesLabelClasses" }] : []));
|
|
80945
|
-
this.strategiesSubLabelClasses = computed(() => {
|
|
80946
|
-
if (this.isDark()) {
|
|
80947
|
-
return 'text-slate-400';
|
|
80948
|
-
}
|
|
80949
|
-
return 'text-slate-600';
|
|
80950
|
-
}, ...(ngDevMode ? [{ debugName: "strategiesSubLabelClasses" }] : []));
|
|
80951
|
-
this.strategiesChevronClasses = computed(() => {
|
|
80952
|
-
if (this.isDark()) {
|
|
80953
|
-
return 'text-slate-500 group-hover:text-blue-400';
|
|
80954
|
-
}
|
|
80955
|
-
return 'text-slate-400 group-hover:text-blue-600';
|
|
80956
|
-
}, ...(ngDevMode ? [{ debugName: "strategiesChevronClasses" }] : []));
|
|
80957
|
-
this.labelClasses = computed(() => {
|
|
80958
|
-
return this.isDark() ? 'text-green-400' : 'text-green-600';
|
|
80959
|
-
}, ...(ngDevMode ? [{ debugName: "labelClasses" }] : []));
|
|
80960
|
-
}
|
|
80961
|
-
openStrategiesModal(objective) {
|
|
80962
|
-
this.modalService.navigateToObjectiveStrategies(objective, this.goalTitle(), this.viewMode());
|
|
80963
|
-
}
|
|
80964
|
-
static { this.ɵfac = function GoalObjectivesModalContentComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || GoalObjectivesModalContentComponent)(); }; }
|
|
80965
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: GoalObjectivesModalContentComponent, selectors: [["symphiq-goal-objectives-modal-content"]], inputs: { objectives: [1, "objectives"], goalTitle: [1, "goalTitle"], viewMode: [1, "viewMode"] }, decls: 3, vars: 0, consts: [[1, "space-y-6"], [1, "rounded-lg", "p-5", "transition-all", "duration-200", 3, "ngClass"], [1, "flex", "items-start", "gap-3"], [3, "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", "M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"], [1, "flex-1", "min-w-0"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", "mb-1", 3, "ngClass"], [1, "font-semibold", "text-base", "mb-2", 3, "ngClass"], [1, "text-sm", "mb-3", 3, "ngClass"], [1, "p-3", "rounded-lg", "mb-3", 3, "ngClass"], [1, "grid", "grid-cols-2", "gap-3", "mb-3"], [1, "w-full", "px-5", "py-4", "rounded-lg", "border-2", "transition-all", "duration-200", "hover:scale-[1.01]", "active:scale-[0.99]", "cursor-pointer", "group", 3, "ngClass"], [1, "flex", "items-start", "gap-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4", "flex-shrink-0", "mt-0.5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"], [1, "flex-1"], [1, "text-xs", "font-medium", "mb-1", 3, "ngClass"], [1, "text-sm", "font-semibold", 3, "ngClass"], [1, "p-3", "rounded-lg", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "w-full", "px-5", "py-4", "rounded-lg", "border-2", "transition-all", "duration-200", "hover:scale-[1.01]", "active:scale-[0.99]", "cursor-pointer", "group", 3, "click", "ngClass"], [1, "flex", "items-center", "justify-between"], [1, "flex", "items-center", "gap-3"], [1, "w-10", "h-10", "rounded-lg", "flex", "items-center", "justify-center", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 10V3L4 14h7v7l9-11h-7z"], [1, "text-left"], [1, "text-xs", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "transition-transform", "group-hover:translate-x-1", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"]], template: function GoalObjectivesModalContentComponent_Template(rf, ctx) { if (rf & 1) {
|
|
80966
|
-
i0.ɵɵelementStart(0, "div", 0);
|
|
80967
|
-
i0.ɵɵrepeaterCreate(1, GoalObjectivesModalContentComponent_For_2_Template, 14, 9, "div", 1, _forTrack0$v);
|
|
80968
|
-
i0.ɵɵelementEnd();
|
|
80969
|
-
} if (rf & 2) {
|
|
80970
|
-
i0.ɵɵadvance();
|
|
80971
|
-
i0.ɵɵrepeater(ctx.objectives());
|
|
80972
|
-
} }, dependencies: [CommonModule, i1$1.NgClass], encapsulation: 2, changeDetection: 0 }); }
|
|
80973
|
-
}
|
|
80974
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GoalObjectivesModalContentComponent, [{
|
|
80975
|
-
type: Component,
|
|
80976
|
-
args: [{
|
|
80977
|
-
selector: 'symphiq-goal-objectives-modal-content',
|
|
80978
|
-
standalone: true,
|
|
80979
|
-
imports: [CommonModule],
|
|
80980
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
80981
|
-
template: `
|
|
80982
|
-
<div class="space-y-6">
|
|
80983
|
-
@for (objective of objectives(); track objective.id || $index) {
|
|
80984
|
-
<div [ngClass]="cardClasses()" class="rounded-lg p-5 transition-all duration-200">
|
|
80985
|
-
<div class="flex items-start gap-3">
|
|
80986
|
-
<div [ngClass]="iconContainerClasses()">
|
|
80987
|
-
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
80988
|
-
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"/>
|
|
80989
|
-
</svg>
|
|
80990
|
-
</div>
|
|
80991
|
-
|
|
80992
|
-
<div class="flex-1 min-w-0">
|
|
80993
|
-
<div [ngClass]="labelClasses()" class="text-xs font-semibold uppercase tracking-wider mb-1">
|
|
80994
|
-
Objective
|
|
80995
|
-
</div>
|
|
80996
|
-
<h5 [ngClass]="titleClasses()" class="font-semibold text-base mb-2">{{ objective.title }}</h5>
|
|
80997
|
-
|
|
80998
|
-
@if (objective.description) {
|
|
80999
|
-
<p [ngClass]="descriptionClasses()" class="text-sm mb-3">{{ objective.description }}</p>
|
|
81000
|
-
}
|
|
81001
|
-
|
|
81002
|
-
@if (objective.measurableTarget) {
|
|
81003
|
-
<div [ngClass]="targetSectionClasses()" class="p-3 rounded-lg mb-3">
|
|
81004
|
-
<div class="flex items-start gap-2">
|
|
81005
|
-
<svg class="w-4 h-4 flex-shrink-0 mt-0.5" [ngClass]="targetIconClasses()" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
81006
|
-
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"/>
|
|
81007
|
-
</svg>
|
|
81008
|
-
<div class="flex-1">
|
|
81009
|
-
<p [ngClass]="targetLabelClasses()" class="text-xs font-medium mb-1">Measurable Target</p>
|
|
81010
|
-
<p [ngClass]="targetValueClasses()" class="text-sm font-semibold">{{ objective.measurableTarget }}</p>
|
|
81011
|
-
</div>
|
|
81012
|
-
</div>
|
|
81013
|
-
</div>
|
|
81014
|
-
}
|
|
81015
|
-
|
|
81016
|
-
@if (objective.currentState || objective.desiredState) {
|
|
81017
|
-
<div class="grid grid-cols-2 gap-3 mb-3">
|
|
81018
|
-
@if (objective.currentState) {
|
|
81019
|
-
<div [ngClass]="stateSectionClasses()" class="p-3 rounded-lg">
|
|
81020
|
-
<p [ngClass]="stateLabelClasses()" class="text-xs font-medium mb-1">Current State</p>
|
|
81021
|
-
<p [ngClass]="stateValueClasses()" class="text-sm">{{ objective.currentState }}</p>
|
|
81022
|
-
</div>
|
|
81023
|
-
}
|
|
81024
|
-
@if (objective.desiredState) {
|
|
81025
|
-
<div [ngClass]="stateSectionClasses()" class="p-3 rounded-lg">
|
|
81026
|
-
<p [ngClass]="stateLabelClasses()" class="text-xs font-medium mb-1">Desired State</p>
|
|
81027
|
-
<p [ngClass]="stateValueClasses()" class="text-sm font-semibold">{{ objective.desiredState }}</p>
|
|
81028
|
-
</div>
|
|
81029
|
-
}
|
|
81030
|
-
</div>
|
|
81031
|
-
}
|
|
81032
|
-
|
|
81033
|
-
@if (objective.strategies && objective.strategies.length > 0) {
|
|
81034
|
-
<button
|
|
81035
|
-
(click)="openStrategiesModal(objective)"
|
|
81036
|
-
[ngClass]="showStrategiesButtonClasses()"
|
|
81037
|
-
class="w-full px-5 py-4 rounded-lg border-2 transition-all duration-200 hover:scale-[1.01] active:scale-[0.99] cursor-pointer group">
|
|
81038
|
-
<div class="flex items-center justify-between">
|
|
81039
|
-
<div class="flex items-center gap-3">
|
|
81040
|
-
<div [ngClass]="strategiesIconBgClasses()" class="w-10 h-10 rounded-lg flex items-center justify-center">
|
|
81041
|
-
<svg class="w-5 h-5" [ngClass]="strategiesIconClasses()" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
81042
|
-
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/>
|
|
81043
|
-
</svg>
|
|
81044
|
-
</div>
|
|
81045
|
-
<div class="text-left">
|
|
81046
|
-
<div [ngClass]="strategiesLabelClasses()" class="text-sm font-semibold">Show Strategies</div>
|
|
81047
|
-
<div [ngClass]="strategiesSubLabelClasses()" class="text-xs">View objective strategies</div>
|
|
81048
|
-
</div>
|
|
81049
|
-
</div>
|
|
81050
|
-
<svg [ngClass]="strategiesChevronClasses()" class="w-5 h-5 transition-transform group-hover:translate-x-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
81051
|
-
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
|
|
81052
|
-
</svg>
|
|
81053
|
-
</div>
|
|
81054
|
-
</button>
|
|
81055
|
-
}
|
|
81056
|
-
</div>
|
|
81057
|
-
</div>
|
|
81058
|
-
</div>
|
|
81059
|
-
}
|
|
81060
|
-
</div>
|
|
81061
|
-
`
|
|
81062
|
-
}]
|
|
81063
|
-
}], null, { objectives: [{ type: i0.Input, args: [{ isSignal: true, alias: "objectives", required: true }] }], goalTitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "goalTitle", required: true }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }] }); })();
|
|
81064
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(GoalObjectivesModalContentComponent, { className: "GoalObjectivesModalContentComponent", filePath: "lib/components/profile-analysis-shop-dashboard/modals/goal-objectives-modal-content.component.ts", lineNumber: 94 }); })();
|
|
81065
|
-
|
|
81066
81125
|
const _forTrack0$u = ($index, $item) => $item.id || $index;
|
|
81067
81126
|
const _forTrack1$6 = ($index, $item) => ($item == null ? null : $item.questionId) || $index;
|
|
81068
81127
|
function ObjectiveStrategiesModalContentComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
@@ -82630,7 +82689,7 @@ function StrategyRecommendationsModalContentComponent_For_8_Template(rf, ctx) {
|
|
|
82630
82689
|
const $index_r5 = ctx.$index;
|
|
82631
82690
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
82632
82691
|
i0.ɵɵclassProp("cursor-pointer", ctx_r0.hasExpandableContent(recommendation_r4));
|
|
82633
|
-
i0.ɵɵproperty("ngClass", ctx_r0.
|
|
82692
|
+
i0.ɵɵproperty("ngClass", ctx_r0.getRecommendationCardClasses(recommendation_r4.id || $index_r5));
|
|
82634
82693
|
i0.ɵɵattribute("id", "recommendation-" + (recommendation_r4.id || $index_r5));
|
|
82635
82694
|
i0.ɵɵadvance(2);
|
|
82636
82695
|
i0.ɵɵproperty("ngClass", ctx_r0.iconContainerClasses());
|
|
@@ -83182,12 +83241,6 @@ class StrategyRecommendationsModalContentComponent {
|
|
|
83182
83241
|
depthCount++;
|
|
83183
83242
|
stateWalk = stateWalk.previousState ?? null;
|
|
83184
83243
|
}
|
|
83185
|
-
console.log('[StrategyRecommendations] openRelatedMetricsModal:', {
|
|
83186
|
-
currentModalStateType: currentState?.type,
|
|
83187
|
-
currentModalStateExists: !!currentState,
|
|
83188
|
-
previousStateDepth: depthCount,
|
|
83189
|
-
navigationStackLength: currentState?.navigationStack?.length
|
|
83190
|
-
});
|
|
83191
83244
|
this.modalService.openRecommendationMetricsListModal(metrics, relevantCharts, recommendationContext, directlyAffectedMetricId, indirectlyAffectedMetricIds, this.currentModalState() ?? undefined, hierarchyContext);
|
|
83192
83245
|
}
|
|
83193
83246
|
hasRelatedFunnelInsights(recommendation) {
|
|
@@ -83487,6 +83540,20 @@ class StrategyRecommendationsModalContentComponent {
|
|
|
83487
83540
|
default: return '';
|
|
83488
83541
|
}
|
|
83489
83542
|
}
|
|
83543
|
+
getRecommendationCardClasses(id) {
|
|
83544
|
+
const isExpanded = this.isRecommendationExpanded(id);
|
|
83545
|
+
const baseClasses = this.cardClasses();
|
|
83546
|
+
if (this.isDark()) {
|
|
83547
|
+
if (isExpanded) {
|
|
83548
|
+
return `${baseClasses} border-cyan-500/60 shadow-[0_0_15px_rgba(6,182,212,0.3)]`;
|
|
83549
|
+
}
|
|
83550
|
+
return `${baseClasses} hover:border-cyan-500/40 hover:shadow-[0_0_10px_rgba(6,182,212,0.2)]`;
|
|
83551
|
+
}
|
|
83552
|
+
if (isExpanded) {
|
|
83553
|
+
return `${baseClasses} border-cyan-500 shadow-[0_0_15px_rgba(6,182,212,0.25)]`;
|
|
83554
|
+
}
|
|
83555
|
+
return `${baseClasses} hover:border-cyan-400 hover:shadow-[0_0_10px_rgba(6,182,212,0.15)]`;
|
|
83556
|
+
}
|
|
83490
83557
|
priorityBadgeClasses(priority) {
|
|
83491
83558
|
if (this.isDark()) {
|
|
83492
83559
|
if (priority === ProfileAnalysisPriorityEnum.CRITICAL) {
|
|
@@ -83552,7 +83619,7 @@ class StrategyRecommendationsModalContentComponent {
|
|
|
83552
83619
|
return 'border border-slate-300 bg-white text-slate-700';
|
|
83553
83620
|
}
|
|
83554
83621
|
static { this.ɵfac = function StrategyRecommendationsModalContentComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || StrategyRecommendationsModalContentComponent)(); }; }
|
|
83555
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: StrategyRecommendationsModalContentComponent, selectors: [["symphiq-strategy-recommendations-modal-content"]], inputs: { strategy: [1, "strategy"], objectiveTitle: [1, "objectiveTitle"], goalTitle: [1, "goalTitle"], viewMode: [1, "viewMode"], allMetrics: [1, "allMetrics"], allCharts: [1, "allCharts"], allInsights: [1, "allInsights"], allBusinessInsights: [1, "allBusinessInsights"], currentModalState: [1, "currentModalState"], expandedRecommendationId: [1, "expandedRecommendationId"] }, decls: 9, vars: 5, consts: [[1, "space-y-6"], [1, "p-6", "rounded-lg", "border-l-4", 3, "ngClass"], [1, "mb-5"], [1, "flex", "flex-wrap", "gap-2.5"], [1, "px-2", "py-1", "rounded", "text-xs", "font-medium", 3, "ngClass"], [1, "rounded", "p-5", "transition-all", "duration-200",
|
|
83622
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: StrategyRecommendationsModalContentComponent, selectors: [["symphiq-strategy-recommendations-modal-content"]], inputs: { strategy: [1, "strategy"], objectiveTitle: [1, "objectiveTitle"], goalTitle: [1, "goalTitle"], viewMode: [1, "viewMode"], allMetrics: [1, "allMetrics"], allCharts: [1, "allCharts"], allInsights: [1, "allInsights"], allBusinessInsights: [1, "allBusinessInsights"], currentModalState: [1, "currentModalState"], expandedRecommendationId: [1, "expandedRecommendationId"] }, decls: 9, vars: 5, consts: [[1, "space-y-6"], [1, "p-6", "rounded-lg", "border-l-4", 3, "ngClass"], [1, "mb-5"], [1, "flex", "flex-wrap", "gap-2.5"], [1, "px-2", "py-1", "rounded", "text-xs", "font-medium", 3, "ngClass"], [1, "rounded", "p-5", "transition-all", "duration-200", 3, "ngClass", "cursor-pointer"], [1, "text-sm", "leading-relaxed", 3, "ngClass"], [1, "text-xs", "font-semibold", 3, "ngClass"], [1, "text-xs", 3, "ngClass"], [1, "rounded", "p-5", "transition-all", "duration-200", 3, "click", "ngClass"], [1, "flex", "items-start", "gap-3"], [3, "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", "M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "flex-1", "min-w-0"], [1, "mb-1"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [1, "flex", "items-start", "justify-between", "gap-2", "mb-3"], [1, "font-medium", "text-lg", 3, "ngClass"], [1, "px-2", "py-0.5", "rounded-full", "text-xs", "font-semibold", "whitespace-nowrap", "flex-shrink-0", 3, "ngClass"], [1, "text-sm", "mb-4", 3, "ngClass"], [1, "mb-4"], [1, "flex", "flex-wrap", "gap-2.5", "mb-4"], [1, "px-2", "py-1", "rounded", "text-xs", "font-semibold", 3, "ngClass"], [1, "flex", "flex-wrap", "gap-2", "mb-4"], ["type", "button", 1, "flex", "items-center", "gap-2", "transition-colors", "duration-200", "cursor-pointer", 3, "ngClass"], [1, "grid", "transition-all", "duration-300", "ease-in-out"], [1, "overflow-hidden", "-mx-2", "px-2"], [1, "pt-4", "transition-opacity", "duration-300"], [1, "grid", "grid-cols-1", "lg:grid-cols-2", "gap-5"], [1, "pt-4", "border-t", 3, "ngClass"], [1, "pt-4", "border-t", "lg:col-span-2", 3, "ngClass"], [1, "pt-6", "border-t", "lg:col-span-2", 3, "ngClass"], [1, "text-sm", "font-semibold", "mb-2", 3, "ngClass"], [1, "px-2.5", "py-1.5", "rounded-full", "text-xs", "font-medium", "flex", "items-center", "gap-1.5", 3, "ngClass", "libSymphiqTooltip", "tooltipType", "tooltipPosition", "tooltipDelay"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-3.5", "h-3.5", "flex-shrink-0", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2"], [1, "font-semibold"], [1, "opacity-80"], ["type", "button", 1, "flex", "items-center", "gap-2", "transition-colors", "duration-200", "cursor-pointer", 3, "click", "ngClass"], [1, "text-sm", "font-medium"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4", "transition-transform", "duration-200", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 9l-7 7-7-7"], [1, "text-sm", "font-semibold", "mb-3", 3, "ngClass"], [1, "space-y-2"], [1, "text-sm", "flex", "items-start", "gap-2", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4", "flex-shrink-0", "mt-0.5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M5 13l4 4L19 7"], [1, "text-sm", "font-semibold", "mb-3", "flex", "items-center", "gap-2", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"], [1, "space-y-3"], [1, "text-xs", "font-medium", "mb-2", 3, "ngClass"], [1, "flex", "flex-wrap", "gap-2"], [1, "px-2", "py-1", "rounded-full", "text-xs", 3, "ngClass"], [1, "ml-1", "opacity-75"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"], [1, "p-3", "rounded", 3, "ngClass"], [1, "flex", "items-start", "gap-2", "mb-2"], [1, "px-2", "py-1", "rounded", "text-xs", "font-medium", "flex-shrink-0", 3, "ngClass"], [1, "text-sm", "font-medium", 3, "ngClass"], [1, "flex", "items-start", "gap-2", "mt-2"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"], [1, "text-sm", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"], [1, "p-3", "rounded", "border", 3, "ngClass"], [1, "w-7", "h-7", "rounded-full", "flex", "items-center", "justify-center", "border-2", "flex-shrink-0", "font-bold", "text-xs", 3, "ngClass"], [1, "text-sm", "font-medium", "mb-1", 3, "ngClass"], [1, "text-xs", "mb-2", 3, "ngClass"], [1, "flex", "items-center", "gap-1.5"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-3.5", "h-3.5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "text-sm", "font-medium", "mb-2", 3, "ngClass"], [1, "mt-2"], [1, "inline-block", "px-2", "py-1", "rounded-full", "text-xs", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M7 7h.01M7 3h5c.512 0 1.024.195 1.414.586l7 7a2 2 0 010 2.828l-7 7a2 2 0 01-2.828 0l-7-7A1.994 1.994 0 013 12V7a4 4 0 014-4z"], [3, "relatedFocusAreas", "viewMode"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wide", "px-1", "mb-4", 3, "ngClass"], [1, "grid", "grid-cols-1", "lg:grid-cols-2", "gap-4"], ["type", "button", 1, "w-full", "text-left", "px-4", "py-3", "rounded-lg", "border-2", "transition-all", "duration-200", "hover:scale-[1.02]", "hover:shadow-lg", "active:scale-[0.98]", "cursor-pointer", "group", 3, "ngClass"], ["type", "button", 1, "w-full", "text-left", "px-4", "py-3", "rounded-lg", "border-2", "transition-all", "duration-200", "hover:scale-[1.02]", "hover:shadow-lg", "active:scale-[0.98]", "cursor-pointer", "group", 3, "click", "ngClass"], [1, "flex", "items-center", "justify-between"], [1, "flex", "items-center", "gap-3"], [1, "w-8", "h-8", "rounded-lg", "flex", "items-center", "justify-center", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"], [1, "text-lg", "font-bold", 3, "ngClass"], [1, "text-xs", "font-medium", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "transition-colors", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"], [1, "space-y-4"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wide", "px-1", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4", "transition-transform", "duration-200", "rotate-180", 3, "ngClass"]], template: function StrategyRecommendationsModalContentComponent_Template(rf, ctx) { if (rf & 1) {
|
|
83556
83623
|
i0.ɵɵelementStart(0, "div", 0)(1, "div", 1);
|
|
83557
83624
|
i0.ɵɵconditionalCreate(2, StrategyRecommendationsModalContentComponent_Conditional_2_Template, 3, 2, "div", 2);
|
|
83558
83625
|
i0.ɵɵconditionalCreate(3, StrategyRecommendationsModalContentComponent_Conditional_3_Template, 5, 3, "div", 2);
|
|
@@ -83627,7 +83694,7 @@ class StrategyRecommendationsModalContentComponent {
|
|
|
83627
83694
|
|
|
83628
83695
|
<!-- Recommendations Section -->
|
|
83629
83696
|
@for (recommendation of strategy()?.recommendations; track recommendation.id || $index) {
|
|
83630
|
-
<div [attr.id]="'recommendation-' + (recommendation.id || $index)" [ngClass]="
|
|
83697
|
+
<div [attr.id]="'recommendation-' + (recommendation.id || $index)" [ngClass]="getRecommendationCardClasses(recommendation.id || $index)" class="rounded p-5 transition-all duration-200" [class.cursor-pointer]="hasExpandableContent(recommendation)" (click)="hasExpandableContent(recommendation) ? toggleRecommendation($event, recommendation.id || $index) : null">
|
|
83631
83698
|
<div class="flex items-start gap-3">
|
|
83632
83699
|
<div [ngClass]="iconContainerClasses()">
|
|
83633
83700
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
@@ -87066,7 +87133,7 @@ class UnifiedTimelineComponent {
|
|
|
87066
87133
|
const _c0$k = a0 => ({ name: "squares-2x2", source: a0 });
|
|
87067
87134
|
const _forTrack0$o = ($index, $item) => $item.id;
|
|
87068
87135
|
function UnifiedPriorityMatrixComponent_Conditional_0_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
87069
|
-
i0.ɵɵelement(0, "symphiq-section-divider",
|
|
87136
|
+
i0.ɵɵelement(0, "symphiq-section-divider", 26)(1, "symphiq-section-header", 27);
|
|
87070
87137
|
} if (rf & 2) {
|
|
87071
87138
|
const ctx_r0 = i0.ɵɵnextContext(2);
|
|
87072
87139
|
i0.ɵɵproperty("viewMode", ctx_r0.viewMode())("sectionIcon", i0.ɵɵpureFunction1(4, _c0$k, ctx_r0.IconSourceEnum.HEROICONS));
|
|
@@ -87075,14 +87142,14 @@ function UnifiedPriorityMatrixComponent_Conditional_0_Conditional_1_Template(rf,
|
|
|
87075
87142
|
} }
|
|
87076
87143
|
function UnifiedPriorityMatrixComponent_Conditional_0_For_20_Template(rf, ctx) { if (rf & 1) {
|
|
87077
87144
|
const _r2 = i0.ɵɵgetCurrentView();
|
|
87078
|
-
i0.ɵɵelementStart(0, "button",
|
|
87145
|
+
i0.ɵɵelementStart(0, "button", 28);
|
|
87079
87146
|
i0.ɵɵlistener("click", function UnifiedPriorityMatrixComponent_Conditional_0_For_20_Template_button_click_0_listener() { const goal_r3 = i0.ɵɵrestoreView(_r2).$implicit; const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.onGoalClick(goal_r3)); });
|
|
87080
|
-
i0.ɵɵelementStart(1, "div",
|
|
87147
|
+
i0.ɵɵelementStart(1, "div", 29)(2, "span", 30);
|
|
87081
87148
|
i0.ɵɵtext(3);
|
|
87082
87149
|
i0.ɵɵelementEnd();
|
|
87083
87150
|
i0.ɵɵnamespaceSVG();
|
|
87084
|
-
i0.ɵɵelementStart(4, "svg",
|
|
87085
|
-
i0.ɵɵelement(5, "path",
|
|
87151
|
+
i0.ɵɵelementStart(4, "svg", 31);
|
|
87152
|
+
i0.ɵɵelement(5, "path", 32);
|
|
87086
87153
|
i0.ɵɵelementEnd()()();
|
|
87087
87154
|
} if (rf & 2) {
|
|
87088
87155
|
const goal_r3 = ctx.$implicit;
|
|
@@ -87101,14 +87168,14 @@ function UnifiedPriorityMatrixComponent_Conditional_0_Conditional_21_Template(rf
|
|
|
87101
87168
|
} }
|
|
87102
87169
|
function UnifiedPriorityMatrixComponent_Conditional_0_For_31_Template(rf, ctx) { if (rf & 1) {
|
|
87103
87170
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
87104
|
-
i0.ɵɵelementStart(0, "button",
|
|
87171
|
+
i0.ɵɵelementStart(0, "button", 33);
|
|
87105
87172
|
i0.ɵɵlistener("click", function UnifiedPriorityMatrixComponent_Conditional_0_For_31_Template_button_click_0_listener() { const goal_r5 = i0.ɵɵrestoreView(_r4).$implicit; const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.onGoalClick(goal_r5)); });
|
|
87106
|
-
i0.ɵɵelementStart(1, "div",
|
|
87173
|
+
i0.ɵɵelementStart(1, "div", 29)(2, "span", 30);
|
|
87107
87174
|
i0.ɵɵtext(3);
|
|
87108
87175
|
i0.ɵɵelementEnd();
|
|
87109
87176
|
i0.ɵɵnamespaceSVG();
|
|
87110
|
-
i0.ɵɵelementStart(4, "svg",
|
|
87111
|
-
i0.ɵɵelement(5, "path",
|
|
87177
|
+
i0.ɵɵelementStart(4, "svg", 31);
|
|
87178
|
+
i0.ɵɵelement(5, "path", 32);
|
|
87112
87179
|
i0.ɵɵelementEnd()()();
|
|
87113
87180
|
} if (rf & 2) {
|
|
87114
87181
|
const goal_r5 = ctx.$implicit;
|
|
@@ -87127,14 +87194,14 @@ function UnifiedPriorityMatrixComponent_Conditional_0_Conditional_32_Template(rf
|
|
|
87127
87194
|
} }
|
|
87128
87195
|
function UnifiedPriorityMatrixComponent_Conditional_0_For_42_Template(rf, ctx) { if (rf & 1) {
|
|
87129
87196
|
const _r6 = i0.ɵɵgetCurrentView();
|
|
87130
|
-
i0.ɵɵelementStart(0, "button",
|
|
87197
|
+
i0.ɵɵelementStart(0, "button", 34);
|
|
87131
87198
|
i0.ɵɵlistener("click", function UnifiedPriorityMatrixComponent_Conditional_0_For_42_Template_button_click_0_listener() { const goal_r7 = i0.ɵɵrestoreView(_r6).$implicit; const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.onGoalClick(goal_r7)); });
|
|
87132
|
-
i0.ɵɵelementStart(1, "div",
|
|
87199
|
+
i0.ɵɵelementStart(1, "div", 29)(2, "span", 30);
|
|
87133
87200
|
i0.ɵɵtext(3);
|
|
87134
87201
|
i0.ɵɵelementEnd();
|
|
87135
87202
|
i0.ɵɵnamespaceSVG();
|
|
87136
|
-
i0.ɵɵelementStart(4, "svg",
|
|
87137
|
-
i0.ɵɵelement(5, "path",
|
|
87203
|
+
i0.ɵɵelementStart(4, "svg", 31);
|
|
87204
|
+
i0.ɵɵelement(5, "path", 32);
|
|
87138
87205
|
i0.ɵɵelementEnd()()();
|
|
87139
87206
|
} if (rf & 2) {
|
|
87140
87207
|
const goal_r7 = ctx.$implicit;
|
|
@@ -87153,14 +87220,14 @@ function UnifiedPriorityMatrixComponent_Conditional_0_Conditional_43_Template(rf
|
|
|
87153
87220
|
} }
|
|
87154
87221
|
function UnifiedPriorityMatrixComponent_Conditional_0_For_53_Template(rf, ctx) { if (rf & 1) {
|
|
87155
87222
|
const _r8 = i0.ɵɵgetCurrentView();
|
|
87156
|
-
i0.ɵɵelementStart(0, "button",
|
|
87223
|
+
i0.ɵɵelementStart(0, "button", 35);
|
|
87157
87224
|
i0.ɵɵlistener("click", function UnifiedPriorityMatrixComponent_Conditional_0_For_53_Template_button_click_0_listener() { const goal_r9 = i0.ɵɵrestoreView(_r8).$implicit; const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.onGoalClick(goal_r9)); });
|
|
87158
|
-
i0.ɵɵelementStart(1, "div",
|
|
87225
|
+
i0.ɵɵelementStart(1, "div", 29)(2, "span", 30);
|
|
87159
87226
|
i0.ɵɵtext(3);
|
|
87160
87227
|
i0.ɵɵelementEnd();
|
|
87161
87228
|
i0.ɵɵnamespaceSVG();
|
|
87162
|
-
i0.ɵɵelementStart(4, "svg",
|
|
87163
|
-
i0.ɵɵelement(5, "path",
|
|
87229
|
+
i0.ɵɵelementStart(4, "svg", 31);
|
|
87230
|
+
i0.ɵɵelement(5, "path", 32);
|
|
87164
87231
|
i0.ɵɵelementEnd()()();
|
|
87165
87232
|
} if (rf & 2) {
|
|
87166
87233
|
const goal_r9 = ctx.$implicit;
|
|
@@ -87206,11 +87273,11 @@ function UnifiedPriorityMatrixComponent_Conditional_0_Template(rf, ctx) { if (rf
|
|
|
87206
87273
|
i0.ɵɵtext(28, "High Impact / High Effort");
|
|
87207
87274
|
i0.ɵɵelementEnd();
|
|
87208
87275
|
i0.ɵɵelementStart(29, "div", 14);
|
|
87209
|
-
i0.ɵɵrepeaterCreate(30, UnifiedPriorityMatrixComponent_Conditional_0_For_31_Template, 6, 2, "button",
|
|
87276
|
+
i0.ɵɵrepeaterCreate(30, UnifiedPriorityMatrixComponent_Conditional_0_For_31_Template, 6, 2, "button", 18, _forTrack0$o);
|
|
87210
87277
|
i0.ɵɵconditionalCreate(32, UnifiedPriorityMatrixComponent_Conditional_0_Conditional_32_Template, 2, 1, "div", 16);
|
|
87211
87278
|
i0.ɵɵelementEnd()();
|
|
87212
87279
|
i0.ɵɵelementStart(33, "div", 9)(34, "div", 10);
|
|
87213
|
-
i0.ɵɵelement(35, "div",
|
|
87280
|
+
i0.ɵɵelement(35, "div", 19);
|
|
87214
87281
|
i0.ɵɵelementStart(36, "h4", 12);
|
|
87215
87282
|
i0.ɵɵtext(37, "Fill-Ins");
|
|
87216
87283
|
i0.ɵɵelementEnd()();
|
|
@@ -87218,11 +87285,11 @@ function UnifiedPriorityMatrixComponent_Conditional_0_Template(rf, ctx) { if (rf
|
|
|
87218
87285
|
i0.ɵɵtext(39, "Low Impact / Low Effort");
|
|
87219
87286
|
i0.ɵɵelementEnd();
|
|
87220
87287
|
i0.ɵɵelementStart(40, "div", 14);
|
|
87221
|
-
i0.ɵɵrepeaterCreate(41, UnifiedPriorityMatrixComponent_Conditional_0_For_42_Template, 6, 2, "button",
|
|
87288
|
+
i0.ɵɵrepeaterCreate(41, UnifiedPriorityMatrixComponent_Conditional_0_For_42_Template, 6, 2, "button", 20, _forTrack0$o);
|
|
87222
87289
|
i0.ɵɵconditionalCreate(43, UnifiedPriorityMatrixComponent_Conditional_0_Conditional_43_Template, 2, 1, "div", 16);
|
|
87223
87290
|
i0.ɵɵelementEnd()();
|
|
87224
87291
|
i0.ɵɵelementStart(44, "div", 9)(45, "div", 10);
|
|
87225
|
-
i0.ɵɵelement(46, "div",
|
|
87292
|
+
i0.ɵɵelement(46, "div", 21);
|
|
87226
87293
|
i0.ɵɵelementStart(47, "h4", 12);
|
|
87227
87294
|
i0.ɵɵtext(48, "Time Permitting");
|
|
87228
87295
|
i0.ɵɵelementEnd()();
|
|
@@ -87230,12 +87297,12 @@ function UnifiedPriorityMatrixComponent_Conditional_0_Template(rf, ctx) { if (rf
|
|
|
87230
87297
|
i0.ɵɵtext(50, "Low Impact / High Effort");
|
|
87231
87298
|
i0.ɵɵelementEnd();
|
|
87232
87299
|
i0.ɵɵelementStart(51, "div", 14);
|
|
87233
|
-
i0.ɵɵrepeaterCreate(52, UnifiedPriorityMatrixComponent_Conditional_0_For_53_Template, 6, 2, "button",
|
|
87300
|
+
i0.ɵɵrepeaterCreate(52, UnifiedPriorityMatrixComponent_Conditional_0_For_53_Template, 6, 2, "button", 22, _forTrack0$o);
|
|
87234
87301
|
i0.ɵɵconditionalCreate(54, UnifiedPriorityMatrixComponent_Conditional_0_Conditional_54_Template, 2, 1, "div", 16);
|
|
87235
87302
|
i0.ɵɵelementEnd()()();
|
|
87236
|
-
i0.ɵɵelementStart(55, "div",
|
|
87237
|
-
i0.ɵɵelement(56, "div",
|
|
87238
|
-
i0.ɵɵelementStart(57, "div",
|
|
87303
|
+
i0.ɵɵelementStart(55, "div", 23);
|
|
87304
|
+
i0.ɵɵelement(56, "div", 24);
|
|
87305
|
+
i0.ɵɵelementStart(57, "div", 25)(58, "span", 6);
|
|
87239
87306
|
i0.ɵɵtext(59, "Effort");
|
|
87240
87307
|
i0.ɵɵelementEnd()()()()()()();
|
|
87241
87308
|
} if (rf & 2) {
|
|
@@ -87370,20 +87437,15 @@ class UnifiedPriorityMatrixComponent {
|
|
|
87370
87437
|
this.goalClick.emit(goal);
|
|
87371
87438
|
}
|
|
87372
87439
|
static { this.ɵfac = function UnifiedPriorityMatrixComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || UnifiedPriorityMatrixComponent)(); }; }
|
|
87373
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedPriorityMatrixComponent, selectors: [["symphiq-unified-priority-matrix"]], inputs: { matrix: [1, "matrix"], viewMode: [1, "viewMode"], hideHeader: [1, "hideHeader"] }, outputs: { goalClick: "goalClick" }, decls: 1, vars: 1, consts: [["id", "section-priority-matrix", 1, "space-y-6", "scroll-mt-24"], [1, "rounded-2xl", "p-6", "shadow-xl", 3, "ngClass"], [1, "flex", "gap-4"], [1, "flex", "flex-col", "items-center", "justify-center", "relative", "w-6"], [1, "absolute", "inset-y-0", "left-1/2", "-translate-x-1/2", "w-0.5", 3, "ngClass"], [1, "-rotate-90", "text-xs", "font-semibold", "uppercase", "tracking-wider", "whitespace-nowrap", "px-2", "py-1", "rounded-md", "z-10", 3, "ngClass"], [3, "ngClass"], [1, "flex-1", "flex", "flex-col", "gap-4"], [1, "grid", "grid-cols-2", "gap-4"], [1, "rounded-xl", "p-4", "min-h-[180px]", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "mb-3"], [1, "w-3", "h-3", "rounded-full", "bg-green-500"], [1, "text-sm", "font-semibold", "mb-0!", 3, "ngClass"], [1, "text-xs", "mb-3", 3, "ngClass"], [1, "space-y-2"], ["type", "button", 1, "w-full", "text-left", "p-2", "rounded-lg", "text-sm",
|
|
87440
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedPriorityMatrixComponent, selectors: [["symphiq-unified-priority-matrix"]], inputs: { matrix: [1, "matrix"], viewMode: [1, "viewMode"], hideHeader: [1, "hideHeader"] }, outputs: { goalClick: "goalClick" }, decls: 1, vars: 1, consts: [["id", "section-priority-matrix", 1, "space-y-6", "scroll-mt-24"], [1, "rounded-2xl", "p-6", "shadow-xl", 3, "ngClass"], [1, "flex", "gap-4"], [1, "flex", "flex-col", "items-center", "justify-center", "relative", "w-6"], [1, "absolute", "inset-y-0", "left-1/2", "-translate-x-1/2", "w-0.5", 3, "ngClass"], [1, "-rotate-90", "text-xs", "font-semibold", "uppercase", "tracking-wider", "whitespace-nowrap", "px-2", "py-1", "rounded-md", "z-10", 3, "ngClass"], [3, "ngClass"], [1, "flex-1", "flex", "flex-col", "gap-4"], [1, "grid", "grid-cols-2", "gap-4"], [1, "rounded-xl", "p-4", "min-h-[180px]", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "mb-3"], [1, "w-3", "h-3", "rounded-full", "bg-green-500"], [1, "text-sm", "font-semibold", "mb-0!", 3, "ngClass"], [1, "text-xs", "mb-3", 3, "ngClass"], [1, "space-y-2"], ["type", "button", 1, "goal-btn-green", "w-full", "text-left", "p-2", "rounded-lg", "text-sm", 3, "ngClass"], [1, "text-xs", "text-center", "py-4", 3, "ngClass"], [1, "w-3", "h-3", "rounded-full", "bg-amber-500"], ["type", "button", 1, "goal-btn-amber", "w-full", "text-left", "p-2", "rounded-lg", "text-sm", 3, "ngClass"], [1, "w-3", "h-3", "rounded-full", "bg-blue-500"], ["type", "button", 1, "goal-btn-blue", "w-full", "text-left", "p-2", "rounded-lg", "text-sm", 3, "ngClass"], [1, "w-3", "h-3", "rounded-full", "bg-slate-400"], ["type", "button", 1, "goal-btn-slate", "w-full", "text-left", "p-2", "rounded-lg", "text-sm", 3, "ngClass"], [1, "flex", "items-center", "justify-center", "relative", "h-6"], [1, "absolute", "inset-x-0", "top-1/2", "-translate-y-1/2", "h-0.5", 3, "ngClass"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", "px-2", "py-1", "rounded-md", "z-10", 3, "ngClass"], [3, "viewMode", "sectionIcon"], ["title", "Priority Matrix", 3, "icon", "viewMode"], ["type", "button", 1, "goal-btn-green", "w-full", "text-left", "p-2", "rounded-lg", "text-sm", 3, "click", "ngClass"], [1, "flex", "items-center", "gap-2"], [1, "line-clamp-1", "flex-1"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4", "flex-shrink-0", "opacity-60"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"], ["type", "button", 1, "goal-btn-amber", "w-full", "text-left", "p-2", "rounded-lg", "text-sm", 3, "click", "ngClass"], ["type", "button", 1, "goal-btn-blue", "w-full", "text-left", "p-2", "rounded-lg", "text-sm", 3, "click", "ngClass"], ["type", "button", 1, "goal-btn-slate", "w-full", "text-left", "p-2", "rounded-lg", "text-sm", 3, "click", "ngClass"]], template: function UnifiedPriorityMatrixComponent_Template(rf, ctx) { if (rf & 1) {
|
|
87374
87441
|
i0.ɵɵconditionalCreate(0, UnifiedPriorityMatrixComponent_Conditional_0_Template, 60, 24, "section", 0);
|
|
87375
87442
|
} if (rf & 2) {
|
|
87376
87443
|
i0.ɵɵconditional(ctx.hasGoals() ? 0 : -1);
|
|
87377
|
-
} }, dependencies: [CommonModule, i1$1.NgClass, SectionDividerComponent, SectionHeaderComponent],
|
|
87444
|
+
} }, dependencies: [CommonModule, i1$1.NgClass, SectionDividerComponent, SectionHeaderComponent], styles: ["@keyframes _ngcontent-%COMP%_pulse-glow-green{0%,to{box-shadow:0 0 5px #22c55e80,0 0 10px #22c55e4d}50%{box-shadow:0 0 15px #22c55ecc,0 0 25px #22c55e80,0 0 35px #22c55e4d}}@keyframes _ngcontent-%COMP%_pulse-glow-amber{0%,to{box-shadow:0 0 5px #f59e0b80,0 0 10px #f59e0b4d}50%{box-shadow:0 0 15px #f59e0bcc,0 0 25px #f59e0b80,0 0 35px #f59e0b4d}}@keyframes _ngcontent-%COMP%_pulse-glow-blue{0%,to{box-shadow:0 0 5px #3b82f680,0 0 10px #3b82f64d}50%{box-shadow:0 0 15px #3b82f6cc,0 0 25px #3b82f680,0 0 35px #3b82f64d}}@keyframes _ngcontent-%COMP%_pulse-glow-slate{0%,to{box-shadow:0 0 5px #64748b80,0 0 10px #64748b4d}50%{box-shadow:0 0 15px #64748bcc,0 0 25px #64748b80,0 0 35px #64748b4d}}.goal-btn-green[_ngcontent-%COMP%]{transition:all .3s ease}.goal-btn-green[_ngcontent-%COMP%]:hover{animation:_ngcontent-%COMP%_pulse-glow-green 1.5s ease-in-out infinite;transform:scale(1.03) translate(4px)}.goal-btn-amber[_ngcontent-%COMP%]{transition:all .3s ease}.goal-btn-amber[_ngcontent-%COMP%]:hover{animation:_ngcontent-%COMP%_pulse-glow-amber 1.5s ease-in-out infinite;transform:scale(1.03) translate(4px)}.goal-btn-blue[_ngcontent-%COMP%]{transition:all .3s ease}.goal-btn-blue[_ngcontent-%COMP%]:hover{animation:_ngcontent-%COMP%_pulse-glow-blue 1.5s ease-in-out infinite;transform:scale(1.03) translate(4px)}.goal-btn-slate[_ngcontent-%COMP%]{transition:all .3s ease}.goal-btn-slate[_ngcontent-%COMP%]:hover{animation:_ngcontent-%COMP%_pulse-glow-slate 1.5s ease-in-out infinite;transform:scale(1.03) translate(4px)}"], changeDetection: 0 }); }
|
|
87378
87445
|
}
|
|
87379
87446
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UnifiedPriorityMatrixComponent, [{
|
|
87380
87447
|
type: Component,
|
|
87381
|
-
args: [{
|
|
87382
|
-
selector: 'symphiq-unified-priority-matrix',
|
|
87383
|
-
standalone: true,
|
|
87384
|
-
imports: [CommonModule, SectionDividerComponent, SectionHeaderComponent],
|
|
87385
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
87386
|
-
template: `
|
|
87448
|
+
args: [{ selector: 'symphiq-unified-priority-matrix', standalone: true, imports: [CommonModule, SectionDividerComponent, SectionHeaderComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
87387
87449
|
@if (hasGoals()) {
|
|
87388
87450
|
<section id="section-priority-matrix" class="space-y-6 scroll-mt-24">
|
|
87389
87451
|
@if (!hideHeader()) {
|
|
@@ -87421,7 +87483,7 @@ class UnifiedPriorityMatrixComponent {
|
|
|
87421
87483
|
<button
|
|
87422
87484
|
type="button"
|
|
87423
87485
|
[ngClass]="getGoalClasses('quickWins')"
|
|
87424
|
-
class="w-full text-left p-2 rounded-lg text-sm
|
|
87486
|
+
class="goal-btn-green w-full text-left p-2 rounded-lg text-sm"
|
|
87425
87487
|
(click)="onGoalClick(goal)">
|
|
87426
87488
|
<div class="flex items-center gap-2">
|
|
87427
87489
|
<span class="line-clamp-1 flex-1">{{ goal.title }}</span>
|
|
@@ -87449,7 +87511,7 @@ class UnifiedPriorityMatrixComponent {
|
|
|
87449
87511
|
<button
|
|
87450
87512
|
type="button"
|
|
87451
87513
|
[ngClass]="getGoalClasses('majorProjects')"
|
|
87452
|
-
class="w-full text-left p-2 rounded-lg text-sm
|
|
87514
|
+
class="goal-btn-amber w-full text-left p-2 rounded-lg text-sm"
|
|
87453
87515
|
(click)="onGoalClick(goal)">
|
|
87454
87516
|
<div class="flex items-center gap-2">
|
|
87455
87517
|
<span class="line-clamp-1 flex-1">{{ goal.title }}</span>
|
|
@@ -87477,7 +87539,7 @@ class UnifiedPriorityMatrixComponent {
|
|
|
87477
87539
|
<button
|
|
87478
87540
|
type="button"
|
|
87479
87541
|
[ngClass]="getGoalClasses('fillIns')"
|
|
87480
|
-
class="w-full text-left p-2 rounded-lg text-sm
|
|
87542
|
+
class="goal-btn-blue w-full text-left p-2 rounded-lg text-sm"
|
|
87481
87543
|
(click)="onGoalClick(goal)">
|
|
87482
87544
|
<div class="flex items-center gap-2">
|
|
87483
87545
|
<span class="line-clamp-1 flex-1">{{ goal.title }}</span>
|
|
@@ -87505,7 +87567,7 @@ class UnifiedPriorityMatrixComponent {
|
|
|
87505
87567
|
<button
|
|
87506
87568
|
type="button"
|
|
87507
87569
|
[ngClass]="getGoalClasses('thankless')"
|
|
87508
|
-
class="w-full text-left p-2 rounded-lg text-sm
|
|
87570
|
+
class="goal-btn-slate w-full text-left p-2 rounded-lg text-sm"
|
|
87509
87571
|
(click)="onGoalClick(goal)">
|
|
87510
87572
|
<div class="flex items-center gap-2">
|
|
87511
87573
|
<span class="line-clamp-1 flex-1">{{ goal.title }}</span>
|
|
@@ -87533,10 +87595,9 @@ class UnifiedPriorityMatrixComponent {
|
|
|
87533
87595
|
</div>
|
|
87534
87596
|
</section>
|
|
87535
87597
|
}
|
|
87536
|
-
|
|
87537
|
-
}]
|
|
87598
|
+
`, styles: ["@keyframes pulse-glow-green{0%,to{box-shadow:0 0 5px #22c55e80,0 0 10px #22c55e4d}50%{box-shadow:0 0 15px #22c55ecc,0 0 25px #22c55e80,0 0 35px #22c55e4d}}@keyframes pulse-glow-amber{0%,to{box-shadow:0 0 5px #f59e0b80,0 0 10px #f59e0b4d}50%{box-shadow:0 0 15px #f59e0bcc,0 0 25px #f59e0b80,0 0 35px #f59e0b4d}}@keyframes pulse-glow-blue{0%,to{box-shadow:0 0 5px #3b82f680,0 0 10px #3b82f64d}50%{box-shadow:0 0 15px #3b82f6cc,0 0 25px #3b82f680,0 0 35px #3b82f64d}}@keyframes pulse-glow-slate{0%,to{box-shadow:0 0 5px #64748b80,0 0 10px #64748b4d}50%{box-shadow:0 0 15px #64748bcc,0 0 25px #64748b80,0 0 35px #64748b4d}}.goal-btn-green{transition:all .3s ease}.goal-btn-green:hover{animation:pulse-glow-green 1.5s ease-in-out infinite;transform:scale(1.03) translate(4px)}.goal-btn-amber{transition:all .3s ease}.goal-btn-amber:hover{animation:pulse-glow-amber 1.5s ease-in-out infinite;transform:scale(1.03) translate(4px)}.goal-btn-blue{transition:all .3s ease}.goal-btn-blue:hover{animation:pulse-glow-blue 1.5s ease-in-out infinite;transform:scale(1.03) translate(4px)}.goal-btn-slate{transition:all .3s ease}.goal-btn-slate:hover{animation:pulse-glow-slate 1.5s ease-in-out infinite;transform:scale(1.03) translate(4px)}\n"] }]
|
|
87538
87599
|
}], null, { matrix: [{ type: i0.Input, args: [{ isSignal: true, alias: "matrix", required: true }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], hideHeader: [{ type: i0.Input, args: [{ isSignal: true, alias: "hideHeader", required: false }] }], goalClick: [{ type: i0.Output, args: ["goalClick"] }] }); })();
|
|
87539
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedPriorityMatrixComponent, { className: "UnifiedPriorityMatrixComponent", filePath: "lib/components/profile-analysis-unified-dashboard/cards/unified-priority-matrix.component.ts", lineNumber:
|
|
87600
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedPriorityMatrixComponent, { className: "UnifiedPriorityMatrixComponent", filePath: "lib/components/profile-analysis-unified-dashboard/cards/unified-priority-matrix.component.ts", lineNumber: 219 }); })();
|
|
87540
87601
|
|
|
87541
87602
|
const _c0$j = a0 => ({ name: "arrow-right-circle", source: a0 });
|
|
87542
87603
|
const _forTrack0$n = ($index, $item) => $item.title;
|
|
@@ -104374,11 +104435,11 @@ const _c1$3 = ["modalWrapper"];
|
|
|
104374
104435
|
const _c2$2 = () => [];
|
|
104375
104436
|
function UnifiedDashboardModalComponent_Conditional_0_Conditional_7_Template(rf, ctx) { if (rf & 1) {
|
|
104376
104437
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
104377
|
-
i0.ɵɵelementStart(0, "button",
|
|
104438
|
+
i0.ɵɵelementStart(0, "button", 26);
|
|
104378
104439
|
i0.ɵɵlistener("click", function UnifiedDashboardModalComponent_Conditional_0_Conditional_7_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onBackClick()); });
|
|
104379
104440
|
i0.ɵɵnamespaceSVG();
|
|
104380
|
-
i0.ɵɵelementStart(1, "svg",
|
|
104381
|
-
i0.ɵɵelement(2, "path",
|
|
104441
|
+
i0.ɵɵelementStart(1, "svg", 27);
|
|
104442
|
+
i0.ɵɵelement(2, "path", 28);
|
|
104382
104443
|
i0.ɵɵelementEnd()();
|
|
104383
104444
|
} if (rf & 2) {
|
|
104384
104445
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -104386,8 +104447,8 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_7_Template(rf,
|
|
|
104386
104447
|
} }
|
|
104387
104448
|
function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
104388
104449
|
i0.ɵɵnamespaceSVG();
|
|
104389
|
-
i0.ɵɵelementStart(0, "svg",
|
|
104390
|
-
i0.ɵɵelement(1, "path",
|
|
104450
|
+
i0.ɵɵelementStart(0, "svg", 31);
|
|
104451
|
+
i0.ɵɵelement(1, "path", 32);
|
|
104391
104452
|
i0.ɵɵelementEnd();
|
|
104392
104453
|
} if (rf & 2) {
|
|
104393
104454
|
const ctx_r1 = i0.ɵɵnextContext(4);
|
|
@@ -104395,11 +104456,11 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Condit
|
|
|
104395
104456
|
} }
|
|
104396
104457
|
function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Template(rf, ctx) { if (rf & 1) {
|
|
104397
104458
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
104398
|
-
i0.ɵɵelementStart(0, "button",
|
|
104459
|
+
i0.ɵɵelementStart(0, "button", 30);
|
|
104399
104460
|
i0.ɵɵlistener("click", function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Template_button_click_0_listener() { const item_r5 = i0.ɵɵrestoreView(_r4).$implicit; const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.navigateToBreadcrumb(item_r5)); });
|
|
104400
104461
|
i0.ɵɵtext(1);
|
|
104401
104462
|
i0.ɵɵelementEnd();
|
|
104402
|
-
i0.ɵɵconditionalCreate(2, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Conditional_2_Template, 2, 1, ":svg:svg",
|
|
104463
|
+
i0.ɵɵconditionalCreate(2, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Conditional_2_Template, 2, 1, ":svg:svg", 31);
|
|
104403
104464
|
} if (rf & 2) {
|
|
104404
104465
|
const item_r5 = ctx.$implicit;
|
|
104405
104466
|
const ɵ$index_26_r6 = ctx.$index;
|
|
@@ -104412,7 +104473,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Templa
|
|
|
104412
104473
|
i0.ɵɵconditional(!(ɵ$index_26_r6 === ɵ$count_26_r7 - 1) || ctx_r1.modalType() !== null ? 2 : -1);
|
|
104413
104474
|
} }
|
|
104414
104475
|
function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
104415
|
-
i0.ɵɵelementStart(0, "span",
|
|
104476
|
+
i0.ɵɵelementStart(0, "span", 29);
|
|
104416
104477
|
i0.ɵɵtext(1, "Objectives");
|
|
104417
104478
|
i0.ɵɵelementEnd();
|
|
104418
104479
|
} if (rf & 2) {
|
|
@@ -104420,7 +104481,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_
|
|
|
104420
104481
|
i0.ɵɵproperty("ngClass", ctx_r1.breadcrumbCurrentClasses());
|
|
104421
104482
|
} }
|
|
104422
104483
|
function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_4_Template(rf, ctx) { if (rf & 1) {
|
|
104423
|
-
i0.ɵɵelementStart(0, "span",
|
|
104484
|
+
i0.ɵɵelementStart(0, "span", 29);
|
|
104424
104485
|
i0.ɵɵtext(1, "Related Metrics");
|
|
104425
104486
|
i0.ɵɵelementEnd();
|
|
104426
104487
|
} if (rf & 2) {
|
|
@@ -104428,7 +104489,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_
|
|
|
104428
104489
|
i0.ɵɵproperty("ngClass", ctx_r1.breadcrumbCurrentClasses());
|
|
104429
104490
|
} }
|
|
104430
104491
|
function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
104431
|
-
i0.ɵɵelementStart(0, "span",
|
|
104492
|
+
i0.ɵɵelementStart(0, "span", 29);
|
|
104432
104493
|
i0.ɵɵtext(1, "Strategies");
|
|
104433
104494
|
i0.ɵɵelementEnd();
|
|
104434
104495
|
} if (rf & 2) {
|
|
@@ -104436,7 +104497,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_
|
|
|
104436
104497
|
i0.ɵɵproperty("ngClass", ctx_r1.breadcrumbCurrentClasses());
|
|
104437
104498
|
} }
|
|
104438
104499
|
function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
104439
|
-
i0.ɵɵelementStart(0, "span",
|
|
104500
|
+
i0.ɵɵelementStart(0, "span", 29);
|
|
104440
104501
|
i0.ɵɵtext(1, "Recommendations");
|
|
104441
104502
|
i0.ɵɵelementEnd();
|
|
104442
104503
|
} if (rf & 2) {
|
|
@@ -104444,7 +104505,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_
|
|
|
104444
104505
|
i0.ɵɵproperty("ngClass", ctx_r1.breadcrumbCurrentClasses());
|
|
104445
104506
|
} }
|
|
104446
104507
|
function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_7_Template(rf, ctx) { if (rf & 1) {
|
|
104447
|
-
i0.ɵɵelementStart(0, "span",
|
|
104508
|
+
i0.ɵɵelementStart(0, "span", 29);
|
|
104448
104509
|
i0.ɵɵtext(1, "Priority Actions");
|
|
104449
104510
|
i0.ɵɵelementEnd();
|
|
104450
104511
|
} if (rf & 2) {
|
|
@@ -104454,11 +104515,11 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_
|
|
|
104454
104515
|
function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
104455
104516
|
i0.ɵɵelementStart(0, "div", 11);
|
|
104456
104517
|
i0.ɵɵrepeaterCreate(1, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Template, 3, 3, null, null, i0.ɵɵrepeaterTrackByIndex);
|
|
104457
|
-
i0.ɵɵconditionalCreate(3, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_3_Template, 2, 1, "span",
|
|
104458
|
-
i0.ɵɵconditionalCreate(4, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_4_Template, 2, 1, "span",
|
|
104459
|
-
i0.ɵɵconditionalCreate(5, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_5_Template, 2, 1, "span",
|
|
104460
|
-
i0.ɵɵconditionalCreate(6, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_6_Template, 2, 1, "span",
|
|
104461
|
-
i0.ɵɵconditionalCreate(7, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_7_Template, 2, 1, "span",
|
|
104518
|
+
i0.ɵɵconditionalCreate(3, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_3_Template, 2, 1, "span", 29);
|
|
104519
|
+
i0.ɵɵconditionalCreate(4, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_4_Template, 2, 1, "span", 29);
|
|
104520
|
+
i0.ɵɵconditionalCreate(5, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_5_Template, 2, 1, "span", 29);
|
|
104521
|
+
i0.ɵɵconditionalCreate(6, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_6_Template, 2, 1, "span", 29);
|
|
104522
|
+
i0.ɵɵconditionalCreate(7, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_7_Template, 2, 1, "span", 29);
|
|
104462
104523
|
i0.ɵɵelementEnd();
|
|
104463
104524
|
} if (rf & 2) {
|
|
104464
104525
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -104476,7 +104537,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Template(rf,
|
|
|
104476
104537
|
i0.ɵɵconditional(ctx_r1.modalType() === "priority-actions-list" ? 7 : -1);
|
|
104477
104538
|
} }
|
|
104478
104539
|
function UnifiedDashboardModalComponent_Conditional_0_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
104479
|
-
i0.ɵɵelementStart(0, "div", 12)(1, "span",
|
|
104540
|
+
i0.ɵɵelementStart(0, "div", 12)(1, "span", 33);
|
|
104480
104541
|
i0.ɵɵtext(2);
|
|
104481
104542
|
i0.ɵɵelementEnd()();
|
|
104482
104543
|
} if (rf & 2) {
|
|
@@ -104486,58 +104547,72 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_10_Template(rf
|
|
|
104486
104547
|
i0.ɵɵadvance();
|
|
104487
104548
|
i0.ɵɵtextInterpolate1(" ", ctx_r1.modalType() === "unified-goal-objectives" ? "Objectives" : ctx_r1.modalType() === "unified-goal-related-metrics" ? "Related Metrics" : ctx_r1.modalType() === "objective-strategies" ? "Strategies" : ctx_r1.modalType() === "strategy-recommendations" ? "Recommendations" : ctx_r1.modalType() === "priority-actions-list" ? "Unified Analysis" : "Unified Goal", " ");
|
|
104488
104549
|
} }
|
|
104489
|
-
function
|
|
104490
|
-
i0.ɵɵelement(0, "symphiq-priority-badge",
|
|
104550
|
+
function UnifiedDashboardModalComponent_Conditional_0_Conditional_14_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
104551
|
+
i0.ɵɵelement(0, "symphiq-priority-badge", 34);
|
|
104491
104552
|
} if (rf & 2) {
|
|
104492
|
-
const ctx_r1 = i0.ɵɵnextContext(
|
|
104553
|
+
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
104493
104554
|
i0.ɵɵproperty("priority", ctx_r1.currentGoal().priority)("viewMode", ctx_r1.viewMode());
|
|
104494
104555
|
} }
|
|
104495
|
-
function
|
|
104496
|
-
i0.ɵɵelement(0, "symphiq-timeframe-badge",
|
|
104556
|
+
function UnifiedDashboardModalComponent_Conditional_0_Conditional_14_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
104557
|
+
i0.ɵɵelement(0, "symphiq-timeframe-badge", 35);
|
|
104497
104558
|
} if (rf & 2) {
|
|
104498
|
-
const ctx_r1 = i0.ɵɵnextContext(
|
|
104559
|
+
const ctx_r1 = i0.ɵɵnextContext(3);
|
|
104499
104560
|
i0.ɵɵproperty("timeframe", ctx_r1.currentGoal().timeframe)("viewMode", ctx_r1.viewMode());
|
|
104500
104561
|
} }
|
|
104501
|
-
function
|
|
104562
|
+
function UnifiedDashboardModalComponent_Conditional_0_Conditional_14_Template(rf, ctx) { if (rf & 1) {
|
|
104563
|
+
i0.ɵɵelementStart(0, "div", 15);
|
|
104564
|
+
i0.ɵɵconditionalCreate(1, UnifiedDashboardModalComponent_Conditional_0_Conditional_14_Conditional_1_Template, 1, 2, "symphiq-priority-badge", 34);
|
|
104565
|
+
i0.ɵɵconditionalCreate(2, UnifiedDashboardModalComponent_Conditional_0_Conditional_14_Conditional_2_Template, 1, 2, "symphiq-timeframe-badge", 35);
|
|
104566
|
+
i0.ɵɵelementEnd();
|
|
104567
|
+
} if (rf & 2) {
|
|
104568
|
+
let tmp_4_0;
|
|
104569
|
+
let tmp_5_0;
|
|
104570
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
104571
|
+
i0.ɵɵadvance();
|
|
104572
|
+
i0.ɵɵconditional(((tmp_4_0 = ctx_r1.currentGoal()) == null ? null : tmp_4_0.priority) ? 1 : -1);
|
|
104573
|
+
i0.ɵɵadvance();
|
|
104574
|
+
i0.ɵɵconditional(((tmp_5_0 = ctx_r1.currentGoal()) == null ? null : tmp_5_0.timeframe) ? 2 : -1);
|
|
104575
|
+
} }
|
|
104576
|
+
function UnifiedDashboardModalComponent_Conditional_0_Conditional_20_Template(rf, ctx) { if (rf & 1) {
|
|
104502
104577
|
const _r8 = i0.ɵɵgetCurrentView();
|
|
104503
|
-
i0.ɵɵelementStart(0, "symphiq-unified-goal-detail-modal-content",
|
|
104504
|
-
i0.ɵɵlistener("sourceAnalysisClick", function
|
|
104578
|
+
i0.ɵɵelementStart(0, "symphiq-unified-goal-detail-modal-content", 36);
|
|
104579
|
+
i0.ɵɵlistener("sourceAnalysisClick", function UnifiedDashboardModalComponent_Conditional_0_Conditional_20_Template_symphiq_unified_goal_detail_modal_content_sourceAnalysisClick_0_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onSourceAnalysisClick($event)); })("metricClick", function UnifiedDashboardModalComponent_Conditional_0_Conditional_20_Template_symphiq_unified_goal_detail_modal_content_metricClick_0_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onMetricClick($event)); })("contributingMetricsClick", function UnifiedDashboardModalComponent_Conditional_0_Conditional_20_Template_symphiq_unified_goal_detail_modal_content_contributingMetricsClick_0_listener() { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onContributingMetricsClick()); })("showObjectives", function UnifiedDashboardModalComponent_Conditional_0_Conditional_20_Template_symphiq_unified_goal_detail_modal_content_showObjectives_0_listener() { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onShowObjectives()); })("close", function UnifiedDashboardModalComponent_Conditional_0_Conditional_20_Template_symphiq_unified_goal_detail_modal_content_close_0_listener() { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.closeModal()); });
|
|
104505
104580
|
i0.ɵɵelementEnd();
|
|
104506
104581
|
} if (rf & 2) {
|
|
104507
104582
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
104508
104583
|
i0.ɵɵproperty("goal", ctx_r1.unifiedGoalData().goal)("allMetrics", ctx_r1.unifiedGoalData().allMetrics)("allCharts", ctx_r1.unifiedGoalData().allCharts)("loadedSourceAnalysisIds", ctx_r1.loadedSourceAnalysisIdsAsNumbers())("loadingSourceAnalysisId", ctx_r1.loadingSourceAnalysisIdAsNumber())("viewMode", ctx_r1.viewMode())("currentModalState", ctx_r1.currentModalState());
|
|
104509
104584
|
} }
|
|
104510
|
-
function
|
|
104511
|
-
i0.ɵɵelement(0, "symphiq-goal-objectives-modal-content",
|
|
104585
|
+
function UnifiedDashboardModalComponent_Conditional_0_Conditional_21_Template(rf, ctx) { if (rf & 1) {
|
|
104586
|
+
i0.ɵɵelement(0, "symphiq-goal-objectives-modal-content", 21);
|
|
104512
104587
|
} if (rf & 2) {
|
|
104513
104588
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
104514
104589
|
i0.ɵɵproperty("objectives", ctx_r1.objectivesData().goal.objectives ?? i0.ɵɵpureFunction0(3, _c2$2))("goalTitle", ctx_r1.objectivesData().goal.title ?? "")("viewMode", ctx_r1.viewMode());
|
|
104515
104590
|
} }
|
|
104516
|
-
function
|
|
104591
|
+
function UnifiedDashboardModalComponent_Conditional_0_Conditional_22_Template(rf, ctx) { if (rf & 1) {
|
|
104517
104592
|
const _r9 = i0.ɵɵgetCurrentView();
|
|
104518
|
-
i0.ɵɵelementStart(0, "symphiq-unified-goal-related-metrics-modal-content",
|
|
104519
|
-
i0.ɵɵlistener("metricClick", function
|
|
104593
|
+
i0.ɵɵelementStart(0, "symphiq-unified-goal-related-metrics-modal-content", 37);
|
|
104594
|
+
i0.ɵɵlistener("metricClick", function UnifiedDashboardModalComponent_Conditional_0_Conditional_22_Template_symphiq_unified_goal_related_metrics_modal_content_metricClick_0_listener($event) { i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onRelatedMetricClick($event)); });
|
|
104520
104595
|
i0.ɵɵelementEnd();
|
|
104521
104596
|
} if (rf & 2) {
|
|
104522
104597
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
104523
104598
|
i0.ɵɵproperty("goal", ctx_r1.relatedMetricsData().goal)("contributingMetrics", ctx_r1.relatedMetricsData().contributingMetrics)("viewMode", ctx_r1.viewMode());
|
|
104524
104599
|
} }
|
|
104525
|
-
function
|
|
104526
|
-
i0.ɵɵelement(0, "symphiq-objective-strategies-modal-content",
|
|
104600
|
+
function UnifiedDashboardModalComponent_Conditional_0_Conditional_23_Template(rf, ctx) { if (rf & 1) {
|
|
104601
|
+
i0.ɵɵelement(0, "symphiq-objective-strategies-modal-content", 23);
|
|
104527
104602
|
} if (rf & 2) {
|
|
104528
104603
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
104529
104604
|
i0.ɵɵproperty("objective", ctx_r1.strategiesData().objective)("viewMode", ctx_r1.viewMode());
|
|
104530
104605
|
} }
|
|
104531
|
-
function
|
|
104532
|
-
i0.ɵɵelement(0, "symphiq-strategy-recommendations-modal-content",
|
|
104606
|
+
function UnifiedDashboardModalComponent_Conditional_0_Conditional_24_Template(rf, ctx) { if (rf & 1) {
|
|
104607
|
+
i0.ɵɵelement(0, "symphiq-strategy-recommendations-modal-content", 24);
|
|
104533
104608
|
} if (rf & 2) {
|
|
104534
104609
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
104535
104610
|
i0.ɵɵproperty("strategy", ctx_r1.recommendationsData().strategy)("viewMode", ctx_r1.viewMode())("allMetrics", ctx_r1.allMetricsFromStack())("allCharts", ctx_r1.allChartsFromStack())("allInsights", ctx_r1.allInsightsFromStack())("goalTitle", ctx_r1.recommendationsData().goalTitle)("objectiveTitle", ctx_r1.recommendationsData().objectiveTitle)("currentModalState", ctx_r1.currentModalState())("expandedRecommendationId", ctx_r1.recommendationsData().expandedRecommendationId);
|
|
104536
104611
|
} }
|
|
104537
|
-
function
|
|
104612
|
+
function UnifiedDashboardModalComponent_Conditional_0_Conditional_25_Template(rf, ctx) { if (rf & 1) {
|
|
104538
104613
|
const _r10 = i0.ɵɵgetCurrentView();
|
|
104539
|
-
i0.ɵɵelementStart(0, "symphiq-priority-actions-modal-content",
|
|
104540
|
-
i0.ɵɵlistener("goalClick", function
|
|
104614
|
+
i0.ɵɵelementStart(0, "symphiq-priority-actions-modal-content", 38);
|
|
104615
|
+
i0.ɵɵlistener("goalClick", function UnifiedDashboardModalComponent_Conditional_0_Conditional_25_Template_symphiq_priority_actions_modal_content_goalClick_0_listener($event) { i0.ɵɵrestoreView(_r10); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onPriorityActionGoalClick($event)); })("recommendationClick", function UnifiedDashboardModalComponent_Conditional_0_Conditional_25_Template_symphiq_priority_actions_modal_content_recommendationClick_0_listener($event) { i0.ɵɵrestoreView(_r10); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onPriorityActionRecommendationClick($event)); });
|
|
104541
104616
|
i0.ɵɵelementEnd();
|
|
104542
104617
|
} if (rf & 2) {
|
|
104543
104618
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
@@ -104554,30 +104629,28 @@ function UnifiedDashboardModalComponent_Conditional_0_Template(rf, ctx) { if (rf
|
|
|
104554
104629
|
i0.ɵɵconditionalCreate(7, UnifiedDashboardModalComponent_Conditional_0_Conditional_7_Template, 3, 1, "button", 9);
|
|
104555
104630
|
i0.ɵɵelementStart(8, "div", 10);
|
|
104556
104631
|
i0.ɵɵconditionalCreate(9, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Template, 8, 5, "div", 11)(10, UnifiedDashboardModalComponent_Conditional_0_Conditional_10_Template, 3, 2, "div", 12);
|
|
104557
|
-
i0.ɵɵelementStart(11, "
|
|
104558
|
-
i0.ɵɵtext(
|
|
104632
|
+
i0.ɵɵelementStart(11, "div", 13)(12, "h3", 14);
|
|
104633
|
+
i0.ɵɵtext(13);
|
|
104634
|
+
i0.ɵɵelementEnd();
|
|
104635
|
+
i0.ɵɵconditionalCreate(14, UnifiedDashboardModalComponent_Conditional_0_Conditional_14_Template, 3, 2, "div", 15);
|
|
104559
104636
|
i0.ɵɵelementEnd()()();
|
|
104560
|
-
i0.ɵɵelementStart(
|
|
104561
|
-
i0.ɵɵ
|
|
104562
|
-
i0.ɵɵconditionalCreate(15, UnifiedDashboardModalComponent_Conditional_0_Conditional_15_Template, 1, 2, "symphiq-timeframe-badge", 16);
|
|
104563
|
-
i0.ɵɵelementStart(16, "button", 17);
|
|
104564
|
-
i0.ɵɵlistener("click", function UnifiedDashboardModalComponent_Conditional_0_Template_button_click_16_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.closeModal()); });
|
|
104637
|
+
i0.ɵɵelementStart(15, "button", 16);
|
|
104638
|
+
i0.ɵɵlistener("click", function UnifiedDashboardModalComponent_Conditional_0_Template_button_click_15_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.closeModal()); });
|
|
104565
104639
|
i0.ɵɵnamespaceSVG();
|
|
104566
|
-
i0.ɵɵelementStart(
|
|
104567
|
-
i0.ɵɵelement(
|
|
104568
|
-
i0.ɵɵelementEnd()()()()
|
|
104640
|
+
i0.ɵɵelementStart(16, "svg", 17);
|
|
104641
|
+
i0.ɵɵelement(17, "path", 18);
|
|
104642
|
+
i0.ɵɵelementEnd()()()();
|
|
104569
104643
|
i0.ɵɵnamespaceHTML();
|
|
104570
|
-
i0.ɵɵelementStart(
|
|
104571
|
-
i0.ɵɵconditionalCreate(
|
|
104572
|
-
i0.ɵɵconditionalCreate(
|
|
104573
|
-
i0.ɵɵconditionalCreate(
|
|
104574
|
-
i0.ɵɵconditionalCreate(
|
|
104575
|
-
i0.ɵɵconditionalCreate(
|
|
104576
|
-
i0.ɵɵconditionalCreate(
|
|
104644
|
+
i0.ɵɵelementStart(18, "div", 19, 1);
|
|
104645
|
+
i0.ɵɵconditionalCreate(20, UnifiedDashboardModalComponent_Conditional_0_Conditional_20_Template, 1, 7, "symphiq-unified-goal-detail-modal-content", 20);
|
|
104646
|
+
i0.ɵɵconditionalCreate(21, UnifiedDashboardModalComponent_Conditional_0_Conditional_21_Template, 1, 4, "symphiq-goal-objectives-modal-content", 21);
|
|
104647
|
+
i0.ɵɵconditionalCreate(22, UnifiedDashboardModalComponent_Conditional_0_Conditional_22_Template, 1, 3, "symphiq-unified-goal-related-metrics-modal-content", 22);
|
|
104648
|
+
i0.ɵɵconditionalCreate(23, UnifiedDashboardModalComponent_Conditional_0_Conditional_23_Template, 1, 2, "symphiq-objective-strategies-modal-content", 23);
|
|
104649
|
+
i0.ɵɵconditionalCreate(24, UnifiedDashboardModalComponent_Conditional_0_Conditional_24_Template, 1, 9, "symphiq-strategy-recommendations-modal-content", 24);
|
|
104650
|
+
i0.ɵɵconditionalCreate(25, UnifiedDashboardModalComponent_Conditional_0_Conditional_25_Template, 1, 3, "symphiq-priority-actions-modal-content", 25);
|
|
104577
104651
|
i0.ɵɵelementEnd()()();
|
|
104578
104652
|
} if (rf & 2) {
|
|
104579
104653
|
let tmp_17_0;
|
|
104580
|
-
let tmp_18_0;
|
|
104581
104654
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
104582
104655
|
i0.ɵɵstyleProp("z-index", ctx_r1.baseZIndex())("visibility", ctx_r1.modalReady() ? "visible" : "hidden");
|
|
104583
104656
|
i0.ɵɵadvance(2);
|
|
@@ -104593,31 +104666,29 @@ function UnifiedDashboardModalComponent_Conditional_0_Template(rf, ctx) { if (rf
|
|
|
104593
104666
|
i0.ɵɵconditional(ctx_r1.navigationStack().length > 0 ? 7 : -1);
|
|
104594
104667
|
i0.ɵɵadvance(2);
|
|
104595
104668
|
i0.ɵɵconditional(ctx_r1.navigationStack().length > 0 ? 9 : 10);
|
|
104596
|
-
i0.ɵɵadvance(
|
|
104669
|
+
i0.ɵɵadvance(3);
|
|
104597
104670
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-900" : "text-white");
|
|
104598
104671
|
i0.ɵɵadvance();
|
|
104599
104672
|
i0.ɵɵtextInterpolate1(" ", ctx_r1.modalTitle(), " ");
|
|
104600
|
-
i0.ɵɵadvance(2);
|
|
104601
|
-
i0.ɵɵconditional(((tmp_17_0 = ctx_r1.currentGoal()) == null ? null : tmp_17_0.priority) ? 14 : -1);
|
|
104602
104673
|
i0.ɵɵadvance();
|
|
104603
|
-
i0.ɵɵconditional(((
|
|
104674
|
+
i0.ɵɵconditional(((tmp_17_0 = ctx_r1.currentGoal()) == null ? null : tmp_17_0.priority) || ((tmp_17_0 = ctx_r1.currentGoal()) == null ? null : tmp_17_0.timeframe) ? 14 : -1);
|
|
104604
104675
|
i0.ɵɵadvance();
|
|
104605
104676
|
i0.ɵɵstyleProp("z-index", ctx_r1.contentZIndex() + 1);
|
|
104606
104677
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-600 hover:text-slate-900 hover:bg-slate-100" : "text-slate-400 hover:text-white hover:bg-slate-700");
|
|
104607
104678
|
i0.ɵɵadvance(3);
|
|
104608
104679
|
i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "bg-white/30" : "bg-slate-800/30");
|
|
104609
104680
|
i0.ɵɵadvance(2);
|
|
104610
|
-
i0.ɵɵconditional(ctx_r1.modalType() === "unified-goal-detail" && ctx_r1.unifiedGoalData() ?
|
|
104681
|
+
i0.ɵɵconditional(ctx_r1.modalType() === "unified-goal-detail" && ctx_r1.unifiedGoalData() ? 20 : -1);
|
|
104611
104682
|
i0.ɵɵadvance();
|
|
104612
|
-
i0.ɵɵconditional(ctx_r1.modalType() === "unified-goal-objectives" && ctx_r1.objectivesData() ?
|
|
104683
|
+
i0.ɵɵconditional(ctx_r1.modalType() === "unified-goal-objectives" && ctx_r1.objectivesData() ? 21 : -1);
|
|
104613
104684
|
i0.ɵɵadvance();
|
|
104614
|
-
i0.ɵɵconditional(ctx_r1.modalType() === "unified-goal-related-metrics" && ctx_r1.relatedMetricsData() ?
|
|
104685
|
+
i0.ɵɵconditional(ctx_r1.modalType() === "unified-goal-related-metrics" && ctx_r1.relatedMetricsData() ? 22 : -1);
|
|
104615
104686
|
i0.ɵɵadvance();
|
|
104616
|
-
i0.ɵɵconditional(ctx_r1.modalType() === "objective-strategies" && ctx_r1.strategiesData() ?
|
|
104687
|
+
i0.ɵɵconditional(ctx_r1.modalType() === "objective-strategies" && ctx_r1.strategiesData() ? 23 : -1);
|
|
104617
104688
|
i0.ɵɵadvance();
|
|
104618
|
-
i0.ɵɵconditional(ctx_r1.modalType() === "strategy-recommendations" && ctx_r1.recommendationsData() ?
|
|
104689
|
+
i0.ɵɵconditional(ctx_r1.modalType() === "strategy-recommendations" && ctx_r1.recommendationsData() ? 24 : -1);
|
|
104619
104690
|
i0.ɵɵadvance();
|
|
104620
|
-
i0.ɵɵconditional(ctx_r1.modalType() === "priority-actions-list" && ctx_r1.priorityActionsData() ?
|
|
104691
|
+
i0.ɵɵconditional(ctx_r1.modalType() === "priority-actions-list" && ctx_r1.priorityActionsData() ? 25 : -1);
|
|
104621
104692
|
} }
|
|
104622
104693
|
class UnifiedDashboardModalComponent {
|
|
104623
104694
|
constructor() {
|
|
@@ -104817,7 +104888,6 @@ class UnifiedDashboardModalComponent {
|
|
|
104817
104888
|
const isStackableType = stackableTypes.includes(state.type || '');
|
|
104818
104889
|
if (!isUnifiedType && state.type !== null && !isStackableType) {
|
|
104819
104890
|
if (this.isOpen()) {
|
|
104820
|
-
console.log('[UnifiedDashboardModal] Closing - transitioning to non-unified type:', state.type);
|
|
104821
104891
|
this.isOpen.set(false);
|
|
104822
104892
|
this.cleanupTimeoutId = setTimeout(() => {
|
|
104823
104893
|
this.modalType.set(null);
|
|
@@ -104919,14 +104989,6 @@ class UnifiedDashboardModalComponent {
|
|
|
104919
104989
|
return;
|
|
104920
104990
|
const contributingMetricNames = data.goal.contributingMetrics || [];
|
|
104921
104991
|
const contributingMetrics = data.allMetrics.filter(m => m.metric && contributingMetricNames.includes(m.metric));
|
|
104922
|
-
console.log('[UnifiedDashboardModal] onContributingMetricsClick:', {
|
|
104923
|
-
goalTitle: data.goal.title,
|
|
104924
|
-
contributingMetricNames,
|
|
104925
|
-
contributingMetricsCount: contributingMetrics.length,
|
|
104926
|
-
contributingMetricsPerformanceItemIds: contributingMetrics.map(m => m.performanceItemId),
|
|
104927
|
-
allChartsCount: data.allCharts?.length || 0,
|
|
104928
|
-
allChartsPerformanceItemIds: data.allCharts?.map(c => c.performanceItemId)
|
|
104929
|
-
});
|
|
104930
104992
|
this.modalService.navigateToUnifiedGoalRelatedMetrics(data.goal, contributingMetrics, data.allCharts, this.viewMode());
|
|
104931
104993
|
}
|
|
104932
104994
|
onShowObjectives() {
|
|
@@ -104939,13 +105001,6 @@ class UnifiedDashboardModalComponent {
|
|
|
104939
105001
|
const data = this.relatedMetricsData();
|
|
104940
105002
|
const allCharts = data?.allCharts || [];
|
|
104941
105003
|
const metricCharts = this.getChartsForMetric(metric, allCharts);
|
|
104942
|
-
console.log('[UnifiedDashboardModal] onRelatedMetricClick:', {
|
|
104943
|
-
metricName: metric.metric,
|
|
104944
|
-
metricPerformanceItemId: metric.performanceItemId,
|
|
104945
|
-
allChartsCount: allCharts.length,
|
|
104946
|
-
filteredChartsCount: metricCharts.length,
|
|
104947
|
-
currentModalState: this.currentModalState()?.type
|
|
104948
|
-
});
|
|
104949
105004
|
this.modalService.openMetricModal(metric, metricCharts, this.currentModalState() ?? undefined);
|
|
104950
105005
|
}
|
|
104951
105006
|
getChartsForMetric(metric, allCharts) {
|
|
@@ -105092,8 +105147,8 @@ class UnifiedDashboardModalComponent {
|
|
|
105092
105147
|
let _t;
|
|
105093
105148
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.modalContent = _t.first);
|
|
105094
105149
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.modalWrapper = _t.first);
|
|
105095
|
-
} }, inputs: { viewMode: [1, "viewMode"], loadingSourceAnalysisId: [1, "loadingSourceAnalysisId"] }, outputs: { priorityActionGoalClick: "priorityActionGoalClick", priorityActionRecommendationClick: "priorityActionRecommendationClick", sourceAnalysisClickRequest: "sourceAnalysisClickRequest" }, decls: 1, vars: 1, consts: [["modalWrapper", ""], ["modalContent", ""], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto", 3, "z-index", "visibility"], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto"], ["aria-hidden", "true", 1, "fixed", "inset-0", "backdrop-blur-sm", "transition-opacity", "duration-200", 3, "click", "ngClass"], [1, "relative", "w-full", "max-w-6xl", "rounded-2xl", "text-left", "overflow-hidden", "shadow-xl", "border", "backdrop-blur-xl", 3, "click", "ngClass"], [1, "px-6", "py-5", "border-b", "backdrop-blur-sm", 3, "ngClass"], [1, "flex", "items-start", "justify-between"], [1, "flex", "items-start", "gap-3", "flex-1", "min-w-0"], ["type", "button", 1, "mt-0.5", "p-1.5", "rounded-lg", "transition-all", "hover:scale-105", "active:scale-95", "cursor-pointer", "flex-shrink-0", 3, "ngClass"], [1, "flex-1", "min-w-0"], [1, "flex", "items-center", "gap-1.5", "mb-2", "text-xs"], [1, "flex", "items-center", "gap-2", "mb-2"], [1, "
|
|
105096
|
-
i0.ɵɵconditionalCreate(0, UnifiedDashboardModalComponent_Conditional_0_Template,
|
|
105150
|
+
} }, inputs: { viewMode: [1, "viewMode"], loadingSourceAnalysisId: [1, "loadingSourceAnalysisId"] }, outputs: { priorityActionGoalClick: "priorityActionGoalClick", priorityActionRecommendationClick: "priorityActionRecommendationClick", sourceAnalysisClickRequest: "sourceAnalysisClickRequest" }, decls: 1, vars: 1, consts: [["modalWrapper", ""], ["modalContent", ""], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto", 3, "z-index", "visibility"], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto"], ["aria-hidden", "true", 1, "fixed", "inset-0", "backdrop-blur-sm", "transition-opacity", "duration-200", 3, "click", "ngClass"], [1, "relative", "w-full", "max-w-6xl", "rounded-2xl", "text-left", "overflow-hidden", "shadow-xl", "border", "backdrop-blur-xl", 3, "click", "ngClass"], [1, "px-6", "py-5", "border-b", "backdrop-blur-sm", 3, "ngClass"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "flex", "items-start", "gap-3", "flex-1", "min-w-0"], ["type", "button", 1, "mt-0.5", "p-1.5", "rounded-lg", "transition-all", "hover:scale-105", "active:scale-95", "cursor-pointer", "flex-shrink-0", 3, "ngClass"], [1, "flex-1", "min-w-0"], [1, "flex", "items-center", "gap-1.5", "mb-2", "text-xs"], [1, "flex", "items-center", "gap-2", "mb-2"], [1, "flex", "flex-wrap", "items-center", "justify-between", "gap-x-4", "gap-y-2"], [1, "text-xl", "font-bold", "leading-tight", 3, "ngClass"], [1, "flex", "items-center", "gap-2"], ["type", "button", 1, "transition-all", "rounded-lg", "p-1", "hover:scale-110", "active:scale-90", "cursor-pointer", "flex-shrink-0", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M6 18L18 6M6 6l12 12"], [1, "px-6", "py-8", "max-h-[80vh]", "overflow-y-auto", "backdrop-blur-sm", 3, "ngClass"], [3, "goal", "allMetrics", "allCharts", "loadedSourceAnalysisIds", "loadingSourceAnalysisId", "viewMode", "currentModalState"], [3, "objectives", "goalTitle", "viewMode"], [3, "goal", "contributingMetrics", "viewMode"], [3, "objective", "viewMode"], [3, "strategy", "viewMode", "allMetrics", "allCharts", "allInsights", "goalTitle", "objectiveTitle", "currentModalState", "expandedRecommendationId"], [3, "items", "viewMode", "selectedIndex"], ["type", "button", 1, "mt-0.5", "p-1.5", "rounded-lg", "transition-all", "hover:scale-105", "active:scale-95", "cursor-pointer", "flex-shrink-0", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 19l-7-7 7-7"], [1, "font-medium", 3, "ngClass"], ["type", "button", 1, "hover:underline", "cursor-pointer", "transition-colors", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-3", "h-3", "flex-shrink-0", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [3, "priority", "viewMode"], [3, "timeframe", "viewMode"], [3, "sourceAnalysisClick", "metricClick", "contributingMetricsClick", "showObjectives", "close", "goal", "allMetrics", "allCharts", "loadedSourceAnalysisIds", "loadingSourceAnalysisId", "viewMode", "currentModalState"], [3, "metricClick", "goal", "contributingMetrics", "viewMode"], [3, "goalClick", "recommendationClick", "items", "viewMode", "selectedIndex"]], template: function UnifiedDashboardModalComponent_Template(rf, ctx) { if (rf & 1) {
|
|
105151
|
+
i0.ɵɵconditionalCreate(0, UnifiedDashboardModalComponent_Conditional_0_Template, 26, 31, "div", 2);
|
|
105097
105152
|
} if (rf & 2) {
|
|
105098
105153
|
i0.ɵɵconditional(ctx.isOpen() ? 0 : -1);
|
|
105099
105154
|
} }, dependencies: [CommonModule, i1$1.NgClass, UnifiedGoalDetailModalContentComponent,
|
|
@@ -105166,9 +105221,8 @@ class UnifiedDashboardModalComponent {
|
|
|
105166
105221
|
@slideUpFade>
|
|
105167
105222
|
|
|
105168
105223
|
<div [ngClass]="isLightMode() ? 'bg-white/50 border-slate-200/50' : 'bg-slate-800/50 border-slate-700/50'" class="px-6 py-5 border-b backdrop-blur-sm">
|
|
105169
|
-
<div class="flex items-start justify-between">
|
|
105224
|
+
<div class="flex items-start justify-between gap-4">
|
|
105170
105225
|
<div class="flex items-start gap-3 flex-1 min-w-0">
|
|
105171
|
-
<!-- Back Button -->
|
|
105172
105226
|
@if (navigationStack().length > 0) {
|
|
105173
105227
|
<button
|
|
105174
105228
|
type="button"
|
|
@@ -105181,7 +105235,6 @@ class UnifiedDashboardModalComponent {
|
|
|
105181
105235
|
</button>
|
|
105182
105236
|
}
|
|
105183
105237
|
<div class="flex-1 min-w-0">
|
|
105184
|
-
<!-- Breadcrumb Navigation -->
|
|
105185
105238
|
@if (navigationStack().length > 0) {
|
|
105186
105239
|
<div class="flex items-center gap-1.5 mb-2 text-xs">
|
|
105187
105240
|
@for (item of navigationStack(); track $index; let last = $last) {
|
|
@@ -105222,31 +105275,34 @@ class UnifiedDashboardModalComponent {
|
|
|
105222
105275
|
</div>
|
|
105223
105276
|
}
|
|
105224
105277
|
|
|
105225
|
-
<
|
|
105226
|
-
|
|
105227
|
-
|
|
105278
|
+
<div class="flex flex-wrap items-center justify-between gap-x-4 gap-y-2">
|
|
105279
|
+
<h3 [ngClass]="isLightMode() ? 'text-slate-900' : 'text-white'" class="text-xl font-bold leading-tight">
|
|
105280
|
+
{{ modalTitle() }}
|
|
105281
|
+
</h3>
|
|
105282
|
+
@if (currentGoal()?.priority || currentGoal()?.timeframe) {
|
|
105283
|
+
<div class="flex items-center gap-2">
|
|
105284
|
+
@if (currentGoal()?.priority) {
|
|
105285
|
+
<symphiq-priority-badge [priority]="currentGoal()!.priority" [viewMode]="viewMode()" />
|
|
105286
|
+
}
|
|
105287
|
+
@if (currentGoal()?.timeframe) {
|
|
105288
|
+
<symphiq-timeframe-badge [timeframe]="currentGoal()!.timeframe" [viewMode]="viewMode()" />
|
|
105289
|
+
}
|
|
105290
|
+
</div>
|
|
105291
|
+
}
|
|
105292
|
+
</div>
|
|
105228
105293
|
</div>
|
|
105229
105294
|
</div>
|
|
105230
105295
|
|
|
105231
|
-
<
|
|
105232
|
-
@if (currentGoal()?.priority) {
|
|
105233
|
-
<symphiq-priority-badge [priority]="currentGoal()!.priority" [viewMode]="viewMode()" />
|
|
105234
|
-
}
|
|
105235
|
-
@if (currentGoal()?.timeframe) {
|
|
105236
|
-
<symphiq-timeframe-badge [timeframe]="currentGoal()!.timeframe" [viewMode]="viewMode()" />
|
|
105237
|
-
}
|
|
105238
|
-
|
|
105239
|
-
<button
|
|
105296
|
+
<button
|
|
105240
105297
|
type="button"
|
|
105241
105298
|
(click)="closeModal()"
|
|
105242
105299
|
[ngClass]="isLightMode() ? 'text-slate-600 hover:text-slate-900 hover:bg-slate-100' : 'text-slate-400 hover:text-white hover:bg-slate-700'"
|
|
105243
|
-
class="transition-all rounded-lg p-1 hover:scale-110 active:scale-90 cursor-pointer
|
|
105300
|
+
class="transition-all rounded-lg p-1 hover:scale-110 active:scale-90 cursor-pointer flex-shrink-0"
|
|
105244
105301
|
[style.z-index]="contentZIndex() + 1">
|
|
105245
105302
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
105246
105303
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
|
|
105247
105304
|
</svg>
|
|
105248
105305
|
</button>
|
|
105249
|
-
</div>
|
|
105250
105306
|
</div>
|
|
105251
105307
|
</div>
|
|
105252
105308
|
|
|
@@ -105323,7 +105379,7 @@ class UnifiedDashboardModalComponent {
|
|
|
105323
105379
|
type: ViewChild,
|
|
105324
105380
|
args: ['modalWrapper']
|
|
105325
105381
|
}] }); })();
|
|
105326
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedDashboardModalComponent, { className: "UnifiedDashboardModalComponent", filePath: "lib/components/profile-analysis-unified-dashboard/modals/unified-dashboard-modal.component.ts", lineNumber:
|
|
105382
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedDashboardModalComponent, { className: "UnifiedDashboardModalComponent", filePath: "lib/components/profile-analysis-unified-dashboard/modals/unified-dashboard-modal.component.ts", lineNumber: 238 }); })();
|
|
105327
105383
|
|
|
105328
105384
|
function UnifiedWelcomeBannerComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
105329
105385
|
i0.ɵɵtext(0, " Your Unified Goals ");
|
|
@@ -105548,7 +105604,7 @@ class UnifiedWelcomeBannerComponent {
|
|
|
105548
105604
|
const _c0$7 = () => [];
|
|
105549
105605
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
105550
105606
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
105551
|
-
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator",
|
|
105607
|
+
i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 14);
|
|
105552
105608
|
i0.ɵɵlistener("nextStepClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_5_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); })("stepClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_5_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); });
|
|
105553
105609
|
i0.ɵɵelementEnd();
|
|
105554
105610
|
} if (rf & 2) {
|
|
@@ -105556,18 +105612,18 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_5_Template(
|
|
|
105556
105612
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentStepId", ctx_r1.JourneyStepIdEnum.UNIFIED_ANALYSIS)("showNextStepAction", false)("forDemo", ctx_r1.forDemo())("maxAccessibleStepId", ctx_r1.maxAccessibleStepId());
|
|
105557
105613
|
} }
|
|
105558
105614
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
105559
|
-
i0.ɵɵelement(0, "symphiq-loading-card",
|
|
105615
|
+
i0.ɵɵelement(0, "symphiq-loading-card", 15);
|
|
105560
105616
|
} if (rf & 2) {
|
|
105561
105617
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
105562
105618
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("backdropBlur", true);
|
|
105563
105619
|
} }
|
|
105564
105620
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
105565
105621
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
105566
|
-
i0.ɵɵelement(0, "symphiq-unified-welcome-banner",
|
|
105567
|
-
i0.ɵɵelementStart(1, "symphiq-unified-goals-grid",
|
|
105622
|
+
i0.ɵɵelement(0, "symphiq-unified-welcome-banner", 16);
|
|
105623
|
+
i0.ɵɵelementStart(1, "symphiq-unified-goals-grid", 17);
|
|
105568
105624
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_unified_goals_grid_goalClick_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); })("sourceBadgeClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_unified_goals_grid_sourceBadgeClick_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onSourceBadgeClickFromCard($event)); })("relatedMetricsClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_unified_goals_grid_relatedMetricsClick_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onRelatedMetricsClickFromCard($event)); });
|
|
105569
105625
|
i0.ɵɵelementEnd();
|
|
105570
|
-
i0.ɵɵelementStart(2, "symphiq-collapsible-analysis-section-group",
|
|
105626
|
+
i0.ɵɵelementStart(2, "symphiq-collapsible-analysis-section-group", 18);
|
|
105571
105627
|
i0.ɵɵlistener("unifiedGoalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_collapsible_analysis_section_group_unifiedGoalClick_2_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); })("viewAllPriorityActionsClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_collapsible_analysis_section_group_viewAllPriorityActionsClick_2_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onViewAllPriorityActionsClick()); });
|
|
105572
105628
|
i0.ɵɵelementEnd();
|
|
105573
105629
|
} if (rf & 2) {
|
|
@@ -105580,20 +105636,20 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Condition
|
|
|
105580
105636
|
} }
|
|
105581
105637
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
105582
105638
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
105583
|
-
i0.ɵɵelement(0, "symphiq-unified-welcome-banner",
|
|
105584
|
-
i0.ɵɵelementStart(1, "symphiq-unified-executive-summary",
|
|
105639
|
+
i0.ɵɵelement(0, "symphiq-unified-welcome-banner", 16);
|
|
105640
|
+
i0.ɵɵelementStart(1, "symphiq-unified-executive-summary", 19);
|
|
105585
105641
|
i0.ɵɵlistener("viewAllPriorityActionsClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_executive_summary_viewAllPriorityActionsClick_1_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onViewAllPriorityActionsClick()); });
|
|
105586
105642
|
i0.ɵɵelementEnd();
|
|
105587
|
-
i0.ɵɵelementStart(2, "symphiq-unified-goals-grid",
|
|
105643
|
+
i0.ɵɵelementStart(2, "symphiq-unified-goals-grid", 20);
|
|
105588
105644
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_goals_grid_goalClick_2_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); })("sourceBadgeClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_goals_grid_sourceBadgeClick_2_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onSourceBadgeClickFromCard($event)); })("relatedMetricsClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_goals_grid_relatedMetricsClick_2_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onRelatedMetricsClickFromCard($event)); });
|
|
105589
105645
|
i0.ɵɵelementEnd();
|
|
105590
|
-
i0.ɵɵelementStart(3, "symphiq-unified-timeline",
|
|
105646
|
+
i0.ɵɵelementStart(3, "symphiq-unified-timeline", 21);
|
|
105591
105647
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_timeline_goalClick_3_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); });
|
|
105592
105648
|
i0.ɵɵelementEnd();
|
|
105593
|
-
i0.ɵɵelementStart(4, "symphiq-unified-priority-matrix",
|
|
105649
|
+
i0.ɵɵelementStart(4, "symphiq-unified-priority-matrix", 22);
|
|
105594
105650
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_priority_matrix_goalClick_4_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); });
|
|
105595
105651
|
i0.ɵɵelementEnd();
|
|
105596
|
-
i0.ɵɵelementStart(5, "symphiq-unified-next-steps",
|
|
105652
|
+
i0.ɵɵelementStart(5, "symphiq-unified-next-steps", 23);
|
|
105597
105653
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_next_steps_goalClick_5_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); });
|
|
105598
105654
|
i0.ɵɵelementEnd();
|
|
105599
105655
|
} if (rf & 2) {
|
|
@@ -105611,14 +105667,13 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Condition
|
|
|
105611
105667
|
i0.ɵɵproperty("steps", ctx_r1.nextSteps())("viewMode", ctx_r1.viewMode())("goals", ctx_r1.unifiedGoals());
|
|
105612
105668
|
} }
|
|
105613
105669
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
105614
|
-
i0.ɵɵelementStart(0, "main",
|
|
105615
|
-
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_1_Template, 1, 2, "symphiq-loading-card",
|
|
105670
|
+
i0.ɵɵelementStart(0, "main", 6);
|
|
105671
|
+
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_1_Template, 1, 2, "symphiq-loading-card", 15);
|
|
105616
105672
|
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template, 3, 21);
|
|
105617
105673
|
i0.ɵɵconditionalCreate(3, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template, 6, 23);
|
|
105618
105674
|
i0.ɵɵelementEnd();
|
|
105619
105675
|
} if (rf & 2) {
|
|
105620
105676
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
105621
|
-
i0.ɵɵclassProp("pb-32", ctx_r1.shouldShowReviewFooter());
|
|
105622
105677
|
i0.ɵɵadvance();
|
|
105623
105678
|
i0.ɵɵconditional(ctx_r1.isSimplifiedView() && ctx_r1.isLoading() ? 1 : -1);
|
|
105624
105679
|
i0.ɵɵadvance();
|
|
@@ -105634,7 +105689,7 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_7_Template(
|
|
|
105634
105689
|
} }
|
|
105635
105690
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
105636
105691
|
const _r5 = i0.ɵɵgetCurrentView();
|
|
105637
|
-
i0.ɵɵelementStart(0, "symphiq-search-modal",
|
|
105692
|
+
i0.ɵɵelementStart(0, "symphiq-search-modal", 24);
|
|
105638
105693
|
i0.ɵɵlistener("close", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_8_Template_symphiq_search_modal_close_0_listener() { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.closeSearch()); });
|
|
105639
105694
|
i0.ɵɵelementEnd();
|
|
105640
105695
|
} if (rf & 2) {
|
|
@@ -105643,7 +105698,7 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_8_Template(
|
|
|
105643
105698
|
} }
|
|
105644
105699
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
105645
105700
|
const _r6 = i0.ɵɵgetCurrentView();
|
|
105646
|
-
i0.ɵɵelementStart(0, "symphiq-view-mode-switcher-modal",
|
|
105701
|
+
i0.ɵɵelementStart(0, "symphiq-view-mode-switcher-modal", 25);
|
|
105647
105702
|
i0.ɵɵlistener("close", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_9_Template_symphiq_view_mode_switcher_modal_close_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.closeViewModeSwitcher()); })("modeSelected", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_9_Template_symphiq_view_mode_switcher_modal_modeSelected_0_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleDisplayModeChange($event)); });
|
|
105648
105703
|
i0.ɵɵelementEnd();
|
|
105649
105704
|
} if (rf & 2) {
|
|
@@ -105651,16 +105706,7 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_9_Template(
|
|
|
105651
105706
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentMode", ctx_r1.currentDisplayMode())("isOpen", true);
|
|
105652
105707
|
} }
|
|
105653
105708
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
|
|
105654
|
-
|
|
105655
|
-
i0.ɵɵelementStart(0, "symphiq-mark-as-reviewed-footer", 28);
|
|
105656
|
-
i0.ɵɵlistener("markAsReviewed", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_10_Template_symphiq_mark_as_reviewed_footer_markAsReviewed_0_listener() { i0.ɵɵrestoreView(_r7); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleMarkAsReviewedClick()); });
|
|
105657
|
-
i0.ɵɵelementEnd();
|
|
105658
|
-
} if (rf & 2) {
|
|
105659
|
-
const ctx_r1 = i0.ɵɵnextContext();
|
|
105660
|
-
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("selfContentStatus", ctx_r1.selfContentStatus())("isLoading", ctx_r1.isMarkingAsReviewed());
|
|
105661
|
-
} }
|
|
105662
|
-
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_11_Template(rf, ctx) { if (rf & 1) {
|
|
105663
|
-
i0.ɵɵelement(0, "symphiq-content-generation-progress-with-confetti", 11);
|
|
105709
|
+
i0.ɵɵelement(0, "symphiq-content-generation-progress-with-confetti", 10);
|
|
105664
105710
|
} if (rf & 2) {
|
|
105665
105711
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
105666
105712
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("itemStatus", ctx_r1.itemStatus())("currentStatus", ctx_r1.selfContentStatus())("confettiIntensity", "celebration")("title", "We are generating a new Unified Analysis for " + ctx_r1.businessName() + ".");
|
|
@@ -105681,9 +105727,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
105681
105727
|
this.forDemo = input(false, ...(ngDevMode ? [{ debugName: "forDemo" }] : []));
|
|
105682
105728
|
this.maxAccessibleStepId = input(...(ngDevMode ? [undefined, { debugName: "maxAccessibleStepId" }] : []));
|
|
105683
105729
|
this.itemStatus = input(...(ngDevMode ? [undefined, { debugName: "itemStatus" }] : []));
|
|
105684
|
-
this.isMarkingAsReviewed = input(false, ...(ngDevMode ? [{ debugName: "isMarkingAsReviewed" }] : []));
|
|
105685
105730
|
this.requestedByUser = input(...(ngDevMode ? [undefined, { debugName: "requestedByUser" }] : []));
|
|
105686
|
-
this.markAsReviewedClick = output();
|
|
105687
105731
|
this.generateGoalsClick = output();
|
|
105688
105732
|
this.stepClick = output();
|
|
105689
105733
|
this.nextStepClick = output();
|
|
@@ -105958,13 +106002,6 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
105958
106002
|
}
|
|
105959
106003
|
return sections;
|
|
105960
106004
|
}, ...(ngDevMode ? [{ debugName: "unifiedCollapsibleSections" }] : []));
|
|
105961
|
-
this.shouldShowReviewFooter = computed(() => {
|
|
105962
|
-
const analysis = this.unifiedProfileAnalysis();
|
|
105963
|
-
if (!analysis)
|
|
105964
|
-
return false;
|
|
105965
|
-
return analysis.selfContentStatus === AiDynamicContentStatusEnum.GENERATED &&
|
|
105966
|
-
analysis.reviewStatus === ProfileAnalysisReviewStatusEnum.NOT_REVIEWED;
|
|
105967
|
-
}, ...(ngDevMode ? [{ debugName: "shouldShowReviewFooter" }] : []));
|
|
105968
106005
|
this.welcomeBannerClasses = computed(() => this.isLightMode()
|
|
105969
106006
|
? 'bg-gradient-to-r from-blue-600 via-cyan-600 to-teal-600 text-white'
|
|
105970
106007
|
: 'bg-gradient-to-r from-blue-900/80 via-cyan-900/80 to-teal-900/80 text-white border border-blue-700/50', ...(ngDevMode ? [{ debugName: "welcomeBannerClasses" }] : []));
|
|
@@ -106055,26 +106092,14 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106055
106092
|
}
|
|
106056
106093
|
}
|
|
106057
106094
|
}, ...(ngDevMode ? [{ debugName: "embeddedScrollEffect" }] : []));
|
|
106058
|
-
this.sourceProfileAnalysesWatcher = effect(() => {
|
|
106059
|
-
const analyses = this.sourceProfileAnalyses();
|
|
106060
|
-
console.log('[SourceAnalysis] sourceProfileAnalyses input changed', {
|
|
106061
|
-
count: analyses?.length ?? 0,
|
|
106062
|
-
ids: analyses?.map(a => a.id) ?? []
|
|
106063
|
-
});
|
|
106064
|
-
}, ...(ngDevMode ? [{ debugName: "sourceProfileAnalysesWatcher" }] : []));
|
|
106065
106095
|
this.pendingSourceRequestEffect = effect(() => {
|
|
106066
106096
|
const pending = this.pendingSourceRequest();
|
|
106067
|
-
const sourceAnalysesMapKeys = Array.from(this.sourceAnalysesMap().keys());
|
|
106068
|
-
console.log('[SourceAnalysis] Effect running', { pendingAnalysisId: pending?.analysisId, sourceAnalysesMapKeys });
|
|
106069
|
-
console.log('this.sourceProfileAnalyses()', this.sourceProfileAnalyses());
|
|
106070
106097
|
if (!pending?.analysisId)
|
|
106071
106098
|
return;
|
|
106072
106099
|
const analysis = this.sourceAnalysesMap().get(pending.analysisId);
|
|
106073
|
-
console.log('[SourceAnalysis] Effect checking for analysis', { analysisId: pending.analysisId, found: !!analysis });
|
|
106074
106100
|
if (analysis) {
|
|
106075
|
-
console.log('[SourceAnalysis] Effect found analysis, opening modal');
|
|
106076
106101
|
untracked(() => {
|
|
106077
|
-
this.openSourceGoalModal(analysis, pending.sourceGoalId);
|
|
106102
|
+
this.openSourceGoalModal(analysis, pending.sourceGoalId, pending.analysisType);
|
|
106078
106103
|
});
|
|
106079
106104
|
}
|
|
106080
106105
|
}, ...(ngDevMode ? [{ debugName: "pendingSourceRequestEffect" }] : []));
|
|
@@ -106150,9 +106175,6 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106150
106175
|
this.currentDisplayMode.set(mode);
|
|
106151
106176
|
this.closeViewModeSwitcher();
|
|
106152
106177
|
}
|
|
106153
|
-
handleMarkAsReviewedClick() {
|
|
106154
|
-
this.markAsReviewedClick.emit();
|
|
106155
|
-
}
|
|
106156
106178
|
onGoalClick(goal) {
|
|
106157
106179
|
this.modalService.openUnifiedGoalModal(goal, this.allMetrics(), this.allCharts(), this.loadedSourceAnalysisIds().map(String), this.viewMode(), this.loadingSourceAnalysisId() !== undefined ? String(this.loadingSourceAnalysisId()) : undefined);
|
|
106158
106180
|
}
|
|
@@ -106242,10 +106264,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106242
106264
|
if (analysisId === undefined)
|
|
106243
106265
|
return;
|
|
106244
106266
|
const existingAnalysis = this.sourceAnalysesMap().get(analysisId);
|
|
106245
|
-
if (existingAnalysis) {
|
|
106246
|
-
console.log('Opening cached source analysis:', source);
|
|
106247
|
-
}
|
|
106248
|
-
else {
|
|
106267
|
+
if (!existingAnalysis) {
|
|
106249
106268
|
this.loadingSourceAnalysisId.set(analysisId);
|
|
106250
106269
|
this.sourceAnalysisRequest.emit({
|
|
106251
106270
|
analysisType: source.analysisType,
|
|
@@ -106268,10 +106287,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106268
106287
|
if (analysisId === undefined)
|
|
106269
106288
|
return;
|
|
106270
106289
|
const existingAnalysis = this.sourceAnalysesMap().get(analysisId);
|
|
106271
|
-
if (existingAnalysis) {
|
|
106272
|
-
console.log('Opening cached source analysis:', source);
|
|
106273
|
-
}
|
|
106274
|
-
else {
|
|
106290
|
+
if (!existingAnalysis) {
|
|
106275
106291
|
this.loadingSourceAnalysisId.set(analysisId);
|
|
106276
106292
|
this.sourceAnalysisRequest.emit({
|
|
106277
106293
|
analysisType: source.analysisType,
|
|
@@ -106289,16 +106305,13 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106289
106305
|
}
|
|
106290
106306
|
handleSourceAnalysisClickFromModal(source) {
|
|
106291
106307
|
const analysisId = source.analysisId;
|
|
106292
|
-
console.log('[SourceAnalysis] handleSourceAnalysisClickFromModal called', { analysisId, source });
|
|
106293
106308
|
if (analysisId === undefined)
|
|
106294
106309
|
return;
|
|
106295
106310
|
const existingAnalysis = this.sourceAnalysesMap().get(analysisId);
|
|
106296
|
-
console.log('[SourceAnalysis] Checking for existing analysis', { analysisId, found: !!existingAnalysis, mapKeys: Array.from(this.sourceAnalysesMap().keys()) });
|
|
106297
106311
|
if (existingAnalysis) {
|
|
106298
|
-
this.openSourceGoalModal(existingAnalysis, source.sourceGoalId);
|
|
106312
|
+
this.openSourceGoalModal(existingAnalysis, source.sourceGoalId, source.analysisType);
|
|
106299
106313
|
}
|
|
106300
106314
|
else {
|
|
106301
|
-
console.log('[SourceAnalysis] Setting pendingSourceRequest and emitting sourceAnalysisRequest');
|
|
106302
106315
|
this.loadingSourceAnalysisId.set(analysisId);
|
|
106303
106316
|
this.pendingSourceRequest.set(source);
|
|
106304
106317
|
this.sourceAnalysisRequest.emit({
|
|
@@ -106308,16 +106321,16 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106308
106321
|
});
|
|
106309
106322
|
}
|
|
106310
106323
|
}
|
|
106311
|
-
openSourceGoalModal(analysis, sourceGoalId) {
|
|
106312
|
-
console.log('[SourceAnalysis] openSourceGoalModal called', { analysisId: analysis.id, sourceGoalId });
|
|
106324
|
+
openSourceGoalModal(analysis, sourceGoalId, analysisType) {
|
|
106313
106325
|
const structured = analysis.profileAnalysisStructured;
|
|
106314
106326
|
const sections = structured?.sections || [];
|
|
106315
106327
|
const goals = sections.flatMap(section => section.goals || []);
|
|
106316
|
-
console.log('[SourceAnalysis] Found goals in source analysis:', goals.map(g => ({ id: g.id, title: g.title })));
|
|
106317
106328
|
const goal = goals.find(g => g.id === sourceGoalId);
|
|
106318
|
-
console.log('[SourceAnalysis] Matched goal:', goal ? { id: goal.id, title: goal.title } : 'NOT FOUND');
|
|
106319
106329
|
if (goal) {
|
|
106320
|
-
this.modalService.
|
|
106330
|
+
const currentModalState = this.modalService.getCurrentState();
|
|
106331
|
+
if (analysisType) {
|
|
106332
|
+
this.modalService.openSourceGoalDetailModal(goal, this.viewMode(), analysisType, currentModalState);
|
|
106333
|
+
}
|
|
106321
106334
|
}
|
|
106322
106335
|
else {
|
|
106323
106336
|
console.warn('[SourceAnalysis] Could not find goal with id:', sourceGoalId);
|
|
@@ -106596,25 +106609,24 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106596
106609
|
static { this.ɵfac = function SymphiqProfileAnalysisUnifiedDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqProfileAnalysisUnifiedDashboardComponent)(); }; }
|
|
106597
106610
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqProfileAnalysisUnifiedDashboardComponent, selectors: [["symphiq-profile-analysis-unified-dashboard"]], hostBindings: function SymphiqProfileAnalysisUnifiedDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
106598
106611
|
i0.ɵɵlistener("scroll", function SymphiqProfileAnalysisUnifiedDashboardComponent_scroll_HostBindingHandler() { return ctx.onScroll(); }, i0.ɵɵresolveWindow);
|
|
106599
|
-
} }, inputs: { viewMode: [1, "viewMode"], embedded: [1, "embedded"], isLoading: [1, "isLoading"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], unifiedProfileAnalysis: [1, "unifiedProfileAnalysis"], sourceProfileAnalyses: [1, "sourceProfileAnalyses"], isLoadingSourceAnalysis: [1, "isLoadingSourceAnalysis"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"],
|
|
106612
|
+
} }, inputs: { viewMode: [1, "viewMode"], embedded: [1, "embedded"], isLoading: [1, "isLoading"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], unifiedProfileAnalysis: [1, "unifiedProfileAnalysis"], sourceProfileAnalyses: [1, "sourceProfileAnalyses"], isLoadingSourceAnalysis: [1, "isLoadingSourceAnalysis"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"], requestedByUser: [1, "requestedByUser"] }, outputs: { generateGoalsClick: "generateGoalsClick", stepClick: "stepClick", nextStepClick: "nextStepClick", sourceAnalysisRequest: "sourceAnalysisRequest" }, features: [i0.ɵɵNgOnChangesFeature], decls: 15, vars: 31, consts: [[1, "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"], [3, "viewMode", "progress", "embedded"], [1, "relative", "z-51"], [3, "searchClick", "viewModeClick", "title", "subtitle", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "showSearchControl", "showViewModeControl", "embedded", "scrollEvent"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [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, "isLightMode", "isOpen"], [3, "viewMode", "currentMode", "isOpen"], [3, "viewMode", "itemStatus", "currentStatus", "confettiIntensity", "title"], [3, "priorityActionGoalClick", "priorityActionRecommendationClick", "sourceAnalysisClickRequest", "viewMode", "loadingSourceAnalysisId"], [3, "isLightMode"], [3, "isLightMode", "allInsights", "allMetrics", "allCharts"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], ["title", "Loading Your Unified Analysis", "subtitle", "Please wait while we prepare your synthesized insights...", "size", "large", 3, "viewMode", "backdropBlur"], [1, "mb-12", "block", 3, "viewMode", "businessName", "isOnboarded", "analysisDate", "isUnifiedAnalysisComplete", "sourceAnalysesCount", "unifiedGoalsCount", "sourceGoalsCount"], [1, "mb-12", "block", 3, "goalClick", "sourceBadgeClick", "relatedMetricsClick", "goals", "viewMode"], [3, "unifiedGoalClick", "viewAllPriorityActionsClick", "sections", "viewMode", "unifiedExecutiveSummary", "unifiedTimeline", "unifiedPriorityMatrix", "unifiedNextSteps", "unifiedGoals", "shopCounts", "focusAreaCounts", "metricCounts", "storageKey"], [3, "viewAllPriorityActionsClick", "summary", "viewMode", "shopCounts", "focusAreaCounts", "metricCounts"], [3, "goalClick", "sourceBadgeClick", "relatedMetricsClick", "goals", "viewMode"], [3, "goalClick", "timeline", "viewMode", "goals"], [3, "goalClick", "matrix", "viewMode"], [3, "goalClick", "steps", "viewMode", "goals"], [3, "close", "isLightMode", "isOpen"], [3, "close", "modeSelected", "viewMode", "currentMode", "isOpen"]], template: function SymphiqProfileAnalysisUnifiedDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
106600
106613
|
i0.ɵɵelementStart(0, "div", 0);
|
|
106601
106614
|
i0.ɵɵelement(1, "div", 1)(2, "symphiq-scroll-progress-bar", 2);
|
|
106602
106615
|
i0.ɵɵelementStart(3, "div", 3)(4, "symphiq-dashboard-header", 4);
|
|
106603
106616
|
i0.ɵɵlistener("searchClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_dashboard_header_searchClick_4_listener() { return ctx.openSearch(); })("viewModeClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_dashboard_header_viewModeClick_4_listener() { return ctx.openViewModeSwitcher(); });
|
|
106604
106617
|
i0.ɵɵelementEnd();
|
|
106605
106618
|
i0.ɵɵconditionalCreate(5, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_5_Template, 1, 5, "symphiq-journey-progress-indicator", 5);
|
|
106606
|
-
i0.ɵɵconditionalCreate(6, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Template, 4,
|
|
106619
|
+
i0.ɵɵconditionalCreate(6, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Template, 4, 3, "main", 6);
|
|
106607
106620
|
i0.ɵɵconditionalCreate(7, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_7_Template, 1, 4, "symphiq-floating-toc", 7);
|
|
106608
106621
|
i0.ɵɵelementEnd();
|
|
106609
106622
|
i0.ɵɵconditionalCreate(8, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_8_Template, 1, 2, "symphiq-search-modal", 8);
|
|
106610
106623
|
i0.ɵɵconditionalCreate(9, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_9_Template, 1, 3, "symphiq-view-mode-switcher-modal", 9);
|
|
106611
|
-
i0.ɵɵconditionalCreate(10, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_10_Template, 1,
|
|
106612
|
-
i0.ɵɵ
|
|
106613
|
-
i0.ɵɵ
|
|
106614
|
-
i0.ɵɵ
|
|
106615
|
-
i0.ɵɵlistener("priorityActionGoalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_unified_dashboard_modal_priorityActionGoalClick_13_listener($event) { return ctx.onPriorityActionGoalClick($event); })("priorityActionRecommendationClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_unified_dashboard_modal_priorityActionRecommendationClick_13_listener($event) { return ctx.onPriorityActionRecommendationClick($event); })("sourceAnalysisClickRequest", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_unified_dashboard_modal_sourceAnalysisClickRequest_13_listener($event) { return ctx.handleSourceAnalysisClickFromModal($event); });
|
|
106624
|
+
i0.ɵɵconditionalCreate(10, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_10_Template, 1, 5, "symphiq-content-generation-progress-with-confetti", 10);
|
|
106625
|
+
i0.ɵɵelement(11, "symphiq-tooltip-container");
|
|
106626
|
+
i0.ɵɵelementStart(12, "symphiq-unified-dashboard-modal", 11);
|
|
106627
|
+
i0.ɵɵlistener("priorityActionGoalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_unified_dashboard_modal_priorityActionGoalClick_12_listener($event) { return ctx.onPriorityActionGoalClick($event); })("priorityActionRecommendationClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_unified_dashboard_modal_priorityActionRecommendationClick_12_listener($event) { return ctx.onPriorityActionRecommendationClick($event); })("sourceAnalysisClickRequest", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_unified_dashboard_modal_sourceAnalysisClickRequest_12_listener($event) { return ctx.handleSourceAnalysisClickFromModal($event); });
|
|
106616
106628
|
i0.ɵɵelementEnd();
|
|
106617
|
-
i0.ɵɵelement(
|
|
106629
|
+
i0.ɵɵelement(13, "symphiq-business-analysis-modal", 12)(14, "symphiq-profile-analysis-modal", 13);
|
|
106618
106630
|
i0.ɵɵelementEnd();
|
|
106619
106631
|
} if (rf & 2) {
|
|
106620
106632
|
i0.ɵɵclassProp("min-h-screen", !ctx.embedded());
|
|
@@ -106635,15 +106647,13 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106635
106647
|
i0.ɵɵadvance();
|
|
106636
106648
|
i0.ɵɵconditional(ctx.isViewModeSwitcherOpen() ? 9 : -1);
|
|
106637
106649
|
i0.ɵɵadvance();
|
|
106638
|
-
i0.ɵɵconditional(ctx.
|
|
106639
|
-
i0.ɵɵadvance();
|
|
106640
|
-
i0.ɵɵconditional(!ctx.isLoading() && ctx.isGenerating() ? 11 : -1);
|
|
106650
|
+
i0.ɵɵconditional(!ctx.isLoading() && ctx.isGenerating() ? 10 : -1);
|
|
106641
106651
|
i0.ɵɵadvance(2);
|
|
106642
106652
|
i0.ɵɵproperty("viewMode", ctx.viewMode())("loadingSourceAnalysisId", ctx.loadingSourceAnalysisId());
|
|
106643
106653
|
i0.ɵɵadvance();
|
|
106644
106654
|
i0.ɵɵproperty("isLightMode", ctx.isLightMode());
|
|
106645
106655
|
i0.ɵɵadvance();
|
|
106646
|
-
i0.ɵɵproperty("isLightMode", ctx.isLightMode())("allInsights", i0.ɵɵpureFunction0(
|
|
106656
|
+
i0.ɵɵproperty("isLightMode", ctx.isLightMode())("allInsights", i0.ɵɵpureFunction0(30, _c0$7))("allMetrics", ctx.allMetrics())("allCharts", ctx.allCharts());
|
|
106647
106657
|
} }, dependencies: [CommonModule,
|
|
106648
106658
|
DashboardHeaderComponent,
|
|
106649
106659
|
ScrollProgressBarComponent,
|
|
@@ -106653,7 +106663,6 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106653
106663
|
FloatingTocComponent,
|
|
106654
106664
|
ContentGenerationProgressWithConfettiComponent,
|
|
106655
106665
|
LoadingCardComponent,
|
|
106656
|
-
MarkAsReviewedFooterComponent,
|
|
106657
106666
|
ProfileAnalysisModalComponent,
|
|
106658
106667
|
UnifiedGoalsGridComponent,
|
|
106659
106668
|
UnifiedExecutiveSummaryComponent,
|
|
@@ -106681,7 +106690,6 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106681
106690
|
FloatingTocComponent,
|
|
106682
106691
|
ContentGenerationProgressWithConfettiComponent,
|
|
106683
106692
|
LoadingCardComponent,
|
|
106684
|
-
MarkAsReviewedFooterComponent,
|
|
106685
106693
|
ProfileAnalysisModalComponent,
|
|
106686
106694
|
UnifiedGoalsGridComponent,
|
|
106687
106695
|
UnifiedExecutiveSummaryComponent,
|
|
@@ -106735,8 +106743,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106735
106743
|
}
|
|
106736
106744
|
|
|
106737
106745
|
@if (shouldShowMain()) {
|
|
106738
|
-
<main class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 space-y-12"
|
|
106739
|
-
[class.pb-32]="shouldShowReviewFooter()">
|
|
106746
|
+
<main class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 space-y-12">
|
|
106740
106747
|
|
|
106741
106748
|
@if (isSimplifiedView() && isLoading()) {
|
|
106742
106749
|
<symphiq-loading-card
|
|
@@ -106877,16 +106884,6 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106877
106884
|
/>
|
|
106878
106885
|
}
|
|
106879
106886
|
|
|
106880
|
-
<!-- Mark as Reviewed Footer -->
|
|
106881
|
-
@if (shouldShowReviewFooter()) {
|
|
106882
|
-
<symphiq-mark-as-reviewed-footer
|
|
106883
|
-
[viewMode]="viewMode()"
|
|
106884
|
-
[selfContentStatus]="selfContentStatus()"
|
|
106885
|
-
[isLoading]="isMarkingAsReviewed()"
|
|
106886
|
-
(markAsReviewed)="handleMarkAsReviewedClick()"
|
|
106887
|
-
/>
|
|
106888
|
-
}
|
|
106889
|
-
|
|
106890
106887
|
<!-- Content Generation Progress Component -->
|
|
106891
106888
|
@if (!isLoading() && isGenerating()) {
|
|
106892
106889
|
<symphiq-content-generation-progress-with-confetti
|
|
@@ -106917,11 +106914,11 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106917
106914
|
</div>
|
|
106918
106915
|
`
|
|
106919
106916
|
}]
|
|
106920
|
-
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], embedded: [{ type: i0.Input, args: [{ isSignal: true, alias: "embedded", required: false }] }], isLoading: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoading", required: false }] }], profile: [{ type: i0.Input, args: [{ isSignal: true, alias: "profile", required: false }] }], funnelAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "funnelAnalysis", required: false }] }], unifiedProfileAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "unifiedProfileAnalysis", required: false }] }], sourceProfileAnalyses: [{ type: i0.Input, args: [{ isSignal: true, alias: "sourceProfileAnalyses", required: false }] }], isLoadingSourceAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoadingSourceAnalysis", required: false }] }], scrollEvent: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollEvent", required: false }] }], scrollElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollElement", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }], forDemo: [{ type: i0.Input, args: [{ isSignal: true, alias: "forDemo", required: false }] }], maxAccessibleStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxAccessibleStepId", required: false }] }], itemStatus: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemStatus", required: false }] }],
|
|
106917
|
+
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], embedded: [{ type: i0.Input, args: [{ isSignal: true, alias: "embedded", required: false }] }], isLoading: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoading", required: false }] }], profile: [{ type: i0.Input, args: [{ isSignal: true, alias: "profile", required: false }] }], funnelAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "funnelAnalysis", required: false }] }], unifiedProfileAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "unifiedProfileAnalysis", required: false }] }], sourceProfileAnalyses: [{ type: i0.Input, args: [{ isSignal: true, alias: "sourceProfileAnalyses", required: false }] }], isLoadingSourceAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoadingSourceAnalysis", required: false }] }], scrollEvent: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollEvent", required: false }] }], scrollElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollElement", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }], forDemo: [{ type: i0.Input, args: [{ isSignal: true, alias: "forDemo", required: false }] }], maxAccessibleStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxAccessibleStepId", required: false }] }], itemStatus: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemStatus", required: false }] }], requestedByUser: [{ type: i0.Input, args: [{ isSignal: true, alias: "requestedByUser", required: false }] }], generateGoalsClick: [{ type: i0.Output, args: ["generateGoalsClick"] }], stepClick: [{ type: i0.Output, args: ["stepClick"] }], nextStepClick: [{ type: i0.Output, args: ["nextStepClick"] }], sourceAnalysisRequest: [{ type: i0.Output, args: ["sourceAnalysisRequest"] }], onScroll: [{
|
|
106921
106918
|
type: HostListener,
|
|
106922
106919
|
args: ['window:scroll']
|
|
106923
106920
|
}] }); })();
|
|
106924
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisUnifiedDashboardComponent, { className: "SymphiqProfileAnalysisUnifiedDashboardComponent", filePath: "lib/components/profile-analysis-unified-dashboard/symphiq-profile-analysis-unified-dashboard.component.ts", lineNumber:
|
|
106921
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisUnifiedDashboardComponent, { className: "SymphiqProfileAnalysisUnifiedDashboardComponent", filePath: "lib/components/profile-analysis-unified-dashboard/symphiq-profile-analysis-unified-dashboard.component.ts", lineNumber: 325 }); })();
|
|
106925
106922
|
|
|
106926
106923
|
function SymphiqProfileMetricsAnalysesDashboardComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
106927
106924
|
const _r1 = i0.ɵɵgetCurrentView();
|