refactor(router): create pipeable afterPreactivation function (#25740)
PR Close #25740
This commit is contained in:

committed by
Alex Rickabaugh

parent
5b3c08b237
commit
4c0d4fc649
29
packages/router/src/operators/after_preactivation.ts
Normal file
29
packages/router/src/operators/after_preactivation.ts
Normal file
@ -0,0 +1,29 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright Google Inc. All Rights Reserved.
|
||||
*
|
||||
* Use of this source code is governed by an MIT-style license that can be
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
import {MonoTypeOperatorFunction} from 'rxjs';
|
||||
import {map, mergeMap} from 'rxjs/operators';
|
||||
|
||||
import {RouterHook} from '../router';
|
||||
import {RouterStateSnapshot} from '../router_state';
|
||||
import {UrlTree} from '../url_tree';
|
||||
|
||||
export function afterPreactivation(
|
||||
hook: RouterHook, navigationId: number, appliedUrlTree: UrlTree, rawUrlTree: UrlTree,
|
||||
skipLocationChange: boolean, replaceUrl: boolean):
|
||||
MonoTypeOperatorFunction<{appliedUrl: UrlTree, snapshot: RouterStateSnapshot}> {
|
||||
return function(source) {
|
||||
return source.pipe(mergeMap(
|
||||
p => hook(
|
||||
p.snapshot,
|
||||
{
|
||||
navigationId, appliedUrlTree, rawUrlTree, skipLocationChange, replaceUrl,
|
||||
})
|
||||
.pipe(map(() => p))));
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user