Тёмный

State Managers Are Making Your Code Worse In React 

Web Dev Simplified
Подписаться 1,6 млн
Просмотров 185 тыс.
50% 1

Опубликовано:

 

25 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 449   
@kmellia
@kmellia 6 месяцев назад
I'm a junior developer and have been following your channel for a while now because your courses are so easy to understand. However, I was wondering if you could make videos about how to maintain and update a project when there are new packages and/or frameworks versions, and how to configure things like imports, Prettier, etc. We always see videos about coding, but I think configuration, infrastructure, and maintaining projects are also very important.
@miervaldis42
@miervaldis42 6 месяцев назад
Yes, that would be cool Also configuring a simple CI pipeline, Docker, automatic versioning, monorepo, etc...
@spongebob93lover
@spongebob93lover 6 месяцев назад
Agree! Being a web developer now is not only about coding but also all those things you mentioned and I find it difficult to proceed as a junior
@TheStickofWar
@TheStickofWar 4 месяца назад
You’ll never get him to do this because frankly it’s a very difficult topic that is quite deep. And he goes very surface level on most topics on RU-vid. For example, something like Zustand is great. So this video is kind of moot
@ElatedBlue
@ElatedBlue 6 месяцев назад
This was an amazing video! Specifically, I liked you going through a short summary of the history where you explained problem -> solution, problem -> solution. I think it is infinitely more useful to understand why things are used/developed as opposed to the common 'this is industry standard, use this for x'
@adtc
@adtc 6 месяцев назад
Thank you for not saying there is "state" in server components. It tripped up a lot of people.
@JakubSK
@JakubSK 4 месяца назад
React Context is a robust and easy-to-use solution for state management. In my experience, it has proven to be highly effective and free of issues. There is considerable debate regarding the use of URLs to store state. It's important to note that search parameters should be used specifically for conducting searches, not for general state storage. While storing state in a database might make sense in some scenarios, it can be impractical for managing UI-related, client-side state. Frequent re-fetching of data from the server can introduce unnecessary complexity and friction. Instead, maintaining state on the client side often leads to a more seamless and efficient user experience.
@ParaZumir
@ParaZumir 6 месяцев назад
PLS use more drawings like in this video. It makes it much easier to understand. Awesome channel
@TienNguyen-og5eo
@TienNguyen-og5eo 6 месяцев назад
Yeah, I finally understand on big scale the props drilling issue.
@Leightym
@Leightym 4 месяца назад
Yes! And what tool are you using to make those drawings?
@mountakhabi
@mountakhabi 6 месяцев назад
React Query (Tanstack Query) is also a good way to store requested data with the build in cache
@robovirtuoso1354
@robovirtuoso1354 25 дней назад
Call it cache or whatever, it is still some "in-memory state".
@Yoband706
@Yoband706 6 месяцев назад
I have literally spent the last month removing impossibly intertwined and implicit state and putting it in the URL. This has allowed for deeplinks, bookmarking and easier to read code, test and re-use code. I am of the opinion you most likely don't need state management in almost all work you do. Thanks for the vid!
@deshi-sukuna
@deshi-sukuna 6 месяцев назад
server state with react query is my go to and always will be 🐐
@Yoband706
@Yoband706 6 месяцев назад
@@deshi-sukuna indeed. The server is (almost always) the real state. We are here to make buttons ands
@vickylance
@vickylance 6 месяцев назад
​@@deshi-sukunawhen you say server you mean like next js server or like actual server API?
@deshi-sukuna
@deshi-sukuna 6 месяцев назад
@@vickylance i mean actual server api 😃
@vickylance
@vickylance 6 месяцев назад
@@deshi-sukuna ok cool
@tom.watkins
@tom.watkins 6 месяцев назад
I avoid using state management libraries until I have an exact use case for one in the project. It's surprising how far you can get without having any need for one
@Stevexupen
@Stevexupen 6 месяцев назад
you'll find that if you avoid state management libraries, you'll start creating better reusable components.
@IllevensKO
@IllevensKO 4 месяца назад
As an anarchist, I'm happy our developer comrades are resisting the state managers even in code ✊
@sylum3
@sylum3 6 месяцев назад
Zustand is so good that you should not bother with reducer and context hooks other than to feel how painful it is to use them, so that you would be able to appreciate zustand even more.
@fancyAlex1993
@fancyAlex1993 2 месяца назад
Agreed just use it on Next Js. It makes everything easier.
@adamzalesak
@adamzalesak 6 месяцев назад
No, please don't use Context with Reducer for state management. It is not optimal (re-rendering due to the lack of selectors), much boilerplait needed especially in TS. Jotai is much better option if you need to manage global client state.
@mineturtle1841
@mineturtle1841 6 месяцев назад
This. I ran into a problem because of this like 2 years ago and it was painful to debig and fix. Context is good but shouldnt manage a global state, it is not the purpose of it
@StefanoV827
@StefanoV827 6 месяцев назад
I basically use only RTK for the login reducer with persist to keep the user logged, and RTK query (so same package) for api fetch because it manages the cache and allows me to avoid too many requests to the backend. That's it.
@marvinkr
@marvinkr 6 месяцев назад
Got a code example?
@StefanoV827
@StefanoV827 6 месяцев назад
@@marvinkr you can get all the examples on RTK query docs. Also RTKQ allows you to avoid using useEffect, cause it reloads automatically the widget on data change. Also you can launch multiple fetchs sequentially using "skip" option, so convenient!
@buzz1ebee
@buzz1ebee 6 месяцев назад
The code gen for rtk query is really nice too. If you have accurate openapi specs for your back end (either because you define the openapi spec and also generate the backend, or you generate the openapi from your backend) then you can just run a command to have all of your data fetching and mutations created for you automatically.
@Osirisdigitalagency
@Osirisdigitalagency 6 месяцев назад
What about the client side State management like e-commerce carts and themes
@StefanoV827
@StefanoV827 6 месяцев назад
@@Osirisdigitalagency yeah you can do it with reducers as usual with RTK
@stazchristo
@stazchristo 4 месяца назад
For super complex web Apps I have been leaning for Redux for global state and localized hooks for fetching and very localized contexts for purely sharing props to avoid excessive prop drilling. This way you can avoid context hell and make it a rule to not make contexts dependent on each-other.
@zb2747
@zb2747 6 месяцев назад
Reasons why I like Vue Vuex/Pina: One state management library that gets the job done Less time worrying about state management and more time building
@Su-xs1yr
@Su-xs1yr 6 месяцев назад
yeah! Agree with you🎉 When encounter complex business logic, you will be happier developing with Vue.
@paccioti
@paccioti 6 месяцев назад
react hook form, context and TanStack Query is all you need for your app
@snake1625b
@snake1625b 6 месяцев назад
React routers url params too
@TienNguyen-og5eo
@TienNguyen-og5eo 6 месяцев назад
You mean React Query ?
@paccioti
@paccioti 6 месяцев назад
yup that's the one @@TienNguyen-og5eo
@paccioti
@paccioti 6 месяцев назад
@@snake1625b for routers that basically goes by default if your not using next
@stevinjack5062
@stevinjack5062 6 месяцев назад
@@TienNguyen-og5eo Yeah TanStack Query is called React Query back then. They just changed the name. They two are the same.
@chawkichalladia1812
@chawkichalladia1812 6 месяцев назад
here's my opinion on state management. you need 3 types of states. global client state, server state or async state, and scoped state (client state under a single branch of the app tree, basically only considered global for the children of the component where they are defined). I prefer Zustand, reaact query and context for them in order.
@aliasalias510
@aliasalias510 6 месяцев назад
Agree but for the third I would add the following: As long as the tree hierarchy in that "ui-branch" is not too deep and complex (and not expected to), try to use as much local state and other techniques like prop drilling as possible and only use context if necessary. This will "force" the devs early on to really think about seperation of concerns and clean architecture instead of putting everything in a semi-global state (making it better for testing and maintainability)
@chawkichalladia1812
@chawkichalladia1812 6 месяцев назад
@@aliasalias510 it doesn't scale well. If it's 2 or 3 components deep it's fine but if you drill deeper it becomes a nightmare. I inherited a big project that has that issue. It forced me to think about context for components instead of for the app.
@aliasalias510
@aliasalias510 6 месяцев назад
@@chawkichalladia1812 well thats exactly what i meant with "if its not to deep...". So i understand. Same here. Nothing to argue about
@chawkichalladia1812
@chawkichalladia1812 6 месяцев назад
@@aliasalias510 not arguing just discussing
@JesseSlomowitz
@JesseSlomowitz 6 месяцев назад
I've been a huge fan of what Preact Signals has done for React. I've been using that for state management on the client side. (And it's also really smooth for passing state around in Svelte).
@dereksniper
@dereksniper 6 месяцев назад
This is what i want to try on my next project
@BboyKeny
@BboyKeny 6 месяцев назад
Knockout had it right
@osaka-ben9291
@osaka-ben9291 6 месяцев назад
I'm using Nextjs and i already figure it out that state was no longer needed in my application because i prefer using SSR and page be generated server side to gain performance which is a great thing but when you have client interaction to filters blog for example , i thought there were no other way to deal with states so thank you so much for the URL parameters tips , didn't think about that and i'm gonna apply this idea right away :)
@Shyam_Mahanta
@Shyam_Mahanta 6 месяцев назад
These ideas are for small web apps. For a scalable management app or a eCommerce app you do need state manager and all that
@hollycow8171
@hollycow8171 5 месяцев назад
​@@Shyam_Mahanta you can still use json or cookie.
@serg472
@serg472 6 месяцев назад
I think passing state down the tree is not the main problem a state management library solves. The really nasty side of react is dealing with a state that's an object, containing arrays of objects, etc. It becomes very difficult to correctly merge updates to this state to avoid unnecessary re-rendering, or to force re-rendering when needed. This is the most nasty and difficult part or react, which they didn't really solve to this day, and that's why all those libraries were invented and continue being invented - to deal with state updates. State passing can be solved with the context, but state merging is still a big pain and Achilles' heel of the whole react universe. I was spending endless hours trying to figure out unexpected rendering issues every time (which you don't have direct control over as it's all react magic which is the worst part) until tried MobX and it finally all started working together just like I always expected without any weird unexpected side effects.
@deddyachmaddaryaman7981
@deddyachmaddaryaman7981 Месяц назад
This is the things I've still strugle with.., sometimes 😄.. I want to use just an old vanilla javascript or jquery that what I had known for almost 20yrs alongs with php. Main purpose I learn react is it can be used for mobile app. ah.. maybe it just because my brain isn't fresh anymore 🤣🤣
@markohh99
@markohh99 Месяц назад
True. This video did not mention the rerendering issue in Context API, which is a really big deal when working with a big app and every bit of performance is important.
@黑草草草
@黑草草草 День назад
The rendering issues mentioned above, will they be solved in React 19 with the help of the React 19 compiler?
@riya6549
@riya6549 6 месяцев назад
I learn state management this week and then this video pops up 😆
@marcteufel8348
@marcteufel8348 6 месяцев назад
Only read the title, not yet seen the video itself, but thought : "Thats why we're mainly using selfcoded stores written in plain Java/TypeScript living in the module scope of the application, keep it simple, keep it small".
@jordanfarr3157
@jordanfarr3157 6 месяцев назад
Yes!!! This!
@RUFeelin
@RUFeelin 6 месяцев назад
What app is being used to draw/illustrate?
@bezimienny5149
@bezimienny5149 6 месяцев назад
Maybe Excalidraw
@bama2619
@bama2619 6 месяцев назад
Kyle, thank you for the right info. I love your explanations. I just about to brush up state management in React. You gave the view of all the state panorama. I have still many things to learn. Really waiting for your next video with the project you mentioned.
@bissogood
@bissogood 2 месяца назад
Finally someoone who understands what I have always said. Nice video and great explanation. 90% of the time you do not need state management! keep your code clean and if you don't need some fancy library then don't use it. You are only "prop drilling'" if your only going way too deep into your components. Love you Web Dev. GREAT VIDEO!
@andrewwall2730
@andrewwall2730 6 месяцев назад
I somewhat disagree. Though your project may begin as a simple app not needing global state management, it may grow in complexity and features pretty quickly, and useContext, useReducer will not scale. Why not start with a global state manager, though there may be a bit more setup and boilerplate code, it will scale and is pretty simple to implement.. Don't really understand the dis on redux. That lib with redux-saga allows to build large projects that once setup will just work. Lower maintenance, ease of testing need to be considered.
@Cognitoman
@Cognitoman 6 месяцев назад
I like redux still
@drewstevens7153
@drewstevens7153 4 месяца назад
I think Redux has a bad rap due to the initial boilerplate it required. Modern Redux doesn't have that. Even the reducers you write are much simpler than the old days due to its use of the Immer lib. It's akin to saying React sucks because of the way it implements mixins (i.e. ancient history). When I started using RTK I was hesitant but it's been a great DX. I'm not sure I agree about redux-saga though (just use RTK Query)...
@adriankateliev731
@adriankateliev731 5 месяцев назад
Redux + saga is still for me the best combination. You've got clear components without any async requests. You send only events, so much clear.
@Reaper_f30
@Reaper_f30 4 месяца назад
im a senior dev and i find redux-toolkit such as easy state management to use!
@kirillvoloshin2065
@kirillvoloshin2065 6 месяцев назад
mobx does the job for our project ideally
@berniko4954
@berniko4954 4 месяца назад
Every state management works
@JozefRemen-pg2ro
@JozefRemen-pg2ro 3 месяца назад
Well the biggest reason to use state management libraries is one - they store the states separately from the app wrapper, so components are rerendered only when THEIR state changes. Problem with useContext etc is that it is a wrapper around and if one single state changes, everything related to that wrapper will rerender too. Which is a huge deal when ie. you have some table with plenty of inner components and data. That means every single cell of that table, every single component (ie button in a row) will rerender just ie. because one state of one button in that table has changed…
@thedelanyo
@thedelanyo 6 месяцев назад
I love how Svelte solves - very simple and intuitive and it's baked in the language.
@kensearle4892
@kensearle4892 Месяц назад
Thank you! This is true. I started with React and chose not to add Redux until I was familair with what React offered first. That way If I decided to upgrade to Redux later I would know why and have a clear understanding of the differences. 3 years later and I have not had a clear case to add Redux yet. I have a middle tier Web API, and a back-end, so the frront-end is not handling everything. Thank you for the explanation.
@damianos2137
@damianos2137 6 месяцев назад
I used only contexts/reducers in my last few projects and it was a best decision I made. For more complex state I use two combined contexts - one for state, one for actions and it works perfect
@Shyam_Mahanta
@Shyam_Mahanta 6 месяцев назад
Re rendering how would you avoid it?
@chinmayghule8272
@chinmayghule8272 6 месяцев назад
Got any code examples?
@tj-softwaresolution
@tj-softwaresolution 6 месяцев назад
So if a webapp has not to many states we can use nextjs but if it has to deal with to many states and state changing (interactions) we should use react?
@nemeziz_prime
@nemeziz_prime 6 месяцев назад
Seems you think NextJS is a state manager. No! In React or any framework, if your state is not too complex, you can use useState to manage state. If you want, you could also use URL based state management. If a considerable amount of state is shared (global), then you should use a State Management library like Zustand or Jotai or Redux
@TheFocusedCoder
@TheFocusedCoder 6 месяцев назад
Managing state client side is usually a bad idea. Great video I like this approach
@maxsturges4630
@maxsturges4630 Месяц назад
Server components, Transtack query, queryParams, atoms, and zustand. Is pretty much the order of what I reach for. I don't use react context anymore because it isn't atomic and causes unnecessary re-renders unless handled carefully with useMemo & memo. There is also a lot less boiler plate code with atoms and zustand. So benefits are atomic and more readable. Zustand: Wins when I have multiple states that are manage with functions that share those states. Feels like a Machine Beats Redux Atoms: Feels better for when you need to share a simple state globally. Works like useState Beats context
@aeronwolfe7072
@aeronwolfe7072 5 часов назад
i have watched this video 3 times now. you're a good d00d k!!! thank you!
@yannmassard3970
@yannmassard3970 8 дней назад
hello, won t that be a security bridge to have your states in your url regarding injections ?
@BGBaDBlo0D
@BGBaDBlo0D 6 месяцев назад
Prop drilling is one problem. The other one is they should rename the "react developer" job position to a more appropriate one - "machine for spread operators". xD And since some state management libraries allow me to actually think of the solution and work properly with the data instead of using spread syntax all over the place I am very happy with them. Redux is not the chosen one ofc.
@dawidm9768
@dawidm9768 6 месяцев назад
What is the name of the app you are using for drawing concepts?
@v.reagan
@v.reagan 6 месяцев назад
Excalidraw
@KueJiin
@KueJiin 2 месяца назад
Why are people disagreeing? I had used a state manager library and I also tried the way he described with the build in context + reducer hook which I still prefer
@AlanGramont
@AlanGramont 4 месяца назад
I agree. I was on a project in 2020 as a contractor that REQUIRED all state to be maintained through Redux. The amount of worthless code I had to write and test was beyond belief. The project was a nightmare to work in. And the worst part about redux is that the state never goes away unless you clean it up. I can see using Context for supply a tree of sub-scomponents within a UI stack a shared state. I can see using TanStack Query for API data since it will destroy itself and can be managed like a little database. But beyond that, I try to avoid state management as much as possible. NextJS makes things a lot easier, of course, but getting large companies with hard policies to allow nextJS can be difficult because they want all their apps to use the same framework.
@webdesignsbytom
@webdesignsbytom 8 дней назад
Id love to see you teach that url trick for state!
@golden_smiles
@golden_smiles 6 месяцев назад
10:57 If the things qualified as a webpage, not as a webapp, you dont need even react or nextjs, that's it. But I agree that a lot of usecases implemented as a specialized hooks/libs, you don't need to implement it from scratch on your favorite state manager.
@losmandev
@losmandev 6 месяцев назад
What website are you using for the diagrams and stuff?
@Grenade034
@Grenade034 5 месяцев назад
excalidraw I suppose
@jacobhuiet4217
@jacobhuiet4217 5 месяцев назад
This follows what I believe as well, though I happen to be in that 1% that’s working on a complex state heavy web application. I will say tools like Tanstack query and redux toolkit (in particular rtkquery) go a long way in reducing the need to worry about state (these libraries let you treat data from endpoints as external state so to speak). Not usually used with nextjs but we aren’t using next
@HumbulaniMunyai-f3e
@HumbulaniMunyai-f3e 6 месяцев назад
Many websites need maintainers. As a good developer, it's important to understand state management. If you're a beginner, I highly recommend learning state management before you get lost in complex projects.
@elvisjackson808
@elvisjackson808 6 месяцев назад
What's that whiteboard you're using?
@paulmouchel3641
@paulmouchel3641 6 месяцев назад
Excalidraw
@v.reagan
@v.reagan 6 месяцев назад
@@paulmouchel3641 Thanks a lot!
@igors.2943
@igors.2943 6 месяцев назад
Context causes rerenders of all wrapped children. It's recommended to use it only for things like user or theme that don't change frequently.
@hurlingeuc7744
@hurlingeuc7744 4 месяца назад
I haven't even watched your video yet and I 100% agree, react standard library for state is brilliant, I'll watch the rest of the video to be even more convinced tomorrow.
@ezwtwrziehag1736
@ezwtwrziehag1736 6 месяцев назад
not true. state managers are life savers. zustand made our project possible
@mathiasriissorensen6994
@mathiasriissorensen6994 6 месяцев назад
I use it too, and would not live without it. :-)
@simpingsyndrome
@simpingsyndrome 6 месяцев назад
For me is React Query
@rayyanabdulwajid7681
@rayyanabdulwajid7681 6 месяцев назад
Wait till another state management tool comes out in 2 years and you're told to migrate to it.
@waiwaitea
@waiwaitea 6 месяцев назад
fact, this video is just clickbait. He is just talking about simple project doesn't need zustand but the title is just so bad
@przemas11
@przemas11 6 месяцев назад
As always the correct answer is "it depends"
@EricSundquistKC
@EricSundquistKC 6 месяцев назад
8:36 "and the nice thing about that is that now you have two different places you can deal with state" 😆😂
@arunjoseph8466
@arunjoseph8466 6 месяцев назад
Absolutely true. I used almost all state managers zustand, redux, recoil, etc. None of them were joy to worl with. Sooner or later i had hit roadblocks and had to do workarounds. Then i started using normal react context with immer. Lot of benefits no boilerplate, directly edit deep states, type safety, potentially even create multiple instances of similar state machines. You really have to try it to understand its benefits. Feels really natural and works like a charm
@VortexMaster98
@VortexMaster98 6 месяцев назад
what is the drawing program hes using in the beginning?
@VortexMaster98
@VortexMaster98 6 месяцев назад
Its called excalidraw for anyone wondering
@prophet_bestman
@prophet_bestman 2 месяца назад
Hey Kyle, what tool are you using to draw all those diagrams you're using to explain?
@AmirLatypov
@AmirLatypov 6 месяцев назад
In fact it’s the opposite. It is easer to start without a state manager, with just react context. But it easier to work with a state manager (I use redux toolkit) later. So much easier, that I’m thinking of replacing existing parts of my app with react context to unify with other parts, and use only redux now.
@drewstevens7153
@drewstevens7153 4 месяца назад
I've had to do that (migrate to Redux) several times with complex apps that contain thousands of components. I think it's really foolish to think that RTK, Zustand etc. serve no purpose. It may be true for toy apps presented on youtube but if/when your app becomes increasingly dense performance can become a real problem (especially on mobile devices, customers with crappy PCs). Tools like Redux let you tackle these problems and provide features like undo/redo etc. It's unfortunate that Redux still gets a bad rap due "but boilerplate!" but it's actually quite elegant these days.
@helleye311
@helleye311 6 месяцев назад
The only things I use state managers for nowadays is auth (if I'm doing it myself, it's much easier to just stick tokens in zustand) and sometimes specific interactions for deeply nested components. Everything else I either do server components for low-interactivity apps, or hook-form + react query + plain old useState for high interactivity. State libraries have their place, but that place is actual global data and not form input or data from an api. I'm very glad we're moving away from redux in the industry.
@jigmelodey4632
@jigmelodey4632 6 месяцев назад
To be honest I feel like we are moving back to PHP world 😢
@egorovsa
@egorovsa 6 месяцев назад
Almost two year ago we completely left out from all state managers like redux mobx so on and now just react context and react-query, it's enough to build any apps you would needed
@antonvoltchok7794
@antonvoltchok7794 6 месяцев назад
I mean I don’t need redux for a small app, but at work we have a gigantic 50+ module app that would be absolute hell to work on without redux or something for state management.
@nemeziz_prime
@nemeziz_prime 6 месяцев назад
Remember, State management is an art. You'll learn by making mistakes! State updates cause re-renders, and therefore poor state management leads to several unnecessary re-renders which causes performance overheads. Zustand, Jotai, etc make state management and state updates much smarter - they only update those components which use the state that has changed. State management doesn't always mean bringing out the big guns in the form of Zustand, etc. Sometimes, a local state variable or a ref variable should be enough. It all boils down to YOUR understanding of the type of state management solution that is required for a given problem...
@owenwexler7214
@owenwexler7214 3 месяца назад
Running in production on NextJS app router since February and now the only thing I use global state management for anymore is turning modals that are shared across components (a navbar and the page) on and off.
@offlercrocgod
@offlercrocgod 6 месяцев назад
It depends on how complex your business logic and application is. I wouldn't dream of not having a store for what I work on. Legend-state is my recommendation as signals make computed/derived data trivial.
@jth4242
@jth4242 3 месяца назад
As soon as I have a form I usually want mobx state management that 1. binds form elements to properties of objects and 2.updates the UI when the properties change from a load operation (for example). I wouldn't know how to do this differently without increasing the boilerplate.
@alejandroangongandara678
@alejandroangongandara678 6 месяцев назад
"Thanks for watching" No man, Thank you for sharing. ❤
@harshrathod50
@harshrathod50 6 месяцев назад
This video is summary of actually my 1 year of experience and in that I learnt all this while working on company projects.
@TannerBarcelos
@TannerBarcelos 6 месяцев назад
Tanstack Query and Zustand are all anyone needs if building a SPA. But always, the project requirements will dictate your decision on tools / technologies you need.
@netssrmrz
@netssrmrz 6 месяцев назад
If the problem is prop drilling then we'd have to blame Reacts, very limiting, hierarchical architecture. Real DOM components are not restricted to only interacting with parent or sibling components. Additionally, I don't feel incurring the additional SSR cost of splitting UI onto another server is acceptable. Even my "simple" sites consist of a client site, a back-office site, and scheduled tasks all of which use a common HTTP API. Do I want to incur the extra effort and dollars of more servers, and UI code tied to a specific framework AND project? No chance!
@vigneshwarrv
@vigneshwarrv 6 месяцев назад
You have my respect brother. I am confused why people are not even talking about the reasons that made us to shift from server side to client side in the first place.
@netssrmrz
@netssrmrz 6 месяцев назад
@@vigneshwarrv Yes that's a really good point. I've often thought this would be a great topic for a video... "Why is this round of SSR better than the last?"
@devrsion
@devrsion 4 месяца назад
One thing you're wrong: you can use some Hooks with React Server Component, like useId, use.
@goliatoco
@goliatoco 3 месяца назад
What kind of software does he use to visualize the state management
@journeyofc6200
@journeyofc6200 4 месяца назад
Some state management libraries are harder to implement then the project itself. If you have ever tried the earlier versions of redux , it was harder to learn then React itself. But I still find it suitable to do state management with much better tools like Recoil.
@cauliflow3r1337
@cauliflow3r1337 6 месяцев назад
i really cant wait to watch your upcoming video on this topic )) cuz its the exact thing that Im struggling with while working on my project
@JakubSK
@JakubSK 4 месяца назад
I'm so annoyed with all of these state managers. We always need to keep things native to the frameworks we are working in.
@halfalligator6518
@halfalligator6518 5 месяцев назад
I'm still yet to figure out why the native Context can't do most of it. With the benefit of being able to tailor it to the patterns and structure of your app. If i need to automate huge areas of an app or project, i'd build my own schema system to generate objects, so why not have my own custom state manager to go along with it? Context is really not complicated. It's just one single step/layer beyond setting up regular component states. I feel sometimes we're so obsessed with standardizing and making things "efficient", then it bloats, backfires and gets less efficient. Even if it it helps a little bit... I still have to consider that having extra knowledge needed in my brain and extra packages still "costs" in other ways. Depending on the project, there can be a long term efficiency when working with vanilla stacks. I'm not a denialist though as I'm so happy with some basic packages. Have to pick your battles!
@ImmoBeeck
@ImmoBeeck 6 месяцев назад
I feel like WDS is delivering quality content but the captions get too clickbait-y.
@airixxxx
@airixxxx 6 месяцев назад
I agree that you shouldn't use a state manager until you need it, (same with every library, pattern, and so on). But they are still needed in the real world, code youtubers always make these absolute statements and all they do is very contrived examples.
@isuke01
@isuke01 4 месяца назад
That's why Vue did it right, their own state manager that just works, is fast, native.
@darrenhwang900
@darrenhwang900 6 месяцев назад
Odd, but it would seem that for anyone to realize that URL can help with state management should be much earlier, and should have happen right after "Global state"(or Lifting State). You don't need your thinking/evolution to go through context stage, reducer stage, reconcilliation stage, meta framework etc. In other words, you don't need next.js to take advantage of URL query parameter.
@snake1625b
@snake1625b 6 месяцев назад
In my company's legacy app we would make queries with Apollo and then stick the entire response in zustand. It was only later we realized that Apollo has it's own cache that behaves like the store. In our rewrite it was our policy to not stick everything in the store
@JohnKnox-q6c
@JohnKnox-q6c Месяц назад
Hot take... Avoiding prop drilling comes down to component composition.... That's literally it. If you need to pass state down two components, just lift the part of your component that needs the state to the parent and there is no longer a problem. Then render the children using {children} in your child component. (or by passing multiple props) You just have to think a bit about your data flow and refactor on the fly if you need more deeply nested components. I've been using react for a long time and I've never had an issue with prop drilling even with very complex state.
@JohnKnox-q6c
@JohnKnox-q6c Месяц назад
Also, signals are a complete stuff up in my opinion. You have no idea where data is going anymore and everything is flying all over the place... Experienced this first hand while working on a collaborative project. There's no encapsualtion and hierarchy anymore, and debugging becomes a total nightmare. Feel free to disagree with me... That's just my experience.
@JohnKnox-q6c
@JohnKnox-q6c Месяц назад
I don't like using more external libraries than I have to, because it's just a matter of time before a dependency becomes deprecated and you have to migrate and break your code. Consider the long term effects of using state management libraries, especially if they aren't well-established.
@vjlkof
@vjlkof 3 месяца назад
I was thinking the same and it's good that somebody with your experience say that.
@munna5553
@munna5553 6 месяцев назад
Please make video on redux complete i have lots of confusion
@VidoviDroga
@VidoviDroga 6 месяцев назад
but what about rerenders... i am having this problem when i update state in any way, everything rerenders and probably in the end will slowdown my app. i have no idea how to do this and where to look for it
@Su-xs1yr
@Su-xs1yr 6 месяцев назад
that's why i hate react vue has a better development experience than react😂
@tamaskosa4456
@tamaskosa4456 3 месяца назад
Be careful when using useContext with useReducer! If you use only one context for the entire app all components using the context will rerender if any part of the data changes. That's a big performance issue. Either split up your context to multiple contexts or use a state management lib.
@Richard.halabi
@Richard.halabi 3 месяца назад
What is the name of this flow draw app ?? Name ??
@cameronosborne7405
@cameronosborne7405 6 месяцев назад
Jotai is extremely helpful especially when you start making derived states based on other observables.
@kylerjohnson988
@kylerjohnson988 6 месяцев назад
What tool are you using to draw these diagrams? It looks like something I need in my dev life STAT. 3:03
@Upsided
@Upsided 6 месяцев назад
It's called excalidraw!
@kylerjohnson988
@kylerjohnson988 6 месяцев назад
@@Upsided thanks!
@claystation6360
@claystation6360 6 месяцев назад
All we need for our enterprise app is jotai. Screw redux type libraries. Screw nesting context providers. Derivative atoms are so clutch
@othersidesss1
@othersidesss1 6 месяцев назад
Waiting for Ecommerce Project Video
@luc.kasnix
@luc.kasnix 6 месяцев назад
Context API re-renders components more than necessary. Zustand is much better!
@luc.kasnix
@luc.kasnix 6 месяцев назад
Prop-drilling is not the main problem solved by libraries like Zustand. Zustand improves performance!
@Joonpark-w4l
@Joonpark-w4l 6 месяцев назад
Agree here, but some ppl say it doesn't problem re-rendering bunch of compinents now days
@HartleySan
@HartleySan 4 месяца назад
Cool! So React has finally figured out what PHP has been doing since the '90s. Great!
@digitaldevigner4080
@digitaldevigner4080 6 месяцев назад
This also helps for deep links and smart links that are url based. If you want to pass a user from a web app to a mobile app you have to do via url.
@江子玮
@江子玮 6 месяцев назад
Thanks for your share, what’s the app you are drawing?
@georginreji1945
@georginreji1945 6 месяцев назад
Excalidraw
@oerbyy
@oerbyy 5 месяцев назад
Plus to the question!!!!!!!!!!! Please share!! 🙏
@abderrahmanebenchalel541
@abderrahmanebenchalel541 6 месяцев назад
I think it depends on the project requirements, so some times we need client state more, some times we need server state more.
@tombrauey
@tombrauey 6 месяцев назад
Absolutely - especially if you only can use client libraries, because your code is executed in context of a bigger application. In my instance, I develop line of business apps on top of SharePoint and there is no easy way to include a server part to the application, because everything runs on the client.
@DrsHWolfenstein
@DrsHWolfenstein 6 месяцев назад
I wouldn't touch React without MobX.
@vetrivendhan6122
@vetrivendhan6122 6 месяцев назад
We must deprecate Redux and use Tanstack query instead. Use Jotai's atoms if required. And it is not advisable to maintain our business logics in the Redux reducers Or in any feature that Redux holds. Instead we can move business logics in separate hooks. Data logics and business logics should not be mixed according to the functional programming. Peace out ❤
@WaliaIbex
@WaliaIbex 6 месяцев назад
React feels obsolete when it comes to state management .
@maryamahmedseager142
@maryamahmedseager142 6 месяцев назад
THIS is the video I've been looking for! Thank you so much for sharing the latest features in React that remove the need for state management libraries. I'm building a social media website (similar to twitter), based on your video this would be a good use case for state management libraries like Redux? Appreciate any feedback (btw just subscribed)🙏
@astrahcat1212
@astrahcat1212 2 месяца назад
At 2:00 you're explaining why inheritance isn't always a good thing.
@jNayden
@jNayden 5 месяцев назад
hey man what software are u using for drawing this diagrams ?
@Grenade034
@Grenade034 5 месяцев назад
excalidraw
@dt8384
@dt8384 4 месяца назад
Sounds like we are making out way back to 2008 PHP
@Rebel101
@Rebel101 4 месяца назад
What whiteboard tool are you using?
Далее
How To Debug React Apps Like A Senior Developer
21:07
Просмотров 141 тыс.
«По каверочку» х МУЗЛОФТ❤️
00:21
New JS Framework Just Dropped (Next.js Killer??)
30:50
Why Signals Are Better Than React Hooks
16:30
Просмотров 477 тыс.
10 React Antipatterns to Avoid - Code This, Not That!
8:55
You might not need useEffect() ...
21:45
Просмотров 161 тыс.
React Server Components Change Everything
15:48
Просмотров 200 тыс.
Web Developer Roadmap (2024) - Everything is Changing
25:02