Skip to content

Commit 1c4d7b0

Browse files
authored
Merge pull request #1 from bameyrick/default-value
Add ability to provide default value
2 parents 7583bce + ad7f061 commit 1c4d7b0

File tree

5 files changed

+66
-9
lines changed

5 files changed

+66
-9
lines changed

packages/ng-lazy-translate/README.md

+28
Original file line numberDiff line numberDiff line change
@@ -214,3 +214,31 @@ The translation service uses [messageformat](https://messageformat.github.io/) t
214214
```typescript
215215
this.translateService.translate('common.greetings.hello_world', { name: 'John', time: '10:00' });
216216
```
217+
218+
## Default value
219+
220+
If you want to provide a default value for when a translation is not found in any language, you can do so by passing it as the last parameter to the translate pipe or function:
221+
222+
- Template:
223+
224+
```html
225+
{{ 'common.greetings.hello_world' | translate: { name: 'John', time: '10:00' }: 'Hello, this is my default string' }}
226+
```
227+
228+
or without values:
229+
230+
```html
231+
{{ 'common.greetings.hello_world' | translate: 'Hello, this is my default string' }}
232+
```
233+
234+
- Component/Service:
235+
236+
```typescript
237+
this.translateService.translate('common.greetings.hello_world', { name: 'John', time: '10:00' }, 'Hello, this is my default string');
238+
```
239+
240+
or without values:
241+
242+
```typescript
243+
this.translateService.translate('common.greetings.hello_world', undefined, 'Hello, this is my default string');
244+
```

packages/ng-lazy-translate/src/lib/pipe/translate.pipe.spec.ts

+14-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,20 @@ describe(`LazyTranslatePipe`, () => {
4848
expect(paramsSpy).toHaveBeenCalledWith({ key: 'test', interpolateParams: { test: 'test' } });
4949
});
5050

51-
it(`should throw a syntax error if the interpolateParams are not valid`, () => {
52-
expect(() => pipe.transform('test', `{ test: 'test'`)).toThrowError(SyntaxError);
51+
it(`should pass the defaultValue when interpolateParams are provided`, () => {
52+
const paramsSpy = jest.spyOn((pipe as any).params$, 'next');
53+
54+
pipe.transform('no-value-test', `{ test: 'test' }`, 'default');
55+
56+
expect(paramsSpy).toHaveBeenCalledWith({ key: 'no-value-test', interpolateParams: { test: 'test' }, defaultValue: 'default' });
57+
});
58+
59+
it(`should pass the defaultValue when interpolateParams are not provided`, () => {
60+
const paramsSpy = jest.spyOn((pipe as any).params$, 'next');
61+
62+
pipe.transform('no-value-test', 'default');
63+
64+
expect(paramsSpy).toHaveBeenCalledWith({ key: 'no-value-test', defaultValue: 'default' });
5365
});
5466
});
5567
});

packages/ng-lazy-translate/src/lib/pipe/translate.pipe.ts

+12-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class LazyTranslatePipe implements PipeTransform, OnDestroy {
1818
/**
1919
* An observable of the params provided from the transform
2020
*/
21-
private readonly params$ = new Subject<{ key?: string | null; interpolateParams?: Dictionary<unknown> }>();
21+
private readonly params$ = new Subject<{ key?: string | null; interpolateParams?: Dictionary<unknown>; defaultValue?: string }>();
2222

2323
/**
2424
* Handle the params being updated
@@ -45,25 +45,32 @@ export class LazyTranslatePipe implements PipeTransform, OnDestroy {
4545

4646
public transform(key?: string | null, ...args: Array<Dictionary<unknown> | string>): string | undefined {
4747
let interpolateParams: Dictionary<unknown> | undefined;
48+
let defaultValue: string | undefined;
49+
50+
if (args.length > 1) {
51+
defaultValue = args[1] as string;
52+
}
4853

4954
if (!isNullOrUndefined(args[0])) {
50-
if (isString(args[0])) {
55+
const params = args[0];
56+
57+
if (isString(params)) {
5158
/** We accept objects written in the template such as {n:1}, {'n':1}, {n:'v'} which is why we might need to change it to real JSON
5259
* objects such as {"n":1} or {"n":"v"}
5360
*/
54-
const validArgs: string = args[0].replace(/(')?([a-zA-Z0-9_]+)(')?(\s)?:/g, '"$2":').replace(/:(\s)?(')(.*?)(')/g, ':"$3"');
61+
const validArgs: string = params.replace(/(')?([a-zA-Z0-9_]+)(')?(\s)?:/g, '"$2":').replace(/:(\s)?(')(.*?)(')/g, ':"$3"');
5562

5663
try {
5764
interpolateParams = JSON.parse(validArgs);
5865
} catch (error) {
59-
throw new SyntaxError(`Incorrect parameter in TranslatePipe. Expected a valid Object, received: ${args[0]}`);
66+
defaultValue = params;
6067
}
6168
} else if (isObject(args[0]) && !Array.isArray(args[0])) {
6269
interpolateParams = args[0] as Dictionary<unknown>;
6370
}
6471
}
6572

66-
this.params$.next({ key, interpolateParams });
73+
this.params$.next({ key, interpolateParams, defaultValue });
6774

6875
return this.value;
6976
}

packages/ng-lazy-translate/src/lib/translate.service.spec.ts

+10
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,16 @@ describe(`LazyTranslateService`, () => {
133133
expect(await result).toBe('common.test');
134134
});
135135

136+
it(`should return the default value if no translation is found and a default value is provided`, async () => {
137+
const result = firstValueFrom(service.translate('common.no-value', undefined, 'default'));
138+
139+
await delay();
140+
141+
httpMock.expectOne(TEST_ASSET_PATHS[`en.common`]).flush({});
142+
143+
expect(await result).toBe('default');
144+
});
145+
136146
it(`the value should update when the language changes`, async () => {
137147
let result = '';
138148

packages/ng-lazy-translate/src/lib/translate.service.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ export class LazyTranslateService {
7575
this.language$.next(this.getValidLanguageCode(language));
7676
}
7777

78-
public translate(key?: string | null, params?: Record<string, unknown>): Observable<string> {
78+
public translate(key?: string | null, params?: Record<string, unknown>, defaultValue?: string): Observable<string> {
7979
return combineLatest([this.language$, this.defaultLanguage$]).pipe(
8080
distinctUntilChanged((previous, next) => isEqual(previous, next)),
8181
concatMap(() => (isString(key) ? of(key) : NEVER)),
8282
mergeMap(k => from(this.getKey(k))),
83-
map(result => (isNullOrUndefined(result) ? key || '' : result(this.flattenParams(params))))
83+
map(result => (isNullOrUndefined(result) ? defaultValue || key || '' : result(this.flattenParams(params))))
8484
);
8585
}
8686

0 commit comments

Comments
 (0)