State Management in React | Context API useContext | React Tutorials for Beginners

  Рет қаралды 45,702

Dave Gray

Dave Gray

Күн бұрын

Пікірлер: 81
@DaveGrayTeachesCode
@DaveGrayTeachesCode 3 жыл бұрын
In this tutorial, we learn how to stop drilling props down through components and instead we utilize the Context API and the useContext hook to pull the data we need directly into each component. if you are just starting out with React or seeing this tutorial first, you may want to start at the beginning of the Learn React tutorial series here: kzfaq.info/sun/PL0Zuz27SZ-6PrE9srvEn8nbhOOyxnWXfp
@anknara1381
@anknara1381 2 жыл бұрын
You are a genius
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
@@anknara1381 You are too kind. Thank you 🙏
@stevenbehm1
@stevenbehm1 2 жыл бұрын
Hi Dave, I have really appreciated your React tutorial and feel as though I have learned a lot from you. I am working on the context API video and it is 2022 post react router v6 release. I am having some trouble with understanding how to incorporate the context api correctly now that we have a different file setup when using Layout.js. Do you have any video/code that shows how you can use the context API with the newer version of react router while creating the blog app?
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
@@stevenbehm1 yes, search my channel for React Router and you will find the update for RRv6 which uses this same project 🚀
@ikurbano
@ikurbano 2 жыл бұрын
I am so glad I found your react tutorials. You have an educator's gift. Everything is so clear so, there is no missing points throught out the video, at all; it all feels like a smooth stream of knowledge coming from you. Thank you very much! You make this world a better place!
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Thank you for the kind words! 🙏🙏
@bfmcoding4485
@bfmcoding4485 2 жыл бұрын
On some other tutorials I always doubt about put every state to global state. Finally I found this tutorial who only put component state to global state if their really needed to be stored in global state. thanks Dave
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
You're welcome! 💯
@TheLucidWay
@TheLucidWay 2 жыл бұрын
This tutorial was incredibly helpful. I like how you built up the context, but then broke it down to only shared data and created local state for the other components. I'm learning a lot from your channel. Thanks, man.
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
You're welcome! I'm glad it helped 💯
@kitchenchem141
@kitchenchem141 Жыл бұрын
Thank you thank you for these tutorials. I am new to web development and sat for days struggling with with errors in a never ending loop between my app and the react docs. Your videos helped me get up to speed so much more quickly thank I would've if left to my own methods.
@JimmyCheng
@JimmyCheng 2 жыл бұрын
Awesome contents Dave, really enjoyed this video. The way you presented it is far better than most other KZfaqrs out there who simply give you the optimal solution right away and copy and paste from a pre-written script top down. Here we get to see the whole "evolving" process, which helps our understanding of the whole topic much much more. Good Job!
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Thank you, Jimmy! 💯
@Drakan21
@Drakan21 2 жыл бұрын
Simple trick for using contextual data for those interested, and avoiding the pesky problem of property references: ex. in the Home component, when destructuring the DataContext, use object property renaming to avoid having to scrub through the component itself and rename references to the original functional property "posts" by destructuring as follows: _const { searchResults: posts, fetchError, isLoading } = useContext(DataContext);_ This way, anywhere "posts" was referenced in the component, it will still work just as before! :D
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Great helpful share - thanks! 💯
@bensjostrom1185
@bensjostrom1185 Жыл бұрын
Great content, Dave. This react series is the fantastic. useContext is my favorite new hook!
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
Thank you!
@andrewclarke6916
@andrewclarke6916 3 жыл бұрын
Yay! You refactored thanks to the Context api. I was getting really worried at how bloated that App.js file was becoming because of only using props.
@DaveGrayTeachesCode
@DaveGrayTeachesCode 3 жыл бұрын
Absolutely! Prop drilling is a great way for beginners to start but we've discovered the context API is better 💯🚀
@ahmad-murery
@ahmad-murery 3 жыл бұрын
Refactoring is the most cool thing in development (I think) where sometimes you change a lot of your code (for better) without affecting UI, unfortunately it might be underestimated from a client point of view as it seems as nothing have been changed to them, Thanks Dave,
@DaveGrayTeachesCode
@DaveGrayTeachesCode 3 жыл бұрын
Spot on, my friend. If it works, they typically want you to move on. Best to refactor before telling anyone it works! 😂 Thanks for comment Ahmad. 🙏
@ahmad-murery
@ahmad-murery 3 жыл бұрын
​@@DaveGrayTeachesCode Looks good😁 , but now I need to find an excuse for the delay in delivery 🤔 Thanks for the great content Dave,
@ellydiallo1674
@ellydiallo1674 2 жыл бұрын
This help me so much.. i had to display multer for pictures but's quit the same way exept few details..Anyway you're an hero.
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Glad it helped! 💯
@fkbey5756
@fkbey5756 2 жыл бұрын
thank you for your clear english and great tutorial.
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
You're welcome 🙏
@MH-di4jb
@MH-di4jb 2 жыл бұрын
This is well explained for me, and absolutely great helpful to my learning....Thank You👍
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
You're welcome!
@user-fx3ou2jh9k
@user-fx3ou2jh9k Жыл бұрын
This video was very helpful. Thanks for sharing!
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
Glad to hear it helped!
@Pareshbpatel
@Pareshbpatel 10 ай бұрын
Refactoring code to take advantage of Context API and the useContext hook, so clearly explained. Thank you, Dave {2022-03-22}, {2023-11-03}
@wealthiduwe5831
@wealthiduwe5831 3 жыл бұрын
Great content, thanks Dave
@DaveGrayTeachesCode
@DaveGrayTeachesCode 3 жыл бұрын
You're welcome! Thank you for watching 💯🙏
@Sean-hd1bp
@Sean-hd1bp 2 жыл бұрын
You are an amazing teacher
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
I appreciate the kind words. Thank you! 🙏
@bjornhellgate3985
@bjornhellgate3985 7 ай бұрын
Hey Dave, is there any reason to not put api, format, and useNavigate (formally useHistory) through the datacontext instead of importing them in every component?
@designcoded7585
@designcoded7585 3 жыл бұрын
sir your efforts are highly appreciateable please do do the series with non project format explain the hooks concept with little codes so the beginners can understand quickly i noticed you are doing in project format actually it seems to be like call back hell in beginners perspective , i really spent 1 hrs 30 minus only for learning hooks concepts , your single video itself more than 30 minutes , any how really thanks for making video , by the way its just a giid critic to make your content good , you can explain hooks fastly clearly with small codes than these type of project , so later you can make project series based on them
@DaveGrayTeachesCode
@DaveGrayTeachesCode 3 жыл бұрын
Thanks for your feedback. I may eventually make short videos on hooks as you are suggesting. I'm nearing the end of this series now so I will complete it first. Thanks for watching! 🙂🚀
@designcoded7585
@designcoded7585 3 жыл бұрын
@@DaveGrayTeachesCode thanks sir you are doing a great job
@thejeffkershner
@thejeffkershner 2 жыл бұрын
Great tutorial. I subscribed. Thanks!
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
You're welcome, Jeff! 🙏
@thejeffkershner
@thejeffkershner 2 жыл бұрын
@@DaveGrayTeachesCode do you have a video on how to create a way to call APIs?
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
@@thejeffkershner yes, I do. In this React series, I have lessons on using Fetch and later on in the series, Axios. I do recommend learning Fetch in Vanilla JS first with this tutorial: kzfaq.info/get/bejne/jNOBacd529SveYE.html
@oussemabouyahia474
@oussemabouyahia474 Жыл бұрын
please if i clearly understood useContext can replace passing props down and clean our code ? also with this method , do we will not need lifting up the state anymore? other than that really perfect content especially how you play between componenets and props , it is a good method to manage our app with confidence and expertise
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
It sounds like you are understanding it. If you create state for just one component, it is ok to keep using useState in that component. If you need to share state between components, useContext helps.
@raypenha2572
@raypenha2572 2 жыл бұрын
Great video!
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Thanks!
@maayancohen8518
@maayancohen8518 3 жыл бұрын
thank you so much!
@DaveGrayTeachesCode
@DaveGrayTeachesCode 3 жыл бұрын
You're welcome! 💯🙏
@ivanfrey6323
@ivanfrey6323 2 жыл бұрын
I think I was unsure about how the DataContext and DataProvider talk to each other or are connected. But I believe it's like this: So we create the DataContext by simply saying: 'DataContext = createContext({})'; Then we create our data provider by saying: 'export const DataProvider = ({children}) => { .........., } But I think what went over my head or what you did not explicitly mention is this: Inside of the DataProvider function we return, and by returning the DataContext inside of this function (DataProvider), DataContext knows that the .Provider is the DataProvider function ( {children} ) So does React know that the function that contains the DataContext, in this case the DataProvider function, is the .Provider property that we declared above? Let me know if that makes sense.
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Each context we create has it's own provider property. We can have more than one context per app if we want. Likewise, we can use the provider to provide the context to all of the app (as you see in this example) or maybe just part of an app. For example, an account settings context may provide data that is only needed in a specific part of the app. {children} references all components inside the provider. We wrap the provider around the part of the app we want to provide the context to. You see this in the App.js for this example. I hope this helps. 💯
@ivanfrey6323
@ivanfrey6323 2 жыл бұрын
@@DaveGrayTeachesCode That makes sense David, thanks for the reply. But as confirmation, the function that returns the context is the function that will be the .Provider correct? Like in the code below, DataContext is returned inside of DataProvider, therefore DataContext knows that it's .Provider is the DataProvider function? const DataContext = createContext({}); export const DataProvider = ({children}) => { const [posts, setPosts] = useState([]); const [search, setSearch] = useState(''); const [searchResults, setSearchResults] = useState([]); const [postTitle, setPostTitle] = useState(''); const [editTitle, setEditTitle] = useState(''); const [postBody, setPostBody] = useState(''); const [editBody, setEditBody] = useState(''); const navigate = useNavigate(); const {width} = useWindowSize(); return ( {children} ) }
@nakllantada1166
@nakllantada1166 2 жыл бұрын
Thank you!!!
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
You're welcome!
@elinordeniz
@elinordeniz Жыл бұрын
Hi Dave, I have a question. What if we have a button once its clicked buttonClicked() function runs and it uses the "data" variable from useAxiosFetch hook. Its placed in DataContext.js file right below useAxiosFetch hook. Once the button is clicked just before data is set in the axios hook, it gives error because data variable is empty. Even the buttonClicked() function is async I cannot find a way to await data from axios hook. Even I make them all async await in the function, it didnt work. I even use useReducer in the hook for data await, and we cannot make custom hooks async await. How can I fix this? Thanks
@sonamohialdin3376
@sonamohialdin3376 2 жыл бұрын
So good tutorial
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Thank you, Sona! 🙏
@hamzalaabidi9448
@hamzalaabidi9448 Жыл бұрын
🎉🎉🎉🎉 magnificent
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
Thank you!
@hadibohluli5207
@hadibohluli5207 Жыл бұрын
Hi Dave ,I have a problem with useContext , React context loses the data in component on refresh page manually , I get data from Api and store with useReducer hook , when i click to see product info page it shows the data but when i refresh it does not get data from context . component gets id of product using useParam hook but not product data from context, and this happens only when go to info page of product not with other component, what do you suggest,Thank you for your great videos
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
React apps are SPAs = single page applications. When you reload / refresh, you are restarting the application. A reload / refresh erases the current state of your application. We use React Router to simulate navigating to different pages on the web while maintaining the app state.
@hadibohluli5207
@hadibohluli5207 Жыл бұрын
@@DaveGrayTeachesCode thank you for help, for solving this should we send some of data through props? i just need a tip to go and study about it
@somebody-17546
@somebody-17546 2 жыл бұрын
Can you make typescript course with reactjs
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
I do plan to cover Typescript in the near future 💯🚀
@victor_h9925
@victor_h9925 3 жыл бұрын
Hi Dave, really appriciate the videos. But what is really the advantage of using this? :D Thanks.
@DaveGrayTeachesCode
@DaveGrayTeachesCode 3 жыл бұрын
It helps you avoid drilling props through multiple components. This can become cumbersome especially when the intermediate components do not need the props that are being drilled.
@victor_h9925
@victor_h9925 3 жыл бұрын
@@DaveGrayTeachesCode Thank you for the clear explanation as always Dave 😀
@harag9
@harag9 Жыл бұрын
Great tutorial. Looking forward to more. Do you have any tutorials on "Testing". I've recently been moved to a react project at work (and know nothing about react, hence the tutorials). However I notice a load of files with the name "xxxx.test.jsx" in them and then lines like describe("Home Page", ()=>{ it("should do x", ()=> { render (...); expect(x).toHaveTextContent("...."). Any tutorials on what I'm suppose to do with these?
@DaveGrayTeachesCode
@DaveGrayTeachesCode Жыл бұрын
I do not, but testing is one topic I want to cover yet this year.
@harag9
@harag9 Жыл бұрын
@@DaveGrayTeachesCode :( Would love to see those when you do them, You have a great way of teaching and easy to follow. Thanks for all so far.
@rangabharath4253
@rangabharath4253 3 жыл бұрын
Awesome
@DaveGrayTeachesCode
@DaveGrayTeachesCode 3 жыл бұрын
Thank you! 🙏😀
@ChristianPrince-1
@ChristianPrince-1 2 жыл бұрын
bro igot this error how do i solve it? Legacy context API has been detected within a strict-mode tree. The old API will be supported in all 16.x releases, but applications using it should migrate to the new version. Please update the following components: RevealBase
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 жыл бұрын
Hmm, I haven't seen that and don't think I was using RevealBase in this tutorial - but a dependency may be. Sounds like you could either not use strict-mode or update the component they suggest you update.
@franalcaraz1676
@franalcaraz1676 8 ай бұрын
As Radiohead song says, Everything In Its Right Place ;)
@Haydarnt8
@Haydarnt8 Жыл бұрын
وردة
@quasi_verum
@quasi_verum Жыл бұрын
Refactoring one tedious work in programming.
@aservantofjesuschrist6911
@aservantofjesuschrist6911 Ай бұрын
For what shall it profit a man, if he shall gain the whole world, and lose his own soul? Or what shall a man give in exchange for his soul? Whosoever believeth in Jesus Christ should not perish, but have everlasting life.
@adarshrathi8265
@adarshrathi8265 Жыл бұрын
you teaching method is soo hard , too much complicated you are excellent , not good teaching way {you made redux toolkit project in next js}
Mastering React Context: Do you NEED a state manager?
37:26
Jack Herrington
Рет қаралды 98 М.
Matching Picture Challenge with Alfredo Larin's family! 👍
00:37
BigSchool
Рет қаралды 49 МЛН
7 Days Stranded In A Cave
17:59
MrBeast
Рет қаралды 97 МЛН
Nurse's Mission: Bringing Joy to Young Lives #shorts
00:17
Fabiosa Stories
Рет қаралды 6 МЛН
Context API in react | get the concept
29:00
Hitesh Choudhary
Рет қаралды 54 М.
Making React Context FAST!
33:34
Jack Herrington
Рет қаралды 87 М.
React useContext() hook introduction 🧗‍♂️
11:37
Bro Code
Рет қаралды 26 М.
Learn React Hooks: useContext - Simply Explained!
15:46
Cosden Solutions
Рет қаралды 155 М.
Mastering React Context 2023: The Complete Guide!
24:37
Josh tried coding
Рет қаралды 14 М.
Top 6 React Hook Mistakes Beginners Make
21:18
Web Dev Simplified
Рет қаралды 570 М.
Build a dark mode light mode in reactjs with context api
29:20
Hitesh Choudhary
Рет қаралды 26 М.
🌈 16 - React Context API - What is Context - The useContext Hook
32:09
tapaScript by Tapas Adhikary
Рет қаралды 4,3 М.
iPhone 15 Plus на Изгибе
0:59
Sergey Delaisy
Рет қаралды 236 М.
Yanlışlıkla Telefonumu Parçaladım!😱
0:18
Safak Novruz
Рет қаралды 7 МЛН
Data recovery from MicroSD using PC3000 Flash & Spider Board 😎
1:01
Как правильно светить смартфоном?
0:18
Люди.Идеи, общественная организация
Рет қаралды 589 М.