Adrian Carriger

Results 28 comments of Adrian Carriger

I really like what I see so far! This should make list updates much more efficient. Thanks for putting this together 👍

Thanks for bringing this up! This should be automatically updating via [semantic-release](https://github.com/semantic-release/semantic-release).. I'll try to have this fixed soon

Hi @thiagocarvp, you can just use the regular Firebase promise like this: ```ts const promise = this.afoDatabase.object('car').update({maxSpeed: 100}); promise.then(() => console.log('data saved to Firebase!')); ``` This promise tells you when...

@thiagocarvp can you give me an example of what you'd like to do? I think I need a little bit more context. Thanks!

Thanks for bringing this up! A public synchronization method would work, but I'm curious if using [web workers](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers) would also solve the issue. When I have some time I would...

Hi @JaneDawson, thanks for spotting this issue! It looks like the types aren't matching up correctly. ## Workaround As a quick workaround just change your list's type to use `any`...

Hi @JaneDawson, I made a quick [demo](https://adriancarriger.github.io/angularfire2-offline/issues/47.1/dist/) (with [code](https://github.com/adriancarriger/angularfire2-offline/blob/gh-pages/issues/47.1/src/app/app.component.ts#L19-L21)) to better explain the workaround. Basically you can just use this for your `getAllOffersOnce` method: ```ts getAllOffersOnce() { return (this.afoDatabase.list('groceries')).take(1); }...

Thanks for the issue report! I put together a demo to show what I found: ## Example - [Code](https://github.com/adriancarriger/angularfire2-offline/blob/gh-pages/issues/9.1/src/app/app.component.ts) - [Demo](https://adriancarriger.github.io/angularfire2-offline/issues/9.1/dist/) - this purposely doesn't allow writes to Firebase, but...

This should be fixed as of AngularFire2 Offline v4.1.1 🎉🎉 Please post if you're still experiencing issues. Thanks!