mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-13 14:23:02 -05:00
feat: challenge 54 pipe obs signal (#903)
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { inject, Pipe, PipeTransform } from '@angular/core';
|
||||
import { map, Observable } from 'rxjs';
|
||||
import { CurrencyService } from './currency.service';
|
||||
|
||||
@Pipe({
|
||||
name: 'currency',
|
||||
standalone: true,
|
||||
})
|
||||
export class CurrencyPipe implements PipeTransform {
|
||||
currencyService = inject(CurrencyService);
|
||||
|
||||
transform(price: number): Observable<string> {
|
||||
return this.currencyService.symbol$.pipe(map((s) => `${price}${s}`));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user