Loading Skeleton for Search & Pagination in NextJs 13 Movie App

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ก.ย. 2024

ความคิดเห็น • 46

  • @AdilChehabiChkilel
    @AdilChehabiChkilel ปีที่แล้ว +5

    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  ปีที่แล้ว

      Glad to hear that! Appreciate your comment.

  • @PrafulKarmur-l2k
    @PrafulKarmur-l2k 10 หลายเดือนก่อน +1

    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  10 หลายเดือนก่อน

      You're welcome. I'm glad to hear that.

  • @germain1984
    @germain1984 ปีที่แล้ว +1

    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  ปีที่แล้ว

      Great suggestion! Glad you found it helpful.

  • @amir25370
    @amir25370 8 หลายเดือนก่อน +1

    What a perfect tutorial. Amazing. I wish i knew your channel earlier

    • @hamedbahram
      @hamedbahram  8 หลายเดือนก่อน

      Glad it was helpful! Welcome to the channel.

  • @ts3798
    @ts3798 3 หลายเดือนก่อน +1

    Very helpful, thanks Hamed.

    • @hamedbahram
      @hamedbahram  3 หลายเดือนก่อน

      My pleasure!

  • @eliuddyn
    @eliuddyn ปีที่แล้ว +1

    Amazing Bro 🔥🔥

  • @nomadmack
    @nomadmack ปีที่แล้ว +1

    Great video, thanks a lot!

  • @NOTHING-en2ue
    @NOTHING-en2ue ปีที่แล้ว +1

    very well tutorial, thanks a lot ❤

  • @ekimdev7622
    @ekimdev7622 10 หลายเดือนก่อน +1

    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  10 หลายเดือนก่อน

      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 10 หลายเดือนก่อน

      Thank you so much Hamed, that was really hard to discover it to me :D !@@hamedbahram

    • @ekimdev7622
      @ekimdev7622 10 หลายเดือนก่อน

      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

  • @ekimdev7622
    @ekimdev7622 10 หลายเดือนก่อน +1

    Await method is cool !can we promise.all 2 different promises and await both of them in await function ?

    • @hamedbahram
      @hamedbahram  10 หลายเดือนก่อน +1

      Yes, definitely

  • @zhiven7484
    @zhiven7484 8 หลายเดือนก่อน +1

    Nice Video!! This is an optimistic situation, but how to handle error if the server action data fetching return something error?

    • @hamedbahram
      @hamedbahram  8 หลายเดือนก่อน +1

      What this video for handing errors → th-cam.com/video/uAh6ZOytUDk/w-d-xo.html

  • @hey.............
    @hey............. ปีที่แล้ว +1

    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  ปีที่แล้ว

      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............. ปีที่แล้ว +1

      Key attribute doesn't seem to work

    • @hamedbahram
      @hamedbahram  ปีที่แล้ว

      @@hey............. If you turn the whole page or all your fetch requests to dynamic, does it solve the problem?

  • @lala-wb7gi
    @lala-wb7gi 5 หลายเดือนก่อน +1

    Suspense fallback is not showing

    • @hamedbahram
      @hamedbahram  5 หลายเดือนก่อน

      Suspense fallback only shows the first time.

  • @liu-river
    @liu-river 10 หลายเดือนก่อน +1

    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  10 หลายเดือนก่อน +1

      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 10 หลายเดือนก่อน

      @@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  10 หลายเดือนก่อน

      @@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 9 หลายเดือนก่อน

      @@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!

  • @tomassabol59
    @tomassabol59 10 หลายเดือนก่อน +1

    isn't this solution going to introduce hydration errors?

    • @hamedbahram
      @hamedbahram  10 หลายเดือนก่อน

      Why would that be?

  • @deepanshuverma3536
    @deepanshuverma3536 ปีที่แล้ว +1

    Its working in Devlopment mode but when prodcution fallback is not showing

    • @hamedbahram
      @hamedbahram  ปีที่แล้ว +1

      Not sure why you're experiencing that. It works on my end => next-pagination-one.vercel.app/

    • @deepanshuverma3536
      @deepanshuverma3536 ปีที่แล้ว +1

      is the problem with nginx?

    • @hamedbahram
      @hamedbahram  ปีที่แล้ว

      @@deepanshuverma3536 Not sure!

  • @AhmedYasser-no1lc
    @AhmedYasser-no1lc 3 หลายเดือนก่อน

    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  3 หลายเดือนก่อน

      I'm not sure if I understand the question!

  • @mehdifada-yi5074
    @mehdifada-yi5074 ปีที่แล้ว +1

    merci ke enghad khobi mishe rajebe kar ba headlessUi ham video besazi