Loading Skeleton for Search & Pagination in NextJs 13 Movie App

Поделиться
HTML-код
  • Опубликовано: 10 сен 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.

  • @user-ji9mk2gd6i
    @user-ji9mk2gd6i 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.

  • @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.

  • @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.

  • @NOTHING-en2ue
    @NOTHING-en2ue Год назад +1

    very well tutorial, thanks a lot ❤

  • @nomadmack
    @nomadmack Год назад +1

    Great video, thanks a lot!

  • @eliuddyn
    @eliuddyn Год назад +1

    Amazing Bro 🔥🔥

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

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

  • @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 → ruclips.net/video/uAh6ZOytUDk/видео.html

  • @ekimdev7622
    @ekimdev7622 10 месяцев назад +1

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

  • @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?

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

  • @lala-wb7gi
    @lala-wb7gi 5 месяцев назад +1

    Suspense fallback is not showing

    • @hamedbahram
      @hamedbahram  5 месяцев назад

      Suspense fallback only shows the first time.

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

  • @tomassabol59
    @tomassabol59 10 месяцев назад +1

    isn't this solution going to introduce hydration errors?

  • @mehdifada-yi5074
    @mehdifada-yi5074 Год назад +1

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