Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | 101x 101x 101x 101x 101x 101x 13x 3x 3x 3x 2x 3x 9x 6x 3x | import { APP_BASE_HREF } from '@angular/common';
import { Inject, Injectable } from '@angular/core';
import { Store, select } from '@ngrx/store';
import { Observable } from 'rxjs';
import { map, take } from 'rxjs/operators';
import { getMultiSiteLocaleMap } from 'ish-core/store/core/configuration';
export type MultiSiteLocaleMap = Record<string, unknown> | undefined;
@Injectable({ providedIn: 'root' })
export class MultiSiteService {
constructor(private store: Store, @Inject(APP_BASE_HREF) private baseHref: string) {}
/**
* returns the current url, modified to fit the locale parameter if the environment parameter "multiSiteLocaleMap" is set
*
* @param locale the locale which the new url should fit
* @param url the current url
* @param baseHref the current baseHref which needs to be replaced
* @returns the modified url
*/
getLangUpdatedUrl(locale: string, url: string): Observable<string> {
return this.store.pipe(
select(getMultiSiteLocaleMap),
take(1),
map(multiSiteLocaleMap => {
let newUrl = url;
/**
* only replace lang parameter if:
* - multiSiteLocaleMap environment var is declared (set to undefined to skip this behavior)
* - current baseHref is part of the map (so the empty "/" baseHref would not be replaced)
* - multiSiteLocaleMap contains target locale
*/
if (
multiSiteLocaleMap &&
Object.values(multiSiteLocaleMap).includes(this.baseHref) &&
localeMapHasLangString(locale, multiSiteLocaleMap)
) {
newUrl = newUrl.replace(this.baseHref, multiSiteLocaleMap[locale]);
}
return newUrl;
})
);
}
appendUrlParams(url: string, urlParams: Record<string, string>, queryParams: string | undefined): string {
return `${url}${
urlParams
? Object.keys(urlParams)
.map(k => `;${k}=${urlParams[k]}`)
.join('')
: ''
}${queryParams ? `?${queryParams}` : ''}`;
}
}
function localeMapHasLangString(
lang: string,
multiSiteLocaleMap: MultiSiteLocaleMap
): multiSiteLocaleMap is Record<string, string> {
return lang && multiSiteLocaleMap[lang] && typeof multiSiteLocaleMap[lang] === 'string';
}
|