Тёмный

STOP using useState, instead put state in URL (in React & Next.js) 

ByteGrad
Подписаться 151 тыс.
Просмотров 217 тыс.
50% 1

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

 

24 сен 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 439   
@alexnelson2119
@alexnelson2119 10 месяцев назад
A note about replace vs push, the Link component takes a `replace` prop that you can set to true (default is false) if you want the replace behaviour. It also has a `scroll` prop that you should set to false (default is true) if you don't want to scroll to the top of the page each time you click on an option.
@ByteGrad
@ByteGrad 10 месяцев назад
Yeah, good points
@kamehameha38
@kamehameha38 6 месяцев назад
Arigato
@MuhamadAzizPrasetyo
@MuhamadAzizPrasetyo 24 дня назад
Thank u!
@dimitrisborbotsialos
@dimitrisborbotsialos Год назад
We’ve actually used this technique 4 years ago on a react application, worked great and still does. We’ve also made a search component to listen for changes on the url and update a context. Our app was complex and many components had to be updated so using a context was the way to go. It’s funny though that no matter what we do we always coming back to 00’s concepts. It’s like php back in the days.
@Diegps
@Diegps Год назад
it's php with a mint flavor and I'm here for it
@spicynoodle7419
@spicynoodle7419 Год назад
Modern PHP with HTMX is the dream and I'm living it
@billypentester
@billypentester Год назад
It depends on the requirements. If you're developing apps that don't share data like admin panels, use states and react. But if you're developing sites that do share data like e-commerce websites, use params and next js.
@webdev_telugu
@webdev_telugu Год назад
Such a niche concept and he teaches us for free even though he has paid courses. Kudos my man!!
@ByteGrad
@ByteGrad Год назад
Thanks
@RealRatchet
@RealRatchet Год назад
It's not a niche concept putting stuff in query parameters was how Web1.0 did things because there was no client state, we've officially come full circle.
@shrin210
@shrin210 Год назад
​@@RealRatchetNow we write in components and not in pages. That's the only thing changed from Web 1.0
@webdev_telugu
@webdev_telugu Год назад
@@RealRatchet yeah true, but I'm a new developer so new thing to me
@henriquematias1986
@henriquematias1986 Год назад
What you mean niche concept? That’s how the internet works and always worked 😊 It’s just that some websites are broken so he’s teaching how to fix it 😅
@samyakpiya
@samyakpiya 11 месяцев назад
You are so good at teaching web dev. I love that you show how something can be done with just JS and then proceed to show how a framework like Next.js makes it much simpler! Also, I really appreciate that you cover the edge cases and best practices. I'm learning a lot from watching your videos!
@developerpranav
@developerpranav Год назад
This is awesome with server components! Very detailed video that includes URL encoding and search params. Waiting for your nextjs course :D
@ByteGrad
@ByteGrad Год назад
Thanks! 😃
@kings-code6675
@kings-code6675 4 дня назад
Great tutorial. There are situations where useState still shines better and there are situations where this method would be perfect. I remember doing same thing on a client's project earlier this year. I needed to keep the state on the url since I would be navigating back to that same page after user completed their stripe integration. Storing in useState didn't make sense to me, so I stored the state on the url and it worked perfectly. If you're dealing with object states, useState remains the best. If you do not need to persist the state when you share the url, useState is still the best.
@foreverl01
@foreverl01 Год назад
I found your videos last week and I've seen more than 10 hours of your content. The way you explain things is amazing. Thanks, Wesley! I'm making an e-commerce myself to practice react and next.js, using app router. This solution to avoid using state and making components CC is great! I can't wait for the next js course!! 🥳
@ByteGrad
@ByteGrad Год назад
Awesome, thank you!
@lets_see_777
@lets_see_777 10 месяцев назад
somehow your teaching method resonates best with me. There are several popular youtubers on JS but you explain why we are doing things with alternatives. Thank you.
@saadelfadil
@saadelfadil 8 месяцев назад
I stumbled upon your RU-vid channel just today and had to reach out immediately to express my gratitude for the incredible content you’re sharing. Even though it's only been a day, I've already spent hours soaking in your insights. The way you explain concepts is nothing short of amazing 🔥🔥
@wannabe_Akshat
@wannabe_Akshat 29 дней назад
Randomly this video popped up in my break session and I thought let's open this and omg I didn't even realized that i needed this for more efficient code. The way you explained it never felt like someone is teaching, i just watched whole video and learned without any hesitations. You are just a piece of art!
@silentlyow
@silentlyow Год назад
I recently started a project on a brand new framework recently (Next.js) with TypeScript as well (first typescript experience as well) and discovered this method of handling something like "state" in server components. Basically I had a product page and needed to do pagination and filtering, I did it using the query string.
@coffeefps
@coffeefps Год назад
This is actually clean and good. Just need to handle the magic strings gracefully and it's perfect. You earned my sub.
@kevin-ty7it
@kevin-ty7it Год назад
I have a short attention span, but you shared information continuously, which kept me engaged throughout.
@andreilucasgoncalves1416
@andreilucasgoncalves1416 Год назад
Query strings are usually a lot harder to work with than useState, you have to validade the input to avoid errors, specially if you change things and the query data becames stale, but anyways query strings provides a great UX
@zettca
@zettca Год назад
If your data/endpoint inferred from the searchParams, it won't become stale. searchParams should be the SSOT (single source of truth). And as these are user-controlled, there should be some validation - yes. A small validation function is the trade-off for the greater UX
@zettca
@zettca Год назад
Another thing: we shouldn't be building the searchParams by hand anyways. There's URLSearchParams for that
@Kaioin
@Kaioin Год назад
You should be validating data that you use with useState, too, if it comes from userland.
@wisdomelue
@wisdomelue Год назад
everything has its tradeoffs
@CottidaeSEA
@CottidaeSEA Год назад
Validation is always an issue and honestly, in a case like this it is simply absurd to expect query parameters to exist immediately. For these things you should always have a fallback.
@taicheeeee
@taicheeeee Год назад
Best youtubers for beginngers: Lama Dev, and Net Ninja Best youtuber for junior and middle developers: YOU
@ByteGrad
@ByteGrad Год назад
Haha thanks
@vikasni95
@vikasni95 Год назад
Im very lucky to find your channel on random search.. Tq god for suggesting this gem channel... Tqss dude keep adding more videos 😍👍
@perraanal
@perraanal 8 месяцев назад
this guy is the best tech youtuber ever
@simoncunningham2964
@simoncunningham2964 4 месяца назад
Thank you for this video - I've watched a lot of tutorials lately that go down the route of useState and useEffect but they never felt like the best way - glad I came across this video!
@nascob
@nascob Год назад
It's a great tutorial. Nice pros and good pacing with good examples. A bit of constructive feedback - I think you're missing several important points. 1) Validation - treating the URL as a single source of truth is fine - however it's super easy to mangle, incorrectly enter or purposefully break the URL - would have loved to see some patterns to deal with that. (as a side note - putting `as string` is not asserting anything - it's just telling typescript to ignore the fact that the URL param can actually be an array type) 2) Async examples - in your case - setting the attributes for the t-shirt (esp. on the server side) is straightforward. However if you have a more complicated example where the product details are being retrieved from a database - it gets tricky to validate and apply the URL params against a dynamically set object. Also need to handle resyncing the URL if they are invalid. While the pros are good - there are some cons to this that become obvious with advanced usage.
@ByteGrad
@ByteGrad Год назад
Yes, great points, thanks for sharing!
@MOURADSLIM
@MOURADSLIM Год назад
I'm doing a search function and was gonna use a state manager to manage this problem, perfect timing XD Thank you
@Lapatate-s1l
@Lapatate-s1l Месяц назад
The best js teacher 👌🏽 not a lot of blabla . Straightforward to the important features . I hope you make udemy courses one day
@nomadshiba
@nomadshiba Год назад
not using react or next, or tsx but this is so true! especially for modals, i like to keep my active modal info on the hash part of the url that way both page data and modal data can be placed on the url but of course you can use url params too i mean you realize that your site/app needs this the moment you refresh the page
@maisamafshar
@maisamafshar Год назад
Excellent presentation and explanation. Loved the pace of the video, not slow, not fast. Subscribed.🤩
@Olga-id1qy
@Olga-id1qy 10 месяцев назад
Beautiful, it made me smile for a sec as I would write it exactly as you mentioned at the beginning via useEffect(). Now while transitioning to Next.js, I like definitely this one-way approach
@LePhenixGD
@LePhenixGD Год назад
Amazing tutorial man! Never had that idea to use URL parameters not for a search but for products until now, thank you!
@codewithguillaume
@codewithguillaume Год назад
Huge fan of this approach :)
@seg_fault
@seg_fault 10 месяцев назад
Thanks for the video. I heard of this and needed to see an example of how to go about it and this went above and beyond with even the pitfalls to watch out for.
@guilhermeferreirabr
@guilhermeferreirabr Год назад
Dziękuję bardzo za tutoriale, właśnie kupiłem dwa twoje kursy, niesamowita treść! 🚀👏🎬
@ByteGrad
@ByteGrad Год назад
Thanks Guilherme! Appreciate it
@nick-ui
@nick-ui Год назад
Hey! I really glad to see that someone show this method to handling state in url, but this solution has potential disadvantage. It's animations. It's harder control when they're removed from the React tree. So when I use Framer motion, I can't make nice animations. Maybe vanilla css will, idk
@ByteGrad
@ByteGrad Год назад
Interesting, thanks for sharing
@ebratz
@ebratz 11 месяцев назад
This tip saved me a lot of time today! Thank you so much! Eager waiting for your Next.js course!
@ChrisHaupt
@ChrisHaupt 8 месяцев назад
That's a really cool trick using the Link component to append a query param. Didn't know that was a thing!
@spacecowboyofficial
@spacecowboyofficial Год назад
This just feels right. UX is more than just visuals when designing a website.
@oidualx
@oidualx 11 месяцев назад
Thank you so much! This way of handling state is nothing knew, but I personally never put much thought into it until this video, and always defaulted to client state, with all the issues you listed. Typical aha moment. From now on you convinced me to always default to query params to handle state, unless there is a serious reason not to do so.
@bklynpeter
@bklynpeter 11 месяцев назад
Another amazing video. I do have a follow-up question: In your example, the page is a presumably dynamic route? How do we utilize those dynamic elements (again, in your example, 'product' and 't-shirt') at the same time we are accessing the query-params? Thanks as always!
@ByteGrad
@ByteGrad Год назад
My Professional React & Next.js course is OUT NOW now! Find it here: bytegrad.com/courses/professional-react-nextjs -- this is the #1 resource to master the latest React & Next.js, my absolute best work.
@brancode404
@brancode404 Год назад
Can't wait for it. I hope it'll be out this Month? 😮
@ByteGrad
@ByteGrad Год назад
@@brancode404 Sending the exact date to email subscribers :)
@thevasupodcast4561
@thevasupodcast4561 Год назад
Can you please also club react jobs that you find in your newsletter?
@youneshenni5417
@youneshenni5417 Год назад
What application will you build in the upcoming next js course? Looking forward to it :)
@ByteGrad
@ByteGrad Год назад
@@youneshenni5417 I''ll show screenshots of them soon in the newsletter
@alirezagarshasbi6557
@alirezagarshasbi6557 Год назад
i was looking to make a seperate context for a boolean value as a side effect of another context state change, but with the abuse of url its free state across the app😁 thank you
@abdulazizaskaraliev6119
@abdulazizaskaraliev6119 Год назад
yes, I recently had a problem keeping state with ssr and client at the same time. It was pain in the ass, I moved it to url and it feels so good, and at the same time, url is sharable, so your state is not only in your app but you can even share it to someone and they'll immediately see the thing you want them to see. I was thinking what could be the down sides of doing this, i mean my state is not big and only about 1-3 query params most of the time? What could go bad with this ? And I just started to watch the video, and OMG the intro, he talks about all the pain points I had. This is gonna be enjoyable watch, I can smell it.
@Imjoshnewton
@Imjoshnewton Год назад
Love this solution for handling state especially when you want to set state down the tree and read it across other components. The issue I’ve run in Next 13 is setting the paean jumps you to the top of the page. Even when using replace…
@ByteGrad
@ByteGrad Год назад
You can configure that on the Link component (set ‘scroll’ prop to false)
@raymondmichael4987
@raymondmichael4987 Год назад
I had similar use case today, pulled my hair for hours; Thanks brother 😊
@ZacharyBetz
@ZacharyBetz Год назад
In case you weren’t aware, your content is top notch 👌
@ByteGrad
@ByteGrad Год назад
Thanks Zachary, always good to hear :D
@weebdeveloper
@weebdeveloper Год назад
True, derived state makes some features so much simpler to build, thanks for sharing
@peterabouabsi8427
@peterabouabsi8427 11 месяцев назад
Depends on your case. This is a great practice for searching and fetching tasks.
@blazi_0
@blazi_0 Год назад
i usually make a function for changing spesific item in query without effecting others, like this: changeQuery("size" , "sm") -----> change size in url to md, this will not effect others like color and name
@davidorgan
@davidorgan Год назад
I actually think the back button going back to the last selection is pretty bad user experience. Say you are looking at a list of tshirts, then you select one to view its color and size options, you click a few different colors and sizes to see how it looks and you then decide you want to go back to the list of tshirts to see some more, now you have to hit back a bunch of times to get back to the list or you have to click the nav bar to get back there and lose where you were in the list of tshirts in case of pagination. Sometimes devs get excited about different ways to do things that are easier for dev experience but don't actually help the user
@Exmantika
@Exmantika 11 месяцев назад
If you watch all the video, it's explained how to avoid this by using router.replace() rather than router.push() at 17:45.
@stephenngeorge
@stephenngeorge Год назад
This is a really great video :) and super interesting. I know it's nothing to do with the video but the "JavaScript magic" to make the first letter uppercase on those buttons is just "text-transform: capitalize;" in CSS 👍
@redeemr
@redeemr 10 месяцев назад
or since he's using tailwind just className="capitalize"
@DiogoLScarmagnani
@DiogoLScarmagnani 10 месяцев назад
Wow! I didn't know about History API and its pushState method. Great! It can be used even in vanilla JavaScript projects. Thank you for the video.
@rubelhossain8517
@rubelhossain8517 Год назад
amazing content ! Keep up the good work sir
@ByteGrad
@ByteGrad Год назад
Thanks, will do!
@James-rd1sb
@James-rd1sb Год назад
I never thought of it like this. I'm sure it'll be useful to know in the future! Many thanks
@LearnFrontendNow
@LearnFrontendNow Год назад
Always a super useful technique especially for UI's that you likely want to remember state when you copy and paste the link.
@romeorel1679
@romeorel1679 Год назад
Never knew you have had a RU-vid channel. I discovered you from your CSS udemy course. Quality work.
@mu_yaser
@mu_yaser Год назад
wanted to use this concept in my latest next project and you just explained things i needed to know, good info and explanation
@Alex-bc3xe
@Alex-bc3xe 5 месяцев назад
freaking smart way of making the state in the URL never crossed my mind smart ass shit.
@abdullah_siddiquii
@abdullah_siddiquii Год назад
The content was amazing. I used this approach in my project.
@rinyato
@rinyato Год назад
In the color button section, if u want to uppercase the first letter, u can do it with css, so in tailwind u can use "uppercase" class name. Sorry if im misunderstanding ur intention.
@ByteGrad
@ByteGrad Год назад
Yeah, it was a silly mistake
@atthanh882
@atthanh882 Год назад
capitalize
@zzz-1x
@zzz-1x 8 месяцев назад
This video mention the way which i implemented before. Confirm that this way is really effecient and quite clear
@codinginflow
@codinginflow 8 месяцев назад
I like to keep state in the URL and use links + server components to make it work without JS
@pi3ni0
@pi3ni0 10 месяцев назад
Thanks, very good content. A lot of real world cases, can't wait for your course! :)
@prajwalchoudhary4824
@prajwalchoudhary4824 Год назад
I learned this when I was working with react router lifting state up to the url so even when user navigates around in app we can pass on this state so when they come back to same page the state doesn't get lost
@youssefaserrar2001
@youssefaserrar2001 Год назад
You way of explaining is Awesome, I love you videos.
@ByteGrad
@ByteGrad Год назад
Thank you so much 😀
@AndersonSousa33
@AndersonSousa33 Год назад
Your videos are awesome! Just need to raise the audio volume a little bit.
@saitharunreddya2046
@saitharunreddya2046 Год назад
An awesome video with great details and explanation, loved it!!! Keep Up the good work
@ardianhotii
@ardianhotii Год назад
This video was very helpful, I'm learning so many new things from you that I didn't know that can cause problems in my apps. Thank you so much
@ota-ke
@ota-ke Год назад
Pretty well explained. I didn't know server components get the searchParams as props by default!
@jou3883
@jou3883 11 месяцев назад
I love you. You’re an awesome teacher. I’m grateful to have found your channel 🙏🏻
@billypentester
@billypentester Год назад
It's really something great for me, actually, I'm looking for something similar to this concept and I got it. So much thanks sir
@glauberbispo8922
@glauberbispo8922 Год назад
mind blowing I always work with states, i'm looking foward to implement this solution in some of my works *-* and it works really good together with server side in next
@user-ge2vc3rl1n
@user-ge2vc3rl1n Год назад
This is a very cool and unique example, looking forward to more. GJ
@D3ADPIX
@D3ADPIX Год назад
Great video. One thing is I wouldn’t use useEffect to sync with the url - I know it was part of the “don’t do this example” but if you were to use state and push to the url, having the state updates and the url updates in a function that’s called when the user selects an option would be better IMO
@chrishanthacosta4093
@chrishanthacosta4093 9 месяцев назад
I find Wesley to be the best NextJS teacher.
@hojdog
@hojdog Год назад
Sounds like bad UX to force the user to go back through query params in the history, since it’s not what the user expects, but I like the idea of using query strings for the other reasons. So I would just do it the way you did before you used , and turn it into its own reusable hook.
@veedjohnson
@veedjohnson Год назад
Definitely one of the best out there!
@lorsothy6263
@lorsothy6263 Год назад
Thank you so much. Now I found a way to select filters without use client.
@mohammadshariarparvez669
@mohammadshariarparvez669 11 месяцев назад
watching your first video , became a fan of you broooooooo.. god bless you
@Scrappycoco
@Scrappycoco Год назад
Great content man. Keep it up!
@NOTHING-en2ue
@NOTHING-en2ue Год назад
very well tutorial, you finally teach me how to think the next-js way ❤
@kairollmann
@kairollmann Год назад
Nice tutorial, I was curious how far you'd take this! Counter argument is: ONLY STOP using useState if you know what you're getting into! 😬 In a real world app, this will at least require - generic param handling that won't discard other params from other parts of the app from the url - generic param serialization, url-encoding and sanitizing - support for arrays + objects as params And then you'll have to take care that your URL won't grow absolutely HUGE in the next couple of months. And then, in case you don't want to send a server request for every small state change, there needs to be a client-only version of this, like a custom hook with a useState-like signature: useParam(name: string, defaultValue: T): [T, (val: T) => void]. That gets tricky as well if other components require the url state state and you have to use context. But I do agree: the benefits for medium-sized apps are worth the implementation. I wish there was a library that would do all of this + handle both the server & client side. Keep up the good work!
@ByteGrad
@ByteGrad Год назад
I agree, good points. Thanks!
@amansarma417
@amansarma417 Год назад
The good old PHP days
@bangmekk10
@bangmekk10 Год назад
Great video, but how would this work if you have a search component to search something, and want to handle and display the loading state while its being fetched? a solution i could think of is using ternary but what if I wanted to use the next.js default loading.tsx file?
@ish1k4r4
@ish1k4r4 11 месяцев назад
hey, could you please elaborate about the ternary approach? i'm struggling to find a solution for this problem myself 😅😅
@marchugans
@marchugans Год назад
Great approach
@ByteGrad
@ByteGrad Год назад
I agree, underused by many devs
@jerryfrancis7495
@jerryfrancis7495 Год назад
Am seriously anticipating your next js and react course. Great content as always
@ByteGrad
@ByteGrad Год назад
Great to hear Jerry!
@fulltimefrontend
@fulltimefrontend 11 месяцев назад
We actually use this trick since 3 years in our React apps as well.
@giandenorte
@giandenorte Год назад
Just subscribed, I love your content man! I wish the audio can be improve soon.
@ByteGrad
@ByteGrad Год назад
Yes, will improve soon. 2-3 more videos with this haha
@essik4278
@essik4278 3 месяца назад
I agree a lot with this. I'm not really a frontend dev but when i use ecommerces that have state stored locally not in the query itself it frustrates me because I can simply send someone a link with all the right product details already choosen instead I have to tell them all the specifics
@dero433
@dero433 Год назад
Dzięki za porady!
@ByteGrad
@ByteGrad Год назад
Bez problemu!
@perkoz27
@perkoz27 Год назад
1:59 You state that this is good for SEO, but I've met experts who say the exact opposite: "search engines cannot parse url params and treat every variant as page duplication". Can you provide the source of your claim? I just wanted to read some more about this topic and any additional data to prove to SEO masters that good UX is also good practice for search optimization.
@matowang
@matowang Год назад
One of the problems with using this method on Next.js is that the UI does not update until page.tsx is finished rendered. So if you click "White", it will not update the UI until the client finishes fetching the next page. It will be better to maintain some client state and listen to updates so the client UI can update immediately. Let me know if I'm missing something.
@arinium
@arinium 7 месяцев назад
You make absolutely great tutorials, thank you for sharing!
@nabeelahmed8179
@nabeelahmed8179 Год назад
can't you do this:
@ByteGrad
@ByteGrad Год назад
Seems possible too, good point, thanks!
@invinciblemode
@invinciblemode Год назад
You can, we do this in my company
@edvinas396
@edvinas396 Год назад
It’s true, search params are indeed well applicable at storing a state.
@robert-freaking-kovacs
@robert-freaking-kovacs Год назад
Amazing feature for user experience and SEO
@CodingBill
@CodingBill Месяц назад
Obviously i knew that but i did not have the mindset that you show in that video. Great content ! I have to say that queries can lead to security issues if the content of the query is meant to be displayed somewhere in the UI ! So in some usecases, queries have to be sanitized.
@OpenCoreX
@OpenCoreX Год назад
This is just amazing. Glad I discovered you - amazing teacher. #subscribed
@AkoMawlood
@AkoMawlood 3 месяца назад
a very intense video ,thank you very much teacher.
@malakggh
@malakggh Год назад
Great video, But isn't that bad that we have to rerender the whole page each time we change a color or size ?
@saiyanman6497
@saiyanman6497 5 месяцев назад
Thanks much. Your're Right! URL is the single source of truth. Nextjs is good but this still plays well with Reactjs.
@igboanugwocollins4452
@igboanugwocollins4452 Год назад
Neat approach, you just gained another sub
@KamilDrozdz
@KamilDrozdz Год назад
great content, I was surprised when I saw the browser in Polish hah :D greetings
@ganumba11
@ganumba11 Год назад
amazing content from you like always 🔥🔥
@csy897
@csy897 Год назад
Navigation has been an absolute nightmare for apps with multiple entry points and mutiple journeys... Been wondering why we have not used query strings... hopefully we get the budget to refactor this mess...
@BarryMichaelDoyle
@BarryMichaelDoyle Год назад
This is a brilliant UX solution that's also safe to use with server components, great video man :)
Далее
TypeScript Generics are EASY once you know this
22:21
Просмотров 137 тыс.
Тонкости французской кухни🥰
00:48
My Favorite State Manager Is...URLs?
6:29
Просмотров 71 тыс.
The BEST way to host Next.js websites
17:37
Просмотров 46 тыс.
Top 6 React Hook Mistakes Beginners Make
21:18
Просмотров 573 тыс.
Web Developer Roadmap (2024) - Everything is Changing
25:02
10 common mistakes with the Next.js App Router
20:37
Просмотров 214 тыс.
Why use Type and not Interface in TypeScript
14:12
Просмотров 206 тыс.
Goodbye, useEffect - David Khourshid
29:59
Просмотров 500 тыс.
Every React Concept Explained in 12 Minutes
11:53
Просмотров 653 тыс.
All 17 React Best Practices (IMPORTANT!)
1:46:11
Просмотров 144 тыс.
Why Signals Are Better Than React Hooks
16:30
Просмотров 477 тыс.