Simon Zimmerman
Simon Zimmerman
Thinking on this further, I wonder if `onSnapshot` could evaluate [`fromCache` in the snapshot's metadata](https://firebase.google.com/docs/reference/node/firebase.firestore.SnapshotMetadata#fromcache) and respond accordingly? Something like: ``` public findAll(colRef: CollectionReference, shouldReload: boolean): Promise { return new...
Thanks @mikkopaderes 👍🏻 Ultimately (I'm working with a small number of records now), I will also use `query` for large sets but I do have some cases (a dozen or...
Amazing 🤩
> I will look into it and see that whenever we don't provide isRealtime, we always use getDoc or getDocs. My ideal scenario would allow `isRealtime` (I want document changes...
Also hitting up against this: the rule and the Ember guides for [Storing and Retrying Transitions](https://guides.emberjs.com/release/routing/preventing-and-retrying-transitions/#toc_storing-and-retrying-a-transition) are at odds. 🙃
I also have a use case that requires the "click outside" to be disabled for specific events. The event isn't currently being passed to the [`onClose`](https://github.com/GavinJoyce/ember-headlessui/blob/d2ce9bdcddd76d1cb34d1a2ce00f1e0eff7d19ca/ember-headlessui/addon/components/dialog.ts#L166) action. @far-fetched would you...
> Can you show your example Yes, I'll put something together, thanks. I'm away for a few days now. It's a very basic implementation that renders a form. One of...
Thanks @charlesfries, updating to the latest **ember-data** types closes this issue.
> Experiencing the same issue. Downgrading to 4.0.0 resolves it for both v1 and v2 functions. Likewise here.
Hi @mikkopaderes, you may already have spotted this issue but I was playing about with the "cherryPicker" idea today, using the latest commit on this PR. ``` public async restore():...