Future fetcher is not a replacement for Redux. It's a feature they will be adding to React later on in 2018 to allow devs to adaptively render elements based on network performance. You can signal to React to delay rendering specific components until an async operation is complete.
Redux is a state management layer. Future fetching does nothing to solve app-level state management.
Gross misrepresentation of Dan's talk by this article and he made zero mention of the React context API in the talk.
What about apollo-link-state? Not a replacement either per se, but seems like its one step closer to isomorphic (client & server side) state.
On one hand it normalizes your data & avoids thousands of lines of boilerplate, on the other hand you lose [some] control of the underlying data structures which is where you'd still need something like redux.
I love Apollo. I think it's great! It really does reduce like 2/3 of the state you need to manage in your app. Only caveat is that it's somewhat arduous to use unless you have a GraphQL backend, so you really do have to buy in to that whole stack. That's sometimes a luxury not all products/teams are blessed with.
> The concepts are clear to those with a Computer Science (CS) educational background, but since the large mass web developers come mostly outside of this arena it is a hindrance.
Seriously?
A CS degree is not necessary in order to understand functional programming, and it's not like reducer functions are all that complicated.
I think the difficulty is in making sure the state is not mutated. This is unusual for most developers, especially those coming from an OOP background.
It seems like you have some stats I don't have access to. Care to share? I feel it implausible that given reduce is a functionality built into JavaScript, very useful, and that it's the worlds most common programming language saying the vast majority seems like a stretch.
redux is useful for a lot more than just async fetching & loading. I think these new features will just reduce the scope of what redux is used heavily for.
I use redux a lot and love the way you can reason about the state of the app from a single object - which opens up all sorts of useful things like time-travel etc.
However - after having plugged in a lot of reducers - the boilerplate code required to do simple stuff becomes a real bore. I've since compromised by using a simple `key-value store` reducer that I can write new values to without needing a new reducer with accompanying actions.
I'm sure this is not how it's supposed to be used but nobody ain't got no time for making all that boilerplate just for a button :-)
Like I say - it's worth it though - it's amazing how large frontend apps "just work" once you have the state in a single place and the UI rendering from it and it alone.
One of my favourite parts of ReasonReact is that reducers are built in, out of the box. The Future-Fetcher feature coming in React reminds me of that; I recently built a React Native app that has 99.8% Flow type coverage, that’s meaningful and has caught dozens of bugs as the team worked on it. Having nice state management built into React will be lovely, and subsume a lot of the type imports or duplication that using Redux, React and Flow together currently requires.
The answer to the complexity of JS and associated frameworks/libraries cannot simply be "stop making JS apps".
Don't get me wrong, I agree server side rendering is a lot simpler and solves many problems, but there are plenty of reasons to go with a full client-side app and in those cases libraries and frameworks, while not essential, are logical and sensible conclusions.
The spec constantly evolves. At some point, there will be web components "v2" and coding "regular" web components will be outdated. As the spec evolves, browsers will evolve at different paces & implement things differently. Such is the reality of cross platform development. The only constant is change itself. To deal with it we use tools like polyfills, libs, and frameworks.
Right, those things fall into the category of tools libs & frameworks. Like Carl Sagan says if you want to make an apple pie from scratch you have to first invent the universe. There's always going to be change and need to support backwards compatibility, so polyfills libraries & frameworks likely aren't going away anytime soon, even after web components are widely supported.
I think it'll also be interesting to see how Apollo continues to evolve in this space as more people adopt GraphQL in their React apps. Apollo is getting more and more state management features that can handle lots of what Redux is doing:
We're using the Apollo stuff sometimes over in Angular apps also; at the moment I think this may be the strongest contender for a minimal code, declarative, "it just works" future.
Not true for Apollo v2, it’s providing local state management via apollo-link-state plugin which works pretty well, and once they got the rest support working, it will be a very competitive alternative to redux.
Redux is a state management layer. Future fetching does nothing to solve app-level state management.
Gross misrepresentation of Dan's talk by this article and he made zero mention of the React context API in the talk.