@dereekb/dbx-firebase 9.19.2 → 9.19.3
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.
|
@@ -11,7 +11,7 @@ import * as i2$1 from '@angular/material/icon';
|
|
|
11
11
|
import { MatIconModule } from '@angular/material/icon';
|
|
12
12
|
import * as i2 from '@angular/common';
|
|
13
13
|
import { CommonModule } from '@angular/common';
|
|
14
|
-
import { asObservable, timeoutStartWith, filterMaybe, isNot, SubscriptionObject, lazyFrom,
|
|
14
|
+
import { asObservable, timeoutStartWith, filterMaybe, isNot, SubscriptionObject, lazyFrom, switchMapWhileTrue, loadingStateFromObs, tapLog, cleanupDestroyable, accumulatorFlattenPageListLoadingState, useFirst, pageLoadingStateFromObs, useAsObservable, successResult, beginLoading, errorResult, cleanup, mapLoadingState } from '@dereekb/rxjs';
|
|
15
15
|
import * as i2$2 from '@dereekb/dbx-core';
|
|
16
16
|
import { loggedInObsFromIsLoggedIn, loggedOutObsFromIsLoggedIn, authUserIdentifier, DbxInjectionContext, AbstractForwardDbxInjectionContextDirective, DBX_INJECTION_COMPONENT_DATA, DbxInjectionComponentModule, DbxAuthService, AbstractIfDirective, AbstractSubscriptionDirective, DbxRouteParamReaderInstance, DbxRouteParamDefaultRedirectInstance, LockSetComponentStore } from '@dereekb/dbx-core';
|
|
17
17
|
import * as i1$1 from '@angular/fire/auth';
|
|
@@ -1552,7 +1552,8 @@ class DbxFirebaseDevelopmentSchedulerService {
|
|
|
1552
1552
|
}
|
|
1553
1553
|
init() {
|
|
1554
1554
|
this._sub.subscription = this.running$
|
|
1555
|
-
.pipe(
|
|
1555
|
+
.pipe(switchMapWhileTrue(() => {
|
|
1556
|
+
console.log('DbxFirebaseDevelopmentSchedulerService enabled.');
|
|
1556
1557
|
return combineLatest([this._timerInterval, this.schedulerList$]).pipe(switchMap(([timerInterval, schedulerList]) => {
|
|
1557
1558
|
const executionOrder = schedulerList.map((x) => x.name);
|
|
1558
1559
|
return interval(timerInterval).pipe(exhaustMap(() => {
|