Andrew Shaffer

Results 66 comments of Andrew Shaffer

That's not a bad idea, though I think I would prefer to avoid in-band signalling like that (putting it in the url), and also probably opting out would be better...

@dylansmith Ya, that's definitely true.

Ah, ya. We could do something like that. If you're extracting keys, you may also want to be able to map over things efficiently (right now you could only do...

Hmm...so the way i'd suggest doing that at the moment is just to nest HAMTs and provide a wrapper around them, maybe? So: ``` const users = hamt.set(hamt.empty, 'user', hamt.set(hamt.empty,...

Ah cool. Ya i'm not sure which is faster, and I think which one is better probably depends on what you want to use it for. One advantage of the...

Ah, cool. Should I close this issue then?

Ya, I looked at redux-watch before I made this. The two big differences I see are: - Strings vs selector functions, as you mentioned. Using selector functions means that the...

This looks interesting. I think an approach like this using cursors might be the right one. However, it seems like a weird definition of `dispatch` that you have here. Why...

IMO the default `shouldUpdate` behavior should be an immutable shallow equal check. Deku should be opinionated about this by default, I think. Deku 2.0 is clearly designed for use with...

+1 from me on `getProps`. You could also use it for validation or something if you wanted. EDIT: On second thought, this doesn't seem like it'd actually be all that...