Devon Govett

Results 894 comments of Devon Govett

It should be noted that createHideableComponent is only an optimization and is not required for a functional implementation. This will also be marked unstable in the upcoming release so it...

What are you trying to do with this? The provider is built into `createHidableComponent`, and you can consume it via `useIsHidden`. The only use case we have for this is...

Yeah that all got moved into the new `CollectionBuilder` component that we're using everywhere now so you don't need to worry about setting the hidden context or configuring SSR manually...

Like what? It wasn't really intended as a general purpose thing, it's just an implementation detail. Can't you use your own context if you are doing something other than a...

I don't think we need a database for this. We don't need any of the features that a database offers, e.g. durability, fault tolerance, transactions, indexes, etc. We don't care...

I'm not sure remote caching will be beneficial anymore tbh. If done per file, the network latency alone will be an order of magnitude slower than the CPU time needed...

> That would surely be faster than rebuilding locally. I'm not so sure. You might have to download a lot of data. Say you start with no cache. Just downloading...

I'm not sure about making our hacks into public APIs. Let's think about this a bit more. 😅

My concern is that it feels very "implementation-detail"-y. I think we want to allow creating custom popovers to work with select/combobox, but as it is, this seems quite difficult to...