Mark Erikson

Results 1264 comments of Mark Erikson

Yeah, strictly speaking the JSX transform isn't part of "React" the software library at all. JSX was invented for _use_ with React, but many tools now implement that syntax (even...

I'll chime in and say that the Redux team is working on async compat for React-Redux. I laid out a potential roadmap at https://github.com/reduxjs/react-redux/issues/950 . TL;DR: - React-Redux 5.1 will...

@giorgi-m : yes, the lifecycle methods are changing, but the point is that Suspense itself is an opt-in feature. All your existing React render methods and React's rendering behavior will...

@thysultan : `componentDidMount` and `componentDidUpdate` are called in the commit phase, when a UI tree has been fully rendered and applied to the DOM. So, based on my understanding of...

Just wanted to say that I'm using Playwright Test Library for the first time today, and I would _really_ like to have this :) We've got a bunch of "page...

Thanks! It looks like this got published as part of `playwright-testing-library`, but not `@playwright-testing-library/test` . Could you bump that package as well? (tbh I'm not sure I actually understand what...

@jrolfs thank you! as a fellow lib maintainer, I really appreciate the fast response :)

@Andarist have I mentioned lately that you're awesome? :) Yeah, my initial thoughts here are: - I did some _stupid_ hacky things to get `connect` working with `useSyncExternalStore`. So, it...

I'll try looking at the actual replays tomorrow, but off the top of my head, I _would_ expect this to unsubscribe. React-Redux v8 defaults to using the `useSyncExternalStore` "shim" package,...

AHHHH, that's fascinating! So apparently this was my mistaken assumption: > Assuming that React runs hook cleanups when a component goes offscreen or at least for passive effects. Out of...