Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a016d48

Browse files
committedApr 19, 2024·
feat(transloco): allow to provide multiple scopes via provideTranslocoScopes
1 parent 3be3f48 commit a016d48

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed
 

‎apps/transloco-playground/src/app/lazy-multiple-scopes/lazy-multiple-scopes.component.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ import { TranslocoModule, provideTranslocoScope } from '@jsverse/transloco';
77
templateUrl: './lazy-multiple-scopes.component.html',
88
styleUrls: ['./lazy-multiple-scopes.component.scss'],
99
providers: [
10-
provideTranslocoScope({ scope: 'admin-page', alias: 'AdminPageAlias' }),
11-
provideTranslocoScope({ scope: 'lazy-page', alias: 'LazyPageAlias' }),
10+
provideTranslocoScope({ scope: 'admin-page', alias: 'AdminPageAlias' }, { scope: 'lazy-page', alias: 'LazyPageAlias' }),
1211
],
1312
standalone: true,
1413
imports: [TranslocoModule],

‎docs/docs/lazy-load/scope-configuration.mdx

+15
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,21 @@ export const TODO_ROUTES: Route = {
4545

4646
```
4747

48+
We also can provide several scopes at once:
49+
50+
```ts title="core.module.ts"
51+
import { Route } from '@angular/router';
52+
import {provideTranslocoScope} from "./transloco.providers";
53+
54+
export const TODO_ROUTES: Route = {
55+
path: '',
56+
loadComponent: () => import('./todos.component').then((TodosComponent) => TodosComponent),
57+
providers: [
58+
provideTranslocoScope('todos', { scope: 'shared', alias: 'sharedAlias' }),
59+
],
60+
};
61+
```
62+
4863
</TabItem>
4964

5065
<TabItem value="NgModule">

‎libs/transloco/src/lib/transloco.providers.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ export function provideTranslocoLoader(loader: Type<TranslocoLoader>) {
7676
]);
7777
}
7878

79-
export function provideTranslocoScope(scope: TranslocoScope) {
80-
return {
79+
export function provideTranslocoScope(...scopes: TranslocoScope[]) {
80+
return scopes.map((scope) => ({
8181
provide: TRANSLOCO_SCOPE,
8282
useValue: scope,
8383
multi: true,
84-
};
84+
}));
8585
}
8686

8787
export function provideTranslocoLoadingTpl(content: Content) {

0 commit comments

Comments
 (0)
Please sign in to comment.