Тёмный

Loading Skeleton for Search & Pagination in NextJs 13 Movie App 

Hamed Bahram
Подписаться 103 тыс.
Просмотров 12 тыс.
50% 1

In this video, we'll use Suspense to add a loading skeleton to our movie app during search and pagination. We'll also learn about the Router cache and how to invalidate it to show our pending UI.
👉🏼 The Ultimate NextJs Course
🔗 www.hamedbahram.io/courses/ne...
👉🏼 Project source code
🔗 github.com/HamedBahram/next-p...
Chapters
0:00 Intro
1:26 Project setup
2:30 Extract movies into a component
4:40 Add Suspense
7:10 Invalidate the Router cache
14:30 Add key to page component
16:15 Add loading skeleton
17:30 Add the Await component
21:46 Outro

Наука

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

 

27 июн 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 46   
@ts3798
@ts3798 29 дней назад
Very helpful, thanks Hamed.
@hamedbahram
@hamedbahram 29 дней назад
My pleasure!
@AdilChehabiChkilel
@AdilChehabiChkilel 10 месяцев назад
Thanks a lot Hamed, I struggled with that and gave up after hours of searching and reading the doc. Your way of explaining complex concepts is the best I've ever seen, in every tutorial I found you answering all the questions that are in my head 👍.
@hamedbahram
@hamedbahram 10 месяцев назад
Glad to hear that! Appreciate your comment.
@user-ji9mk2gd6i
@user-ji9mk2gd6i 8 месяцев назад
wow it's really to help full i spend hour's and hours but you give solution within 10 minutes thank's a lot , you make video on real problems of work issue that's really very helpful to us
@hamedbahram
@hamedbahram 8 месяцев назад
You're welcome. I'm glad to hear that.
@amir25370
@amir25370 6 месяцев назад
What a perfect tutorial. Amazing. I wish i knew your channel earlier
@hamedbahram
@hamedbahram 6 месяцев назад
Glad it was helpful! Welcome to the channel.
@germain1984
@germain1984 10 месяцев назад
Love your videos! Learned a lot from your section on router caching. Would be amazing if you could make one video summarizing all of the Caching behavior in Next.js 13.4+ as I believe that is the single biggest headache in the new Next.js
@hamedbahram
@hamedbahram 10 месяцев назад
Great suggestion! Glad you found it helpful.
@nomadmack
@nomadmack 10 месяцев назад
Great video, thanks a lot!
@hamedbahram
@hamedbahram 10 месяцев назад
Glad you liked it!
@NOTHING-en2ue
@NOTHING-en2ue 10 месяцев назад
very well tutorial, thanks a lot ❤
@hamedbahram
@hamedbahram 10 месяцев назад
You're welcome 😊
@eliuddyn
@eliuddyn 10 месяцев назад
Amazing Bro 🔥🔥
@hamedbahram
@hamedbahram 10 месяцев назад
Thanks 🔥
@ekimdev7622
@ekimdev7622 7 месяцев назад
Thank you so much for the information thats really useful. Can i ask a question here, since we are "disabling" client cache in browser by adding key, it will not affect the server cache right if we send request with native fetch api and cache set to "force-cache" ?
@hamedbahram
@hamedbahram 7 месяцев назад
You're welcome! That's right it won't effect the fetch deduplication, and it won't disable the client cache entirely either, it just re-renders the component with the key prop.
@ekimdev7622
@ekimdev7622 7 месяцев назад
Thank you so much Hamed, that was really hard to discover it to me :D !@@hamedbahram
@ekimdev7622
@ekimdev7622 7 месяцев назад
That might me an interesting and unnecessary thing but , is there any chance like to deploy next project to vercel with the server cache we got in local ? :D@@hamedbahram
@hey.............
@hey............. 10 месяцев назад
Hey, really informative. One question though, lets say i have 3 api calls on my page component. I want one call to be revalidated after every 45 seconds and want to pass the result of this call to 2 other calls on this page. For these 2 calls i want to disable caching and as i am using next.js extended fetch api. I set cache:no-store. Now if i switch between pages, i see my data is stale. I will try setting key attribute, but if i set key attribute does caching works for my first api call?
@hamedbahram
@hamedbahram 10 месяцев назад
Interesting scenario here 🤔 I'd have to see the code for this to know how you're implementing all these requests. Use the key and let me know how it goes.
@hey.............
@hey............. 10 месяцев назад
Key attribute doesn't seem to work
@hamedbahram
@hamedbahram 10 месяцев назад
@@hey............. If you turn the whole page or all your fetch requests to dynamic, does it solve the problem?
@ekimdev7622
@ekimdev7622 7 месяцев назад
Await method is cool !can we promise.all 2 different promises and await both of them in await function ?
@hamedbahram
@hamedbahram 7 месяцев назад
Yes, definitely
@zhiven7484
@zhiven7484 6 месяцев назад
Nice Video!! This is an optimistic situation, but how to handle error if the server action data fetching return something error?
@hamedbahram
@hamedbahram 6 месяцев назад
What this video for handing errors → ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-uAh6ZOytUDk.html
@liu-river
@liu-river 8 месяцев назад
So this is great, but when the images come in, you can see there is a fraction of second of gray background before the images appear, but the text is instant. Is there a way to avoid that so the image and text appear at the same time? I guess what I mean is like how Unsplash shows a blur image while loading.
@hamedbahram
@hamedbahram 8 месяцев назад
Yes the `Image` component allows you to show a blurred placeholder before the actual image loads. You can read more here → nextjs.org/docs/app/api-reference/components/image#placeholder
@liu-river
@liu-river 7 месяцев назад
@@hamedbahram Hey, thanks for all the hard work you put into this channel, I learned a lot from you. I have another question, instead of passing in a random key, what if we pass in the search param as key so that repeated searches will hit the cache. I am just thinking out loud and haven't tried to implement it. What do you think? BTW the way you solved it in the first place really showed your knowledge of how things work behind the scene, I would never thought of a workaround like that. Very impressive.
@hamedbahram
@hamedbahram 7 месяцев назад
@@liu-river Glad to hear you've learned from my channel. That's an interesting idea 🤔try it out and let me know how it goes.
@liu-river
@liu-river 7 месяцев назад
@@hamedbahram I watched your video again just to consolidate what is happening here. I used the Await helper which is super cool BTW to use in conjunction with Suspense. My theory worked. My app is a filter rather than a search but the logic is the same right, so on searchParams thats already been visited, no waiting, cache hit and page render straightaway. On the other hand searchParams that have not been cached, loading UI kicks in. It's so smooth. I passed key={searchParams.sort as string} to my top div rather than UUID. Thanks again Hamed!
@lala-wb7gi
@lala-wb7gi 3 месяца назад
Suspense fallback is not showing
@hamedbahram
@hamedbahram 3 месяца назад
Suspense fallback only shows the first time.
@deepanshuverma3536
@deepanshuverma3536 10 месяцев назад
Its working in Devlopment mode but when prodcution fallback is not showing
@hamedbahram
@hamedbahram 10 месяцев назад
Not sure why you're experiencing that. It works on my end => next-pagination-one.vercel.app/
@deepanshuverma3536
@deepanshuverma3536 9 месяцев назад
is the problem with nginx?
@hamedbahram
@hamedbahram 9 месяцев назад
@@deepanshuverma3536 Not sure!
@AhmedYasser-no1lc
@AhmedYasser-no1lc Месяц назад
When disable js in browser, display skeleton loading page, how when disable js , show skeleton and data or display data only when disable js
@hamedbahram
@hamedbahram Месяц назад
I'm not sure if I understand the question!
@tomassabol59
@tomassabol59 8 месяцев назад
isn't this solution going to introduce hydration errors?
@hamedbahram
@hamedbahram 8 месяцев назад
Why would that be?
@mehdifada-yi5074
@mehdifada-yi5074 10 месяцев назад
merci ke enghad khobi mishe rajebe kar ba headlessUi ham video besazi
@hamedbahram
@hamedbahram 10 месяцев назад
Merc, hatman!
Далее
Loading UI, Suspense, and Streaming in NextJs 13
19:43
I Made a FAST Search Engine
8:17
Просмотров 144 тыс.
Infinite Scrolling in NextJs 13 Using Server Actions
17:58
Next.js Server Actions...  5 awesome things you can do
7:51
Adding Search Feature in Server Components | NextJs 13
22:25
The Story of Next.js
12:13
Просмотров 550 тыс.
Server-side Pagination with NextJS 13 Server Actions
19:27
Top 10 CSS One Liners That Will Blow Your Mind
13:34
Просмотров 912 тыс.
Using Images in Next.js (next/image examples)
9:10
Просмотров 93 тыс.
Кто производит iPhone?
0:59
Просмотров 340 тыс.