Wow! You nailed it. Great tutorial. I liked it. Saved it. Subscribed to the channel.
@deathdefier4511 ай бұрын
Clean to the point explanation, thank you for helping me visualise the data changes so clearly, great tutorial!
@elsplatto Жыл бұрын
And with 30 minutes of my time I now have a context wrapped around my tricky filter UI and wiped out half the JS in that component. Many thanks.
@Weibenfalk Жыл бұрын
wonderful!
@fatinfuyad281610 ай бұрын
Very important video. I was looking for context with tsx
@biLLie_wiLLie2 жыл бұрын
19:05 with cmd + D it's faster to achieve) Thank you for lesson
@PattySpicy2 жыл бұрын
Amazing example ! Thanks very much ! I have implement this to my context and it work nicely!
@starlodroid2778 Жыл бұрын
Man you helped me very much!Thanks
@polioann Жыл бұрын
u answered all my questions!
@АндрейЯландаев2 ай бұрын
Мужик! Ты лучший!
@ziedmoharram70202 жыл бұрын
thanks for the video, very usefull !
@dananjayachathuranga7113 Жыл бұрын
finally found a clear video
@kemcadams7210 Жыл бұрын
how do you mock this hook for jest testing?
@aidarousjibril63232 жыл бұрын
Hej Thomas, lärorik video, har du någon video som du går genom lite djupt på hur man skickar State mellan olika component på en nested state data i ReactJS och TypeScript?
@Weibenfalk2 жыл бұрын
Hej ... hmmm .. vet inte riktigt hur du menar. State skickar man aldrig utan man skickar data via props till komponenterna. Annars är det context man kör med och då kan man accessa statet vartsomhelst i appen.
@aidarousjibril63232 жыл бұрын
@@Weibenfalk Jo jag vet, det jag vill göra är, jag har tre comp, Home.tsx där jag fetchar en lokal nested json fil sedan definierar interfaces för dessa nested data, efter jag gör map på datan och skickat en del över till GameList.tsx, samtidigt skickar jag en del av state över till Search.tsx som filtrering på game titel sker, sedan vill jag sätta den filtrerade data på State och skickar tillbaka till Home.tsx som är Parent comp, men jag får en Typescript error mer specifikt STATE
@avneet122842 жыл бұрын
Great video but a lot of this is confusing to me. In the first case where there's no useEffect I couldn't understand why the useMemo in the context did the trick. After all, if the button is pressed then a new object should be generated despite the useMemo because the state has changed and the useMemo dependency array has this element. Yet, the Laser component didn't re-render. Any idea about the reason?
@Weibenfalk2 жыл бұрын
It’s the first context that changes value. Not the second one. That’s why it’s the same object when it’s memoized