@eric-emg/symphiq-components 1.2.312 → 1.2.314

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.
@@ -54308,13 +54308,24 @@ class SymphiqConnectGaDashboardComponent {
54308
54308
  }
54309
54309
  }
54310
54310
  }, ...(ngDevMode ? [{ debugName: "embeddedScrollEffect" }] : []));
54311
+ this.previousPropertiesRef = undefined;
54311
54312
  this.propertiesReceivedEffect = effect(() => {
54312
54313
  const properties = this.gaProperties();
54313
- const currentLength = properties?.length ?? 0;
54314
- if (this.internalConnecting() && currentLength > 0) {
54314
+ const accounts = this.gaAccounts();
54315
+ console.log('[ConnectGA] propertiesReceivedEffect triggered');
54316
+ console.log('[ConnectGA] properties:', properties?.length ?? 0, 'accounts:', accounts?.length ?? 0);
54317
+ console.log('[ConnectGA] internalConnecting:', this.internalConnecting());
54318
+ console.log('[ConnectGA] isReconnecting:', this.isReconnecting());
54319
+ console.log('[ConnectGA] properties === previousRef:', properties === this.previousPropertiesRef);
54320
+ console.log('[ConnectGA] isConnecting():', this.isConnecting());
54321
+ console.log('[ConnectGA] isConnectState():', this.isConnectState());
54322
+ console.log('[ConnectGA] isSelectionState():', this.isSelectionState());
54323
+ if (this.internalConnecting() && properties && properties.length > 0 && properties !== this.previousPropertiesRef) {
54324
+ console.log('[ConnectGA] Resetting internalConnecting and isReconnecting to false');
54315
54325
  this.internalConnecting.set(false);
54316
54326
  this.isReconnecting.set(false);
54317
54327
  }
54328
+ this.previousPropertiesRef = properties;
54318
54329
  }, ...(ngDevMode ? [{ debugName: "propertiesReceivedEffect", allowSignalWrites: true }] : [{ allowSignalWrites: true }]));
54319
54330
  this.scrollProgress = computed(() => this.headerScrollService.scrollProgress(), ...(ngDevMode ? [{ debugName: "scrollProgress" }] : []));
54320
54331
  this.isLightMode = computed(() => this.viewMode() === ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "isLightMode" }] : []));