React & Material UI #22: Breadcrumb & Breadcrumb + React Router

  Рет қаралды 36,191

Anthony Sistilli

Anthony Sistilli

Күн бұрын

Пікірлер: 86
@jitengudhka4000
@jitengudhka4000 4 жыл бұрын
One of d best and easy to understand material UI tutorial. Thank u for making tutorial on Material UI.
@DarkVuderphlai
@DarkVuderphlai 3 жыл бұрын
I loved this tutorial. It was useful, it helped me with the task I had at work, and it gave with all the context needed. I especially liked how you kept refering to the official docs, and showed several ways to code the same result. Thank you!!
@khandoor7228
@khandoor7228 4 жыл бұрын
Anthony ... this is your best tutorial yet!! the real world example with how you would code this for real was exactly what is needed with these features. The Material-ui explanation is sometimes not sufficient and you made it very clear with real world, very thorough, good clean code! Awesome job, loving the 'with React-Router' subseries. Waiting for you to do the same with that Stepper . . lol.
@arjunn3974
@arjunn3974 3 жыл бұрын
The way you explained this is just Awesome... Keep going and Thankyou very much!!!
@vijaykumarreddyalavala3713
@vijaykumarreddyalavala3713 4 жыл бұрын
A month ago I searched for a video that clearly explains Breadcrumbs but I did not find it. But here I am today with a recently uploaded video that clearly explains it. Just right when I need it
@anibalmarquez9480
@anibalmarquez9480 3 жыл бұрын
Oh man! If I had you in front of me I would give you a hug, you have helped me a lot with your tutorials 😄
@vasileiosmpletsos178
@vasileiosmpletsos178 4 жыл бұрын
I was looking and couldn't find a good or an implementation that matches me requirments. But you did 100% and in so clean way. Great Job, subscribed!
@sujoydutta920
@sujoydutta920 2 жыл бұрын
Such a great tutorial I was pounding my head on this...although a bit outdated certain things changed with react-router-v6 but the gist is the same. THanks a lot
@juanfernando122
@juanfernando122 2 жыл бұрын
de casualidad tienes como quedaria ahora que cambio reac router a v6
@maddzkz
@maddzkz Жыл бұрын
@@juanfernando122 For v6 use the hooks: useLocation and useNavigate instead of withRouter HOC. You'll find the pathname in the location, and instead of history.push(path) just do navigate(path). Hope it helps!
@arthurhovhannisyan31
@arthurhovhannisyan31 4 жыл бұрын
Anthony, we are with you! Keep going man!
@pawarasiriwardhane7755
@pawarasiriwardhane7755 4 жыл бұрын
The exellent tutor I've ever seen
@gregduncan5993
@gregduncan5993 4 жыл бұрын
Fantastic series (so far)! Thanks for the great tutorials.
@ianmacrae4090
@ianmacrae4090 4 жыл бұрын
Great tutorial. How would you go about extending this to cope with params? eg /jobs/:jobid/details/:detailid so that the breadcrumbs would have home / jobs / detail with the link including the relevant parameter?
@ravishchauhan1
@ravishchauhan1 2 жыл бұрын
Thank you so much for uploading this video. this video was so helpful.
@AnthonySistilli
@AnthonySistilli 2 жыл бұрын
Glad it was helpful!
@אביאמן
@אביאמן 2 жыл бұрын
Thank you very much, this tutorial was helped me so much.
@jetmartin9501
@jetmartin9501 2 жыл бұрын
Thanks for breaking that down. Good stuff.
@shawnjohnson3433
@shawnjohnson3433 4 жыл бұрын
Awesome!! Great tutorial. You couldn't of explained that any easier!
@raptor312
@raptor312 2 жыл бұрын
Great work !
@hincha013
@hincha013 3 жыл бұрын
Genius !!! This helps me a lot !!
@srihari.lakshmanan
@srihari.lakshmanan 4 жыл бұрын
Nicely Explained! Thanks.
@ankitgiri6874
@ankitgiri6874 2 жыл бұрын
Amazing tutorial, Thanks a lot 🙂
@rupindamanalu8297
@rupindamanalu8297 4 жыл бұрын
Thank for this video content Mr. Anthony
@AnthonySistilli
@AnthonySistilli 4 жыл бұрын
Very happy it helped Rupinda!
@kennethchinedunwobi1401
@kennethchinedunwobi1401 4 жыл бұрын
Hi Anthony, I am still waiting to see the implementation of Hidden, I can hide a Grid on small screen view and make it horizontally scrollable on small screens
@skily4866
@skily4866 2 жыл бұрын
thanks for this guide, its so much to help me
@onyebuchikingsley3172
@onyebuchikingsley3172 3 жыл бұрын
This is a great one! it solved my problem.
@d.d898
@d.d898 4 жыл бұрын
you made Material UI very easy!!!!
@oiaraque
@oiaraque 3 жыл бұрын
Great tutorial, subscribed!.. if i'm using react-router-dom v6, how i can replace withRouter wirh hooks?
@amanprit-kaur
@amanprit-kaur 3 жыл бұрын
Great video! Keep up your work :)
@ianmacrae4090
@ianmacrae4090 4 жыл бұрын
Great video. Can you please explain how you would go about using breadcrumbs with route parameters. eg something link /user/:userid/detail/:detailid/preferences/:preferencesid. The idea would be to see in the breadcrumb user -> detail -> preference with user and detail going back to the respective user or detail information
@sheisgabs
@sheisgabs 2 жыл бұрын
you can use with router v6 the useParams(); const { user_id, detail_id, preferences_id} = useParams(); and create a condition to return null this values. something like: function valueIsParam(value: string) { return params.includes(value); } if (valueIsParam(text)) { return null; } and then you will have something like this: /user/ /detail/ /preferences/ / I dont know how to get rid of the slash symbol, but I hope it helps
@elvin.mammadli
@elvin.mammadli 2 жыл бұрын
Hi, great tutorial, but i use router v6, and it seams some things changed, i have problem with "withRouter" any short help if possible? Thanks anyway :)
@kissshu
@kissshu 4 жыл бұрын
great explanation. thanks for doing it. it really helped
@Parth-lu8rr
@Parth-lu8rr 2 ай бұрын
How do we handle the case when we have query params in the routes and, we are re rendering the component which has breadcrumbs. I am not able to retain the routes. Anyone!?
@pets_talk
@pets_talk 3 жыл бұрын
It was super helpful!
@seeramsumanth8409
@seeramsumanth8409 4 жыл бұрын
Thank you so much ❤️😊, it is very clear and you did break it down very well :)
@meghalbisht6768
@meghalbisht6768 4 жыл бұрын
already waiting for the next one!!!!
@AnthonySistilli
@AnthonySistilli 4 жыл бұрын
Haha I love the anticipation!
@jacobnastaskin3544
@jacobnastaskin3544 4 жыл бұрын
Kind of a dumb question here but how would you change the cursor to a pointer when it is over a link?
@Shivashankar-ui8xi
@Shivashankar-ui8xi 2 жыл бұрын
Will it work if we have components inside the folders?
@onyebuchikingsley3172
@onyebuchikingsley3172 3 жыл бұрын
I discovered that my breadcrums actually worked as I expected but the component was not rendering. What could be the issue?
@АнварАппазов-я1г
@АнварАппазов-я1г 2 жыл бұрын
Awesome! Thank you!
@Kewledgykid
@Kewledgykid 3 жыл бұрын
Thank you, this was really helpful!
@talhaahmed1116
@talhaahmed1116 2 жыл бұрын
Thanks, you're the best!
@austinejose1516
@austinejose1516 3 жыл бұрын
Great Content, Thanks very much.
@bowlshark1
@bowlshark1 2 жыл бұрын
Great help man. tks
@Eminence43rd
@Eminence43rd 4 жыл бұрын
But how about you want to go back to the previous link? and you have to supply an id in the link?
@eric.m5790
@eric.m5790 3 жыл бұрын
thanks man good video helped alot
@Ymaryna
@Ymaryna 4 жыл бұрын
Great video, thanks so much!!
@joshsondera
@joshsondera 2 жыл бұрын
I have a problem with withRouter(). IT was removed in the latest version of react-router-dom. My whole project is already based on that version, so I can't change it to the older version. How can I still implement it in JavaScript?
@davidlew4391
@davidlew4391 2 жыл бұрын
How you fixed it bro?
@rahulkulkarni9653
@rahulkulkarni9653 2 жыл бұрын
Thanks 😊 it's really good
@syamkishore9213
@syamkishore9213 4 жыл бұрын
Thank you bro. this made my day
@cristiancb6148
@cristiancb6148 4 жыл бұрын
Thank you so much this really helps me a lot
@alimoghadam6464
@alimoghadam6464 4 жыл бұрын
this really helps. thank you 🙏🏻
@amavictor2993
@amavictor2993 Жыл бұрын
Beautiful
@yashmohod1278
@yashmohod1278 4 жыл бұрын
hi Anthony please make any demo project using material ui or suggest me that can help me to improve my skill of material ui and thanks bro love you you are best instructor
@ankushsingh6668
@ankushsingh6668 3 жыл бұрын
A great tutorial
@khld4263
@khld4263 2 жыл бұрын
Thank you 🥰
@kevinma8227
@kevinma8227 4 жыл бұрын
Hi Anthony your voice sounds a lot deeper, can you teach me how you create this effect?
@AgustinAstronomy
@AgustinAstronomy 4 жыл бұрын
thanks for this video!!!!! you are amazing
@AnthonySistilli
@AnthonySistilli 4 жыл бұрын
Glad it was helpful!
@stabbler
@stabbler 4 жыл бұрын
Next video suggestion: badges and snackbars ;)
@AnthonySistilli
@AnthonySistilli 4 жыл бұрын
Oh very good idea!
@ramijawadi4356
@ramijawadi4356 Жыл бұрын
withRouter is depricated :\ any solution plz
@AndrewPetersen-ho6nk
@AndrewPetersen-ho6nk Жыл бұрын
Not sure if you have figured this out, I just found this video today and came across the same issue. From what I was able to find, react now has hooks that replace withRouter. I am now working on using useLocation().
@Circulate_Motive
@Circulate_Motive 3 жыл бұрын
It is very useful
@kristiankristiansen5603
@kristiankristiansen5603 4 жыл бұрын
Hi Anthony, great content i'm a bit confused though. What if i wanted a top navbar that stays on all pages, how would i do that?. Like: HOME ABOUT JOBS Home / about This is the about page Can't seem to figure it out. Best Kris
@AnthonySistilli
@AnthonySistilli 4 жыл бұрын
I think I have a video on MUI headers (if not, maybe my pokedex example series goes through it) , but essentially with your header you just want to nest it in your top level component (usually app.js) so it's a sibling of the react router logic, so it won't change when a page does!
@kristiankristiansen5603
@kristiankristiansen5603 4 жыл бұрын
@@AnthonySistilli Great thanks!, i figured it out now, i was trying to use history.push in the nav outside of the Route, that did not work of course, i'll just use use Link from react-router-dom that works great.
@saivivekravi4979
@saivivekravi4979 4 жыл бұрын
Can you make mui-datables in react video please it is very helpful to many other
@gregduncan5993
@gregduncan5993 4 жыл бұрын
Suggestion for other MUI - Footers and nav bars that can become hamburger menus.
@naveenraj061
@naveenraj061 4 жыл бұрын
thanks bro!
@eseesela1
@eseesela1 4 жыл бұрын
Path names tend to be in unreadable format. There is a useful example in mui docs on how to replace pathnames with user friendly names.
@mrgame6584
@mrgame6584 3 жыл бұрын
May Allah reward you
@slavik2927
@slavik2927 4 жыл бұрын
Thank you
@DjellalAmina-y8e
@DjellalAmina-y8e 7 ай бұрын
Thank uuu
@nicolasaraya2919
@nicolasaraya2919 3 жыл бұрын
me salvaste
@Jay-jo5dm
@Jay-jo5dm 3 жыл бұрын
leaving a comment for the youtube algorithm
@BabarAli-yb1eg
@BabarAli-yb1eg 4 жыл бұрын
great
@AnthonySistilli
@AnthonySistilli 4 жыл бұрын
Glad you liked it Babar!
@erkanisuf3604
@erkanisuf3604 4 жыл бұрын
thanks babe , sryy i copy pasta it ot my project ;(
@odocic
@odocic 4 жыл бұрын
all that code for this simple functionality -_-
@Giorgi-ho8rj
@Giorgi-ho8rj 3 жыл бұрын
that's life
React & Material UI #23: Hidden + Hidden & Grid
6:17
Anthony Sistilli
Рет қаралды 10 М.
React & Material UI #24: Snackbars + Snackbars & Redux
20:49
Anthony Sistilli
Рет қаралды 17 М.
Une nouvelle voiture pour Noël 🥹
00:28
Nicocapone
Рет қаралды 9 МЛН
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.
Style #Breadcrumb #Navigation Menus for Deeply Structured Websites
7:09
Six Minutes. Smarter.
Рет қаралды 10 М.
React & Material UI #31: Material UI + VScode Snippets
13:21
Anthony Sistilli
Рет қаралды 10 М.
React Hook Form - Complete Tutorial (with Zod)
28:22
Cosden Solutions
Рет қаралды 148 М.
React & Material UI #28: MUI Forms + Formik
25:40
Anthony Sistilli
Рет қаралды 33 М.
The ULTIMATE guide to styling/customizing Material UI (MUI)
10:29
Learn React Router v6 In 45 Minutes
46:20
Web Dev Simplified
Рет қаралды 579 М.
React & Material UI #26: Header (Appbar + Toolbar) & React Router
32:26
Anthony Sistilli
Рет қаралды 81 М.
Une nouvelle voiture pour Noël 🥹
00:28
Nicocapone
Рет қаралды 9 МЛН