David Edmondson

Results 33 comments of David Edmondson

Working on examples and expanding documentation. From defaultProps: > Although it has a similar effect, using the `defaultProps()` HoC is *not* the same as setting the static `defaultProps` property directly...

Is there a general structure in mind for the wiki? I'm fine with the example PR being closed, but everyone still goes to the API docs link right now, and...

I left out the Tailwind config, which would look like this: ``` textColor: { dark: "var(--gray-800)" } ``` CSS vars are only swapped for config when the config resolves to...

It's been backlogged at work because: - There are simpler and quicker ways to reduce CSS size (which is the main benefit for us here). - I had a lot...

`componentDidMount` solutions leave a window of time (1/3 to 1/2 second in my testing) between the component mount and Waypoint's resize handlers. If someone scrolls during that time, your app...

RxJS is deciding its next API - likely based around a compose/pipe structure - which has triggered a _lot_ of movement on Typescript to finally support this style without explicit...

`compose` has been a problem for a long time, and was only possible at all late last year. Neither Flow nor Typescript support variadic types yet, so you need a...

Looks like they're doing about the same thing: https://github.com/reduxjs/redux/blob/master/index.d.ts#L416 I think I'm wrong about the complexity here. Most HOCs are props => props, and all the extra arguments are in...

Tried and failed, sorry. The good news is that React hooks are dead simple to type.

Since this carousel already exposes everything needed to control state from the application, what's the benefit vs. using multiple ViewPagers? Performance?