Aaron Craelius
Aaron Craelius
Yeah, I've been looking into it a bit actually to solve the mess that Cursor is in from needing to have four instance methods as fields - either I rewrite...
I wrote a little macro that should handle the inheritance. I know this sort of thing is in generally frowned upon in the Clojure community, but honestly I think it...
Are you sure it's safe to use Polymer's DOM some places vs the native DOM other places? Can custom elements possibly mutate logical sub-trees in the shadow DOM? I'm just...
Well the post-render hook would need to be applied to every operation including `setAttribute` I think. If the issue with inheritance is needing to find the parent element - this...
Yes, freactive maintains a tree of logical elements - but logical elements in freactive can either be native-backed - DOMElement, TextNode and UnmanagedDOMNode or virtual - ReactiveElement and ReactiveElementSequence. These...
Yes, cursors should be more efficient if used correctly. Especially the new cursor implementation. You can write `(cursor state [:div#b :style :color])` instead of the `comp` if you like. Although,...
Also, `(rx @c)` is redundant. Just bind `c` directly as in `[:div c]`.
Mostly to support commercial projects. I hacked together freactive.dom initially from frustrations with om and reagent not working quite as smoothly as I had hoped. Currently trying to put a...
Good luck! Curious - are there particular frustrations you had with reagent that you feel are solved with freactive? On Fri, Jun 12, 2015 at 7:07 PM, alexandergunnarson < [email protected]>...
It's not only redundant, it adds overhead. Any IWatchable is bindable directly. On Fri, Jun 19, 2015 at 4:26 PM pkobrien [email protected] wrote: > Can you explain why (rx @c)...