Git Product home page Git Product logo

Comments (3)

dotansimha avatar dotansimha commented on June 12, 2024 4

@ppoliani
If there is no data in the Mongo.Collection, then the changes events won't fire, and the next callback of the Observable won't fire.
You can use RxJS startWith operator in order to solve it:

Collection.find(condition).startWith([]).map(x => ....)

Also, make sure to call subscribe on the Observable that map returns, otherwise the teardown logic of the Observable won't run (or, use the Observable with async Pipe of Angular 2):

Collection.find(condition).startWith([]).map(x => ....).subscribe((data) => {
     // ...
});

from meteor-rxjs.

jerradpatch avatar jerradpatch commented on June 12, 2024

I personally expected it to return an empty array when nothing was in the collection or at least a null. Is there a reason why it doesn't do this by default?

from meteor-rxjs.

atd avatar atd commented on June 12, 2024

I agree with @jerradpatch Otherwise, there is no way to distinguish between the two cases (data isn't loaded yet vs data is loaded but empty)

It is needed to avoid showing users the empty placeholders in lists, which is confusing (user sees a notice saying that her list is empty, and then the list populates with data)

There is a pull request fixing it #103

from meteor-rxjs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.