refactor(app.component): simplify observable stream creation
All checks were successful
Build / Build and analyze (push) Successful in 1m41s
All checks were successful
Build / Build and analyze (push) Successful in 1m41s
This commit is contained in:
parent
d1cc5b076d
commit
382e5263bf
@ -5,7 +5,7 @@ import { UpperCasePipe } from '@angular/common';
|
|||||||
import { TextPipe } from '../text.pipe';
|
import { TextPipe } from '../text.pipe';
|
||||||
import { HotelService } from './Parent/services/hotel.service';
|
import { HotelService } from './Parent/services/hotel.service';
|
||||||
import { inject } from '@angular/core';
|
import { inject } from '@angular/core';
|
||||||
import { filter, map, Observable } from 'rxjs';
|
import { filter, map, Observable, range } from 'rxjs';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-root',
|
selector: 'app-root',
|
||||||
@ -20,27 +20,20 @@ export class AppComponent {
|
|||||||
public hotelService: HotelService = inject(HotelService);
|
public hotelService: HotelService = inject(HotelService);
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
const stream: Observable<number> = new Observable((observer) => {
|
const stream: Observable<number> = range(1, 10);
|
||||||
observer.next(1);
|
|
||||||
observer.next(2);
|
|
||||||
observer.next(3);
|
|
||||||
observer.next(4);
|
|
||||||
observer.next(5);
|
|
||||||
observer.next(6);
|
|
||||||
observer.next(7);
|
|
||||||
observer.next(8);
|
|
||||||
observer.next(9);
|
|
||||||
observer.next(10);
|
|
||||||
observer.complete();
|
|
||||||
});
|
|
||||||
|
|
||||||
stream.pipe(
|
stream.pipe(
|
||||||
filter((value:number) => value % 2 === 1),
|
filter((value: number) => value % 2 === 1),
|
||||||
map((value:number) => value * 2)
|
).subscribe((value) => console.log(value));
|
||||||
|
console.log('---')
|
||||||
|
|
||||||
|
stream.pipe(
|
||||||
|
map((value: number) => value * 2)
|
||||||
).subscribe((value) => console.log(value));
|
).subscribe((value) => console.log(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
public test() {
|
public test() {
|
||||||
|
8
|
||||||
console.log(this.search);
|
console.log(this.search);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user