Тёмный

React with TypeScript Crash Course 

Laith Academy
Подписаться 75 тыс.
Просмотров 239 тыс.
50% 1

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

 

7 сен 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 268   
@devjay2288
@devjay2288 3 года назад
This is by far the best lesson on react with typescript out there. It's straight to the point with real world use cases and great explanation.
@laithacademy
@laithacademy 3 года назад
Thanks Giannis! When it comes to the Heat, you're straight to the point as well
@devjay2288
@devjay2288 3 года назад
@@laithacademy NBA Finals, here we come. 🦌 FearTheDeer
@danielgaliziani2401
@danielgaliziani2401 3 года назад
Exactly!!!!!!!
@rabindrapatra7151
@rabindrapatra7151 Год назад
see codevolution once
@drozdekPty
@drozdekPty 2 года назад
Have been working as Developer since 15years and have seen thousands of various videos. This is definitely one of the best ones have seen so far. Explained thoroughly with ease. Thank you
@jeremyh9841
@jeremyh9841 2 года назад
When you setPeople and want to add an element to the array, you can change the previous state with setPeople(prevState => [...prevState, newPeople]) instead of taking the variable ...people. I think its more safe.
@randomcell708
@randomcell708 3 года назад
Best introduction tutorial for using TS with React I've found. Would be great to have a part 2 that develops this app and teaches slightly more advanced TS with React features
@guilhermefonseca3067
@guilhermefonseca3067 2 года назад
Agreed, bring on the 2022 React.TS part two
@PovilasCiplis
@PovilasCiplis 3 года назад
This guy is 0.01% of the users/creators on youtube who actually deserve to be subscribed on. Normally I never subscribe even when being asked to. You sir are so much better than other 99% in this category.
@KeKuHauPiOx
@KeKuHauPiOx Год назад
I'm currently in a bootcamp for frontend JS. We just completed React but I was really lost. This was the most concise react video I have ever seen
@erdemoz2187
@erdemoz2187 7 месяцев назад
One of the best React Typescript tutorials! Very clear, detailed and well articulated explanations. Thank you!
@LyonLoi
@LyonLoi 3 года назад
This tutorial is actually amazing. My suggestion is going through this tutorial 2 times. For the first time, just follow exactly to make the same app. The second time, make your own app.
@henriquekutner6724
@henriquekutner6724 3 года назад
This is the best lesson I found on youtube about react with typescript. Thank you.
@kcapt96
@kcapt96 2 года назад
15 minute in and I can tell this is the only React TS crash course you need.
@programmed509
@programmed509 3 года назад
You deserve much more recognition because I have seen very rare youtubers who explain the concepts like the way you do... I've made my colleagues subscribe to your channel because I think it's really worth it!! Keep up the good work
@onkar9155
@onkar9155 2 года назад
i work as a software developer , i would say its the best course to learn real use cases and the explanation is exact also better than other courses
@Spectre4300s
@Spectre4300s 2 года назад
Good crash course! One suggestion, when updating the people state in the AddToList component you should use the updater function version of setPeople, so that you do not need to pass people down to AddToList and this will also ensure your state updates as expected since you are updating state based on previous state value and setUpdate calls are async.
@hndk2721
@hndk2721 Год назад
I'm struggled to use TypeScript in Vanilla JavaScript and now I have to use it in my React app, but I've found this video and bruh you explained this very well. Now, I can use TypeScript in my project without confusing the type! Thank you!
@huynhtriet444
@huynhtriet444 2 года назад
This video is geared towards more for people who are already familiar with React and TypeScript already so keep in mind before watching. Otherwise, great video! After watching, I know how to implement TypeScript in React right away.
@adnanjpg
@adnanjpg 2 года назад
This is actually a great crash course for people coming from other frontend frameworks. Personally I am a flutter developer and I know a thing or two about react, this course gave me a push to be able to understand starter projects and learn from them. thank you for the great efforts
@bpglockmaster793
@bpglockmaster793 3 года назад
I did not program since 2012 and got here the lesson that i needed to start, thank you very much
@anangyoga1381
@anangyoga1381 2 года назад
stumbled upon this video and then check other videos and realize that this is like gold mine for newbie programmer like me!
@matthewvaccaro8877
@matthewvaccaro8877 3 года назад
Allergic to staying on the same team HAAA! Amazing
@wmarple
@wmarple Год назад
This is such a great crash course on React and TS. Laith nailed the objective. I gleaned in an hour enough knowledge to dig into an inherited project using React and TS and get moving.
@AndrewMycol
@AndrewMycol Год назад
Before watching this tutorial, i never really understood why someone would want to use it over Javascript since it involves using types and Javascript is more forgiving. After watching this tutorial, not only did I get to see more React being used, which I am still just now 3-days into my React learning journey, this tutorial was very clear about why Typescript can be useful, and why TypeScript probably is the route to go, since it can catch mistakes that Javascript can't. Very well done!
@a2m2tkyo
@a2m2tkyo 3 года назад
I added a delete functionality with this too by adding a delete button in the List component and creating an onClick that would pass in the person.name into a function that would search for the indexOf the object that has that person.name. Then array splice based on that position and thus that list item is deleted. You would have to add the same interface with people and setPeople as you added in AddToList to accomplish this.
@warisulimam3440
@warisulimam3440 2 года назад
One of the best crash courses I've ever watched. The quality of the content is way higher than just one like can appreciate for. I would say each of the sections deserves a like, but alas, youtube. Earned a new subscriber! : D
@zerdnelemo
@zerdnelemo 2 года назад
One thing I use to do is to define the interface inside each component file, then export it, so I can import it from the parent component and use to prepare the data that I will pass back to the child component. That way I don't need to repeat myself with that already defined interface.
@marcocorapi5333
@marcocorapi5333 2 года назад
Do you mean you create it once, for instance in the App and then export it on the files needed? or you make a separate file with all the interfaces?
@zerdnelemo
@zerdnelemo 2 года назад
@@marcocorapi5333 No, actually each component will have their own interface defined in the same file. Then I just export the interface and when I need to use that component somewhere in the code i do `import MyComponent, { MyComponentProps } from 'components/MyComponent.jsx'` Here MyComponentProps is the interface for this component. If you have a big app it can become messy to have all the interfaces in just one file. Interfaces inside of each componente make more sense to me.
@hsbrathen1
@hsbrathen1 3 года назад
Probably the best TS tutorial I've come across
@aidarousjibril6323
@aidarousjibril6323 Год назад
Laith you are the best really, the way you explaining is incredible
@ldpuri
@ldpuri 2 года назад
Thank you for putting this together! Watched dozens of videos on Typescript and this one that finally clicked for me. The use cases that apply to React were exactly what I needed.
@maxagliunin566
@maxagliunin566 2 года назад
Extremely useful! I found an issue in CSS. Css flex-box should be in a .List-header not in a .List. Example below: .List { list-style: none; align-items: center; width: 50rem; margin: 0rem auto; border: 0.1rem solid rgba(0, 0, 0, 0.233); padding: 1rem; } .List-header { display: flex; align-items: center; width: 100%; justify-content: space-between; }
@muhammadfaizan5969
@muhammadfaizan5969 2 года назад
Thank You, this was just what I needed to understand TS with React
@jennifermagpantay7933
@jennifermagpantay7933 3 года назад
One of the best crash courses I have seen so far! Great explanation and valuable tips to figure out the correct types to add to elements! I have suffered to add the correct types to events, but now I know what to do hahah Thanks for sharing : ))
@Pareshbpatel
@Pareshbpatel 2 года назад
Your Typescript Tutorial has inspired to take the leap and learn Typescript. Thanks. {2022-09-02}
@judyl6325
@judyl6325 3 года назад
Great tutorial for React with Typescript! I was really struggling with learning React and Typescript separately so it was super useful to see them implemented together like this, thank you so much!
@erickbravo5800
@erickbravo5800 3 года назад
Holy shit. thank you. Better typescript React tutorial than all the other prominent youtube programmers out there. I can name all the others but I wont do it lol
@0xDevelopers
@0xDevelopers 3 года назад
Wow! Best tutorial ever! I got all missing pieces together with this one video. Keep educating !
@akj3344
@akj3344 Год назад
39:49 Instead of 2 returns, we can convert curly bracket into round bracket, which implies return without having to write the word 'return'. const renderList = ():JSX.Element[] => { return people.map(person => ( {person.name} {person.age} years old {person.note} )) }
@henrycodingstack6952
@henrycodingstack6952 2 года назад
I have found a new react god, love your tutorials man thanks for this clean lecture.
@spazzoidrat
@spazzoidrat 3 года назад
This is insanely great tutorial on typescript. Thanks. Keep it up!
@romimaximus
@romimaximus 3 года назад
This Typescript is pain !! it takes forever to build a simple app, and imagine buiding a Big e-comerce, and try remember all this, while building a complex "redux state", functions, actions, cart, locastorage, log in and log out, api requests calls and..etc...but your tutorial is very well clear and awesome explained thank you very much 😎👍
@johnherrera5913
@johnherrera5913 2 года назад
Master! One of the best tutorials I have ever watched. Thank you Laith
@carlosmacias8075
@carlosmacias8075 2 года назад
This was great. I already had some very basic knowledge on how typescript works with React with interfaces, defining types and all that, but I was always having a hard time guessing the types to declare each thing for what it was and your process helped a lot. Thank you
@arnoczkyzoltan6158
@arnoczkyzoltan6158 Год назад
Thanks the tutorial! About the parseInt: without the radix argument is dangerous.
@brunoandradebr
@brunoandradebr 2 года назад
39:00 You could do like this for a cleaner sintax : // ( instead of { means you want to return anything after ( without the need of reserved "return" word. people.map((person) => ( {person} ))
@Arabian_Abomination
@Arabian_Abomination 2 года назад
Thanks Laith, i just started learning Typescript and I am loving it since I come from an OOP language like Java initially. JS + Types is amazing!
@ibnulferdous2349
@ibnulferdous2349 2 года назад
This video explains the concept and the code. Great tutorial. Thanks Laith for teaching us.
@mohammedsaber6782
@mohammedsaber6782 3 года назад
Very good tutorial, it's one the best I've ever seen. it's comprehensive and right to the point
@jadedar6894
@jadedar6894 2 года назад
I would be gladly recommend this tutorial and says don't forget to subscribe for respect. Awesome TS tutorial :)
@marufahmed7314
@marufahmed7314 3 года назад
Thank you. Recently i was learning TS and planing to use with React. Your video is help me to understand many things.
@arjobansingh1940
@arjobansingh1940 2 года назад
The typescript related stuff was really good. But as you have made this video for people who already knew react. So why not try to use best practices of react where ever possible. 1) example when we want to set new state and also need previous state, you could have used functional approach in setting state(Recommended by React itself) Basically passing callback to setState function whose return value would be new state, and that callback will get previous state as first paramter. So in AddTodoList component, we do not even need people as prop, just setPeople will do the work. We could just do the following: setPeople((prevPeopleState) => […prevPeopleState, newPersonObj]; Here newPersonObj would be the new object of name, age, img and note values. And here I am passing a callback to setPeople whose return value of newArray would be new state of people. And as shown in code this callback eill get previous people state as first parameter. And React recommends this way, this prevent race conditions and helpful in many more cases. Refer React docs for more info. 2) we should always pass key to elements/components when ever we want to render list of elements/components
@danielgaliziani2401
@danielgaliziani2401 3 года назад
What a great crash class!!!! finally someone who can deliver!!!! well done mate
@tonypeirson6282
@tonypeirson6282 3 года назад
Don’t be offended when Kobe Bryant doesn’t turn up for your party....
@bakedbrotatoes
@bakedbrotatoes 2 года назад
“You see, we can basically actually essentially do this, essentially actually basically”
@jahelsantiago
@jahelsantiago 3 года назад
Hey, i ve just discovered your channel and you have a lot of potential, I am a new subscriber and I will recommend this channel with my friends
@soumyajitdey5720
@soumyajitdey5720 3 года назад
Very crisp and to the point video!! Great content Laith!
@AnilThakur-wc1rd
@AnilThakur-wc1rd Год назад
Thanks for sharing your knowledge. A very good lesson, and highly recommended. Great work.
@EmilYOo0
@EmilYOo0 3 года назад
this is essentially a very good actually intro to typescript with react (essentially)
@dainsleif3122
@dainsleif3122 3 года назад
The reason why you got the error in the age, is because you stated in the state that age should be a string , ... useState({... age: "" } when spesified as a type in the input field as a number, it is a number, not a string.
@ManojKarmocha
@ManojKarmocha 3 года назад
Terrific starter course and a terrific tutor with full of awesomeness
@Dharmachinta1986
@Dharmachinta1986 2 года назад
I love it , This is by far the amazing lesson on react with typescript out there.
@mmacuts7527
@mmacuts7527 3 года назад
Thank you so much. This tutorial is so straight to the point. Exactly what I needed to start building react apps in typescript
@mikezcooler
@mikezcooler 2 года назад
A great and to the point pragmatic introduction. Nice one. Thanks.
@papa_ethan
@papa_ethan 2 года назад
Its simpler to put a basic Person interface then make it an array of Person as People.
@samueldebeer2306
@samueldebeer2306 2 года назад
Was looking for this comment. Very much agree
@codeWithMeEasy
@codeWithMeEasy Год назад
Great can we expect more videos on React-Typescript applications
@dunyan1586
@dunyan1586 Год назад
A tip right here hehe: break the course only into short sections like @netninja, and have separate branches for each video
@albinoiiicordova4811
@albinoiiicordova4811 3 года назад
Thank you for this tutorial! Very practical and everything is explained in detail.
@tekk7989
@tekk7989 3 года назад
Easy to understand bc of the simple example and clear explanation!
@Bekstou
@Bekstou 2 года назад
Nice man, really struggling with React and Typescript. This makes it clearer, next step to try and apply these concepts myself. Cheers!
@Nocturnal321
@Nocturnal321 3 года назад
Thanks for the tutorial. It helped a lot. However, in my opinion it would be better, if the AddToList component doesn’t know anything about the application. This will result in a very inflexible and hard to understand architecture. AddToList could instead simply provide a callback, which is invoked with the new person information whenever a new person is supposed to be added. Some higher-level component, which knows more about the application, can then implement this callback. Of course I understand, that this was just an example, but I’m afraid that my junior developers will copy this code and I will have to pull this mess apart.
@dernyt-tpe
@dernyt-tpe 3 года назад
Thank You, this practical implementation tutorial is the best to understand TypeScript and React. Subscribed 👍
@pankarton5950
@pankarton5950 Год назад
Great video!! But one thing. Instead of passing people state in props you could just write setPeople(prev => ([...prev, input]) xD
@connorflewitt8377
@connorflewitt8377 2 года назад
Holey moley! That was incredibly insightful, good work man thank you so much, your a genius!! How have you learned this much?
@fyriss_
@fyriss_ 2 года назад
Exactly what I was looking for, thank you.
@bikramjeetsingh4943
@bikramjeetsingh4943 3 года назад
This is the best video for react with typescript!! Thanks for this.
@susithra28
@susithra28 2 года назад
One of the best course for basics ..thanks a lot
@bibhushankarki9194
@bibhushankarki9194 2 года назад
your explanation is so clean man!
@langchen1300
@langchen1300 Год назад
A lot of important and useful concepts are covered in a short tutorial, thank you so much!
@WildHowlYT
@WildHowlYT Год назад
Typescript is next level 🔥
@frontend.made.eazzzy
@frontend.made.eazzzy 3 года назад
You are superb man! very clear and concise beginner friendly typescript introduction with react implemention.learn a lot thanks man
@nbo304
@nbo304 3 года назад
Love this thank you. Just what I needed.
@tunde6159
@tunde6159 2 года назад
Lovely. Typescript is really great. Thank you for the tutorial.
@hasibulhasansiju
@hasibulhasansiju 2 года назад
An amazing overview of typescript for beginners like me... Thank you so much
@emelielindborg
@emelielindborg Год назад
Thank you so much for an easy to follow video!
@gandalfgrey91
@gandalfgrey91 2 года назад
Great tutorial; I would cut back on the phrase "we can go ahead and..." though.
@juguetestoys1137
@juguetestoys1137 2 года назад
great !! please add save data storage, load data from a json file, and delete function
@asimsami3116
@asimsami3116 3 года назад
Your explanation is awesome .. I really like it, I would to see more like this videos for the other react features. thanks.
@rjc4200
@rjc4200 3 года назад
Good one Laith. Good , to the point explanation, crisp and no beating around the bush. Oh and why don't you use ES6 feature plugin for VSCode? Rather creating a RFC skeleton by manually typing, you can use 'rfc' or etc. :) Btw, keep it up, will be waiting for more videos like this !
@eliascotrim51
@eliascotrim51 2 года назад
Incredible tutorial, very good and concise!
@guilhermefonseca3067
@guilhermefonseca3067 2 года назад
Weird question but which keyboard were you using whilst making this video? My wrists have killing me and think it might be due to the incline or something of my keychron k2, been thinking about the logitech ergo stuff(i do flip between windows and mac os).
@thru_and_thru
@thru_and_thru 2 года назад
Amazing work man!! Really enjoyed this and it was super helpful!! Thank you!!
@jamoliddinz
@jamoliddinz 2 года назад
thank you, i'm learning so many things from you
@milanpavlovic8141
@milanpavlovic8141 7 месяцев назад
So amazingly well explained
@umairarif6825
@umairarif6825 2 года назад
You can define the setPeople Interface as setPeople: (people: Props["people"]) => void
@user-paint-alexandra
@user-paint-alexandra 2 года назад
Thank you! I understood all steps, it`s very useful.
@BeatBustersDance
@BeatBustersDance 2 года назад
Can We get some project which explains useCallback and useLayoutEffect, and use cases of both
@hamidrezasoltani2515
@hamidrezasoltani2515 2 года назад
Thank you for sharing this useful tutorial. I just wonder why you didn't easily use "input" object instead of putting the object again! setPeople([ ...people, input ]);
@myko_chxn
@myko_chxn 2 года назад
at 18:04. when you hover over the state, how do you get the small box that displays the types required?
@alexgrinberg1888
@alexgrinberg1888 2 года назад
Excellent course. Could you create another course where you can explain using TypeScript in React-Redux Slices?. That'll be amazing! ;)
@sumsoo
@sumsoo 3 года назад
This lecture is legit! thanks, it helped me a lot😀
@dragonborn1996
@dragonborn1996 2 года назад
Hi, great tutorial! I have several questions regarding the AddToList component. 1. Why don't you need to pass event in the event handler function? For example, in the input- you put "onChange={handleChange}" but why isn't it "onChange={(e)=>handleChange)" ? 2. My other question is why do you need brackets around [e.target.name] when you set [e.target.name]: e.target.value ?
@onthecodeagain
@onthecodeagain 2 года назад
I can help with your questions :) 1 ) onChange triggers a function when the event is fired using {(e)=>handleChange())} will fire an anonymous function that runs the handleChange function. using onChange={handleChange} it will still fire the handleChange function but without being wrapped by an anonymous function. 2) When setting the name of a key in an object you have to surround the variable with square braces. For example idf you had a variable defined as const dog = "fido" then when you create an object const obj = {dog: "value of dog", [dog]: "value of fido" } now obj.dog will have a value and so will obj.fido
@dragonborn1996
@dragonborn1996 2 года назад
@@onthecodeagain Thank you so much sir, I understand it now
@tomasburian6550
@tomasburian6550 2 года назад
This was great. Thanks, brother.
@myst.youtube
@myst.youtube 2 года назад
Love this tutorial
Далее
React Redux (with Hooks) Crash Course
48:00
Просмотров 209 тыс.
Why use Type and not Interface in TypeScript
14:12
Просмотров 204 тыс.
TypeScript Crash Course
52:27
Просмотров 603 тыс.
How to use TypeScript with React... But should you?
6:36
Learn TypeScript Generics In 13 Minutes
12:52
Просмотров 260 тыс.
The NGINX Crash Course
50:53
Просмотров 486 тыс.
Learn Typescript with React | Quick Crash Course
16:59
How Did I Not Know This TypeScript Trick Earlier??!
9:11
From React to React Native in 12 Minutes
12:33
Просмотров 14 тыс.