/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/router/upgrade/src/upgrade.ts
156 строк
5 KB
Kristiyan Kostadinov
refactor(core): remove unnecessary deps arrays (#63823)
16 сен 2025, 19:51
16 сен 2025, 19:51
8f59295
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC 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.dev/license */ import {Location} from '@angular/common'; import {APP_BOOTSTRAP_LISTENER, ComponentRef, inject} from '@angular/core'; import {Router, ɵRestoredState as RestoredState} from '../../index'; import {UpgradeModule} from '@angular/upgrade/static'; /** * Creates an initializer that sets up `ngRoute` integration * along with setting up the Angular router. * * @usageNotes * * For standalone applications: * ```ts * export const appConfig: ApplicationConfig = { * providers: [RouterUpgradeInitializer], * }; * ``` * * For NgModule based applications: * ```ts * @NgModule({ * imports: [ * RouterModule.forRoot(SOME_ROUTES), * UpgradeModule * ], * providers: [ * RouterUpgradeInitializer * ] * }) * export class AppModule { * ngDoBootstrap() {} * } * ``` * * @publicApi */ export const RouterUpgradeInitializer = { provide: APP_BOOTSTRAP_LISTENER, multi: true, useFactory: locationSyncBootstrapListener as () => () => void, }; /** * @internal */ export function locationSyncBootstrapListener() { const ngUpgrade = inject(UpgradeModule); return () => { setUpLocationSync(ngUpgrade); }; } /** * Sets up a location change listener to trigger `history.pushState`. * Works around the problem that `onPopState` does not trigger `history.pushState`. * Must be called *after* calling `UpgradeModule.bootstrap`. * * @param ngUpgrade The upgrade NgModule. * @param urlType The location strategy. * @see {@link /api/common/HashLocationStrategy HashLocationStrategy} * @see {@link /api/common/PathLocationStrategy PathLocationStrategy} * * @publicApi */ export function setUpLocationSync( ngUpgrade: UpgradeModule, urlType: 'path' | 'hash' = 'path', ): void { if (!ngUpgrade.$injector) { throw new Error(` RouterUpgradeInitializer can be used only after UpgradeModule.bootstrap has been called. Remove RouterUpgradeInitializer and call setUpLocationSync after UpgradeModule.bootstrap. `); } const router: Router = ngUpgrade.injector.get(Router); const location: Location = ngUpgrade.injector.get(Location); ngUpgrade.$injector .get('$rootScope') .$on( '$locationChangeStart', ( event: any, newUrl: string, oldUrl: string, newState?: {[k: string]: unknown} | RestoredState, oldState?: {[k: string]: unknown} | RestoredState, ) => { // Navigations coming from Angular router have a navigationId state // property. Don't trigger Angular router navigation again if it is // caused by a URL change from the current Angular router // navigation. const currentNavigationId = router.getCurrentNavigation()?.id; const newStateNavigationId = newState?.navigationId; if (newStateNavigationId !== undefined && newStateNavigationId === currentNavigationId) { return; } let url; if (urlType === 'path') { url = resolveUrl(newUrl); } else if (urlType === 'hash') { // Remove the first hash from the URL const hashIdx = newUrl.indexOf('#'); url = resolveUrl(newUrl.substring(0, hashIdx) + newUrl.substring(hashIdx + 1)); } else { throw 'Invalid URLType passed to setUpLocationSync: ' + urlType; } const path = location.normalize(url.pathname); router.navigateByUrl(path + url.search + url.hash); }, ); } /** * Normalizes and parses a URL. * * - Normalizing means that a relative URL will be resolved into an absolute URL in the context of * the application document. * - Parsing means that the anchor's `protocol`, `hostname`, `port`, `pathname` and related * properties are all populated to reflect the normalized URL. * * While this approach has wide compatibility, it doesn't work as expected on IE. On IE, normalizing * happens similar to other browsers, but the parsed components will not be set. (E.g. if you assign * `a.href = 'foo'`, then `a.protocol`, `a.host`, etc. will not be correctly updated.) * We work around that by performing the parsing in a 2nd step by taking a previously normalized URL * and assigning it again. This correctly populates all properties. * * See * https://github.com/angular/angular.js/blob/2c7400e7d07b0f6cec1817dab40b9250ce8ebce6/src/ng/urlUtils.js#L26-L33 * for more info. */ let anchor: HTMLAnchorElement | undefined; function resolveUrl(url: string): {pathname: string; search: string; hash: string} { anchor ??= document.createElement('a'); anchor.setAttribute('href', url); anchor.setAttribute('href', anchor.href); return { // IE does not start `pathname` with `/` like other browsers. pathname: `/${anchor.pathname.replace(/^\//, '')}`, search: anchor.search, hash: anchor.hash, }; }