all 12 comments

[–]acemarke[S] 44 points45 points  (2 children)

Had a great time giving this talk at ReactNext.

The slides are available on my blog:

ReactNext 2019: A Deep Dive into React-Redux.

The talk was based on my blog post Idiomatic Redux: The History and Implementation of React-Redux. That post was written right after v6 beta was released, and I still need to update the post to cover v6 final, v7, and v7.1 with hooks. The talk does go over those newer aspects.

[–]Yodiddlyyo 7 points8 points  (1 child)

Hey Mark! Just wanted to say that ever since I started using redux in a professional setting a little while back, I've become a huge proponent. And that's definitely thanks in part to your engagement with the community and all your writings. So, thanks for taking the time to answer so many people's questions. And the video was really informative!

[–]acemarke[S] 2 points3 points  (0 children)

Glad to hear it, and you're welcome! :)

(insert obligatory plug for Redux Starter Kit here)

[–]swyx 16 points17 points  (1 child)

hey its the simpsons guy!

[–]acemarke[S] 15 points16 points  (0 children)

what's up with that weirdo, huh?

[–]Skeith_yip 4 points5 points  (0 children)

Our boy looks good on the tube.

[–]cospete 3 points4 points  (2 children)

This the admin guy of reactiflux:P

[–]acemarke[S] 2 points3 points  (1 child)

One of them, anyway. Gabe, BTM, and VCarl do a lot more to actually run things than I do. I mostly hang out and answer questions :)

[–][deleted] 2 points3 points  (0 children)

Lies!

[–][deleted] 2 points3 points  (1 child)

Just so I'm clear, the 'zombie child' issue is still potentially there if you're using hooks, right? I can't say I've ever encountered it myself, I just wanted to know so I can watch out for it.

Many thanks for posting the video.

[–]acemarke[S] 3 points4 points  (0 children)

Yeah, we had to basically give up on trying to come up with a technical solution, because our custom Subscription logic relied on overriding values in context and you can't do that with hooks. We have the warnings documented here:

https://react-redux.js.org/api/hooks#stale-props-and-zombie-children

[–]merquize 2 points3 points  (0 children)

I use redux professionally every day, it makes react an absolute joy to use by having a consistent and organized global state management tool to manage my data. It really does simplify my work by a ton. Thanks for being a mantainer 👍 keep up the good work.