Collection of extra RxJS 6 operators, Observable creation methods, Observers and Subjects for common use-cases.
Operators
cache- Caches the source Observable values for a time period with three different caching strategies.delayComplete- Just likedelay()but delays only thecompletenotification.distinctTime- Just likedistinctoperator but periodically resets after a set time span.errorWhen- Emits anerrornotification when a value matches the predicate function.finalizeWithReason- Just likefinalize()but passes to its callback alsoreasonwhy the chain is being disposed.queueTime- Mirrors the source Observable and makes at mosttimeDelaydelay between two emissions to keep at leasttimeDelayintervals while re-emitting source asap.randomDelay- Mirrors the source Observable but makes random delays between emissions on a specified scheduler.resetTime- Mirrors source Observable and schedules another delayed emission after everynextemission from source (useful for showing/hiding notifications in UI).retryTime- Just likeretry()but resubscribes to its source Observable with constant delays or resubscribes onlyNtimes based on a predefined array of delays.takeUntilComplete- Just liketakeUntil()but completes only when the notifier completes and ignores allnextnotifications.tapSubscribe- Triggers callback every time a new observer subscribes to this chain.
Observable creation methods
presetTimer- Creates an Observable that emits sequential numbers in predefined delays on a specified scheduler.randomTimer- Creates an Observable that emits sequential numbers in random intervals on a specified scheduler.
Observers
DebugObserver- Observer for debugging purposes that timestamps each notification with time offset since the instance was created.
Subjects
PersistentSubject- Just likeBehaviorSubjectbut stores every item in a persistent storage (LocalStorageby default).
Install rxjs-extra via npm:
npm install rxjs-extra
The general usage is the same as with any RxJS 6 operators or Observable creation methods:
In TypeScript for example:
import { map } from 'rxjs/operators';
import { randomTimer } from 'rxjs-extra';
import { tapSubscribe } from 'rxjs-extra/operators';
randomTimer(100, 2000).pipe(
tapSubscribe(() => console.log('subscribed')),
map(i => String.fromCharCode(97 + i)),
).subscribe(console.log);
In node environment for example:
const { map } = require('rxjs/operators');
const { randomTimer } = require('rxjs-extra');
const { tapSubscribe } = require('rxjs-extra/operators');
randomTimer(100, 2000).pipe(
tapSubscribe(() => console.log('subscribed')),
map(i => String.fromCharCode(97 + i)),
).subscribe(console.log);
All features from this package have their small demo examples written in TypeScript. You can use NPM demo script with preconfigures ts-node to run any one of them:
$ npm run demo -- demo/delayComplete.ts
This repository tests are based completely on RxJS marble tests and its helpers. You'll have to clone the original RxJS repo because tests in this repo rely on tools available only in the official RxJS 6 repo.
$ npm run clone_rxjs_repo
To run the test suit simply run the following npm script:
$ npm run test
This repository also uses the same marble2png generator as the original RxJS repo. Since this isn't an officially exported feature of RxJS 6 the process is a little more complicated but fully automatic by running a single script:
First, install ImageMagick or GraphicsMagick. Then run the following command:
$ npm run tests2png_full
The tests2png_full script does the following things:
-
Clones
https://github.com/ReactiveX/rxjs.gitrepo into.rxjs-repodirectory. -
Creates
./docs_app/content/img/directory. -
Runs
mochatests withtests2png.optsoptions. -
Copies content of
./docs_app/content/img/to./doc. -
Removes temp directories
.rxjs-repoand./docs_app.
If you know you're about to run the png generator a lot you can just clone the RxJS repo and re-run the test suit:
$ npm run clone_rxjs_repo
$ npm run tests2png
On Windows the process is a little more complicated because gm npm package won't be able to find the convert command so you'll have to manually make changes to the cloned .rxjs-repo/spec/helpers/tests2png/painter.ts.
The following process might be slightly different between ImageMagick and GraphicsMagick.
-
Set ImageMagick/GraphicsMagick
convert.exepath.// When using ImageMagick (including portable ImageMagick) const gmCmd = gm.subClass({appPath: 'path to your ImageMagick dir', imageMagick: true});Then almost at the end of the file use
gmCmdinstead of the defaultgm:let out: GMObject = gmCmd(CANVAS_WIDTH, canvasHeight, '#ffffff'); -
Set
helveticafont path.ImageMagick/GraphicsMagick might not be able to find
helveticafont on your system. So downloadhelvetica.ttffont from any site you like. Then in.rxjs-repo/spec/helpers/tests2png/painter.tssearch forout.font('helvetica'and replace it the font name with path to the file you downloaded.