fix(router): parent resolve should complete before merging resolved data

Closes #12032
This commit is contained in:
vsavkin
2016-10-05 14:43:26 -07:00
committed by Tobias Bosch
parent 71b7654660
commit 1681e4f57f
2 changed files with 19 additions and 1 deletions

View File

@ -13,6 +13,7 @@ import {Subject} from 'rxjs/Subject';
import {Subscription} from 'rxjs/Subscription';
import {from} from 'rxjs/observable/from';
import {of } from 'rxjs/observable/of';
import {concatMap} from 'rxjs/operator/concatMap';
import {every} from 'rxjs/operator/every';
import {map} from 'rxjs/operator/map';
import {mergeAll} from 'rxjs/operator/mergeAll';
@ -692,7 +693,7 @@ export class PreActivation {
resolveData(): Observable<any> {
if (this.checks.length === 0) return of (null);
const checks$ = from(this.checks);
const runningChecks$ = mergeMap.call(checks$, (s: any) => {
const runningChecks$ = concatMap.call(checks$, (s: any) => {
if (s instanceof CanActivate) {
return this.runResolve(s.route);
} else {