Matt Huebert
Matt Huebert
I've been gradually replacing my queries with index lookups and seeing orders-of-magnitude speedups. Eg. this recursive `pull` query was taking ~150 milliseconds with my dataset: ``` clj (d/q '[:find (pull...
IIRC when module-splitting, say you have modules `:react` < `:core` < `:widget-X`.. ```clj :react :depends-on #{} :core :depends-on #{:react} :widget-X :depends-on #{:core :react} ;; should be able to just say...
Agree, vertical movement is broken & should be fixed
From reading the docs, I also expected selection to be controllable on a controlled component. I think it should either be controlled, or the prop should be renamed to something...
Thanks again for this very useful lib :-). Are there any important bug fixes that need help? I am hesitant to add this to a production project until we can...
FWIW, in the meantime I've published an unchanged [fork](https://github.com/athos/kitchen-async/compare/master...mhuebert:master) of `kitchen-async` to Clojars: [](https://clojars.org/mhuebert/kitchen-async) ```clj mhuebert/kitchen-async {:mvn/version "0.1.0"} ``` In the process I also released a small lib to...
I like that idea. Happy to accept a PR if it arrives before I find time to work on it.
After a chat with @mk tried another route - using hooks and a function component. It's not particularly ergonomic to do with reagent but much easier to achieve exactly what...
I added the async error handler back in, using a hook, and to simplify things - I changed the default reagent compiler to functional components. So this would now need...
further re-implemented everything using hooks, much simpler and composed of small parts.