mondora / asteroid

An alternative client for a Meteor backend
MIT License
734 stars 101 forks source link

Status indicator on subscription download #53

Closed Compy closed 9 years ago

Compy commented 9 years ago

Is there any way to get feedback on whether or not a subscription is still loading documents? I'm using this on a mobile application and would love to display a loading icon while records are still loading. Great work, by the way!

pscanf commented 9 years ago

Hi there. :-)

Yes, there is. A subscription instance (the thing returned by subscribe, which acts more or less as a factory) has a ready property, which is a promise, that gets resolved when the initial batch of documents has loaded, so you can use that.

Cheers