rxjs-pipe-ext
TypeScript icon, indicating that this package has built-in type declarations

3.0.0 • Public • Published

RxJS Pipe Extensions

npm Node.js CI

Install

$ npm install --save rxjs rxjs-pipe-ext

Usage

The available operators so far are the following:

flatMap

An alias of RxJS's mergeMap. Just to get rid of the deprecation warning.

zipMap

Useful when one wants to transform a value, but also keep the original value to access later:

import { of } from 'rxjs';
import { zipMap } from 'rxjs-pipe-ext';
 
of(1, 2, 3)
  .pipe(zipMap(x => `${x}`))
  .subscribe(([x, s]) => console.log(x, s));

Instead of the following code or similar solutions to store the original value of the observable:

import { of } from 'rxjs';
import { map, tap } from 'rxjs/operators';
 
let nummericalVal: number;
 
of(1, 2, 3)
  .pipe(tap(x => nummericalVal = x))
  .pipe(map(x => `${x}`))
  .subscribe(s => console.log(nummericalVal, s));

flatZipMap

Similar to flatMap, it is used when the transformation returns an observable.

import { of } from 'rxjs';
import { flatZipMap } from 'rxjs-pipe-ext';
 
of(1, 2, 3)
  .pipe(flatZipMap(x => of(`${x}`)))
  .subscribe(([x, s]) => console.log(x, s));

projectToFormer

Projects an observable of pairs, i.e. Observable<[T1, T2]>, to the first coordinate, so to get an Observable<T1>.

import { of } from 'rxjs';
import { projectToFormer } from 'rxjs-pipe-ext';
 
of<[number, string]>([1, '1'], [2, '2'])
  .pipe(projectToFormer())
  .subscribe((n: number) => console.log(n));

projectToLatter

Projects an observable of pairs, i.e. Observable<[T1, T2]>, to the second coordinate, so to get an Observable<T2>.

import { of } from 'rxjs';
import { projectToLatter } from 'rxjs-pipe-ext';
 
of<[number, string]>([1, '1'], [2, '2'])
  .pipe(projectToLatter())
  .subscribe((s: string) => console.log(s));

projectTo

Projects an observable of tuples, i.e. Observable<T[]>, to a custom coordinate, so to get an Observable<T>.

import { of } from 'rxjs';
import { projectTo } from 'rxjs-pipe-ext';
 
of([1, 2, 3], [4, 5, 6])
  .pipe(projectTo(1)) // of(2, 5)
  .subscribe(console.log);

mapFormer

Transforms the first coordinate of an observable of pairs.

import { of } from 'rxjs';
import { mapFormer } from 'rxjs-pipe-ext';
 
of<[number, string]>([1, '1'], [2, '2'])
  .pipe(mapFormer(x => x * 2)) // [2, '1'], [4, '2']
  .subscribe(console.log);

mapLatter

Transforms the second coordinate of an observable of pairs.

import { of } from 'rxjs';
import { mapLatter } from 'rxjs-pipe-ext';
 
of<[number, string]>([1, '1'], [2, '2'])
  .pipe(mapLatter(y => `${y}+${y}`)) // [1, '1+1'], [2, '2+2']
  .subscribe(console.log);

flatMapFormer

Similar to mapFormer, but works on stream-returning transformations:

import { of } from 'rxjs';
import { flatMapFormer } from 'rxjs-pipe-ext';
 
of<[number, string]>([1, '1'], [2, '2'])
  .pipe(flatMapFormer(x => of(x * 2))) // [2, '1'], [4, '2']
  .subscribe(console.log);

flatMapLatter

Similar to mapLatter, but works on stream-returning transformations:

import { of } from 'rxjs';
import { flatMapLatter } from 'rxjs-pipe-ext';
 
of<[number, string]>([1, '1'], [2, '2'])
  .pipe(flatMapLatter(y => of(`${y}+${y}`))) // [1, '1+1'], [2, '2+2']
  .subscribe(console.log);

listMap

Transforming an observable of list, with a mapping on the list elements:

import { of } from 'rxjs';
import { listMap } from 'rxjs-pipe-ext';
 
of([1, 2, 3])
  .pipe(listMap(x => x * 2))
  .subscribe(console.log); // [2, 4, 6]

flatListMap

Transforming an observable of list, with a stream-returning member transformation:

import { of } from 'rxjs';
import { flatListMap } from 'rxjs-pipe-ext';
 
of([1, 2, 3])
  .pipe(flatListMap(x => of(x * 2)))
  .subscribe(console.log); // [2, 4, 6]

listFlatMap

Transforming an observable of list, with a list-returning member transformation:

import { of } from 'rxjs';
import { listFlatMap } from 'rxjs-pipe-ext';
 
of([1, 2, 3])
  .pipe(listFlatMap(x => [x, x * 2]))
  .subscribe(console.log); // [1, 2, 2, 4, 3, 6]

flatListFlatMap

Transforming an observable of list, with a list-observable-returning transformation:

import { of } from 'rxjs';
import { flatListFlatMap } from 'rxjs-pipe-ext';
 
of([1, 2, 3])
  .pipe(flatListFlatMap(x => of([x, x * 2])))
  .subscribe(console.log); // [1, 2, 2, 4, 3, 6]

IDE Type Inference

If the IDE could not infer the type of operators like zipMap, import them from rxjs-pipe-ext/lib instead:

import { zipMap } from 'rxjs-pipe-ext/lib';

Readme

Keywords

Package Sidebar

Install

npm i rxjs-pipe-ext

Weekly Downloads

91

Version

3.0.0

License

ISC

Unpacked Size

17.7 kB

Total Files

26

Last publish

Collaborators

  • aerabi