Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Exposing Mongo Cursor as RxJS Observable

License

NotificationsYou must be signed in to change notification settings

Urigo/meteor-rxjs

Repository files navigation

npm versionBuild StatusbitHound Overall ScorebitHound CodebitHound Dev Dependencies

Harness Meteor reactivity with RxJS.

RxJS is built to simplify complexity dealing with reactive data flows. At the same time, Meteor's Minimongo cursors are a good target for RxJS API due to their reactivity. Thus, combining RxJS and Meteor, we bring together best parts of two worlds.

API Documentation

API documentation is available inside this repository,here.

Mongo Cursor Observable

As soon as you install this package (npm install meteor-rxjs), you have ability to use a special Mongo collection class that workswith cursor observables instead of the ordinary Mongo cursors. In other words, one can subscribe on the Mongo cursor's data updates now as follows:

import{MongoObservable}from'meteor-rxjs';constTasks=newMongoObservable.Collection<Task>('tasks');Tasks.find({checked:false}).map(tasks=>tasks.length).subscribe(todoCount=>console.log(todoCount));

Since this cursor observable is of RxJS’s type, every other methods and operators available to the observables as part of the RxJS API are also now available to the users, e.g., one can debounce data updates using RxJS’s debouncing operator:

import{Observable}from'rxjs';import{debounce,map}from'rxjs/operators';Tasks.find({checked:false}).pipe(debounce(()=>Observable.interval(50))).pipe(map(tasks=>tasks.length)).subscribe(todoCount=>console.log(todoCount));

Usage with Meteor packages

Meteor has a lot of packages that extendMongo.Collection with new methods. SinceMongoObservable.Collection is a wrapper overMongo.Collection, you can't use new methods on observable instances directly. The solution here is to passMongo.Collection's instance to the observable constructor, and use them whenever you need after separately:

letcollection=newMongo.Collection('foo');letobservable=newMongoObservable.Collection(collection);collection.attachSchema(...);// with SimpleSchema package

Usage in Angular

Angular has tight integration with RxJS since Angular is desinged to support reactive UI updates.One of the realizations of this integration isAsyncPipe, which is supposed to be used with RxJS observables.

In order to subscribe on the Mongo cursor observable's updates and iterate through the returned list of docs in Angular, one can useAsyncPipe in an Angular component as follows:

import{MongoObservable,zoneOperator}from'rxjs';constTasks=newMongoObservable.Collection<Task>('tasks');@Component({selector:'task-list',template:`<ul><li *ngFor="let task of tasks | async"></li></ul>`})classTasks{tasks=Tasks.find().pipe(zoneOperator());}

Zone operator

As you can see above we calledzoneOperator operator of the cursor observable. This is a specialZone operator that is implemeted bymeteor-rxjs for the Angular users' convenience.This operator runs ngZone each time when new data arrives to the Mongo cursor observable,thus we force UI updates at the right time using it.

It makes sense to improve performance of the aboveTasks component by debouncing UI updates.In this case we are using Zone operator as well:

classList{tasks=Tasks.find().pipe(zoneOperator()).pipe(debounce(()=>Observable.interval(50))).zone();}

##LicenseMIT

About

Exposing Mongo Cursor as RxJS Observable

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors9

Languages


[8]ページ先頭

©2009-2025 Movatter.jp