Simple Frontend Pagination | React

Поділитися
Вставка
  • Опубліковано 12 вер 2024

КОМЕНТАРІ • 501

  • @michelezucca5819
    @michelezucca5819 3 роки тому +81

    This is like the easiest and most simple way of paginating with React I've seen, much better than many other tutorials, hats off Brad you're always the man

  • @WorldXKIZOation
    @WorldXKIZOation 2 роки тому +29

    Even in 2022, This Tutorial is still REALLY HELPFUL!
    Brad, your videos are such a HUGE help. THANK YOU!!

  • @oussemamiled4545
    @oussemamiled4545 5 років тому +29

    brad, i really don't have much time but when you post a video, like it's a must watch

  • @AbdulelahAlJeffery
    @AbdulelahAlJeffery 5 років тому +154

    Traversy Media is the new Khan Academy for all things web .. excellent job Brad!

    • @romanpabianczyk8870
      @romanpabianczyk8870 4 роки тому

      Bullshit. This code doesn't work for me.

    • @avthreek
      @avthreek 4 роки тому +3

      @@romanpabianczyk8870 yeah, it only does for small amount of results. Not for thousands as Brad said in the end.

    • @yusuffakhreddin263
      @yusuffakhreddin263 4 роки тому

      @@avthreek do you know why ?

    • @avthreek
      @avthreek 4 роки тому +6

      @@yusuffakhreddin263 it is easier to fetch small amount of results when needed, rather than getting ALL the results and paginating them on the front end.
      For example my table have millions of rows and those rows have even more results attached in foreign tables. So loading them All is very expensive in a loading time and size and it is also unnecessary if user wants to get for example second page results and he will never reach third page. For such large data we paginate on the back end and retrieve pieces of data.

    • @yusuffakhreddin263
      @yusuffakhreddin263 4 роки тому +2

      @@avthreek thank you

  • @joejorgensen4509
    @joejorgensen4509 2 роки тому +2

    This was possibly the best coding tutorial I've ever watched. I've been browsing google for hours just trying to find a decent tutorial and this was easily the best, super straight and to the point and great at explaining everything thats going on. Thank You!

  • @GabrielRamirez-rm7qh
    @GabrielRamirez-rm7qh 2 роки тому +49

    PSA: If using this pagination component inside of a route ,the anchor tag will navigate you away from your route and throw an error. The "!# href is a hack to trigger javascript while avoiding side effects. It can work in some cases but is not semantically correct . The fix for this, and semantically correct option would be to simply remove the href attribute and use a button tag instead of an anchor tag.

  • @farhan787
    @farhan787 4 роки тому +12

    I can't thank you enough Brad, THAAAAAANNNNNNKKKKKKKKKKKSSSSSSSSSSS. a lot for this, I needed to implement it in one of my project on my new job and I'm not good at frontend but because of you, I was able to implement it ❤️❤️❤️❤️

  • @mekabeka23
    @mekabeka23 4 роки тому +18

    This was the simplest tutorial I've seen all day on pagination. Thank you. I understood 100% all while the simple way to use hooks. You're awesome.

  • @matthiasmatanda4295
    @matthiasmatanda4295 3 місяці тому +1

    I watched this in 2024, still a valid tutorial, thanks God for Brand Traversy Media

  • @diegogimbernat9253
    @diegogimbernat9253 4 роки тому +2

    Dude, I'm putting an altar of you next to my desk, it's official. U are such a great teacher, thanks for all the great content.

  • @ericmomoh7927
    @ericmomoh7927 Рік тому +1

    Finally I saw i pagination tutorials that doesn't use a paginated library. Perfect to learn how that really works with actual code.

  • @Gogetta94
    @Gogetta94 4 роки тому +1

    I began taking his class in udemy about a month ago and I will take his courses ever since. great teacher of mine

  • @denniszenanywhere
    @denniszenanywhere 5 років тому +4

    Waking up with a new Brad video is the best. Thanks!

  • @IsaacAsante17
    @IsaacAsante17 5 років тому +1

    You actually listened to the request from your users. You really care about your viewers! 😃

  • @narendrajoshi5460
    @narendrajoshi5460 5 років тому +1

    Thank you so much Brad. I was the guy who asked for this video..Thank you again for your work..you are my god and my inspiration

  • @vince9593
    @vince9593 3 роки тому +1

    Great video TM. You explain things so clearly with additional 'why we do this...' thrown in which gives context rather than just running through lines of code. Thanks !

  • @pavleta777
    @pavleta777 2 роки тому +2

    Thank you, Brad! This tutorial was extremely useful! I was struggling with Material UI as beginner in React but you made building pagination to look so easy and clean! You thought me so much and I am very grateful to everything you do for us! Much love!

  • @RobertTodar
    @RobertTodar 5 років тому +5

    I love these short and simple lessons. I learned so much from this. Thank you!

  • @dzajakeks5539
    @dzajakeks5539 9 місяців тому

    Okay this one really helped, thank you. Even after 4 years, your content is helpful

  • @igoralves1925
    @igoralves1925 4 роки тому

    i've searching about it for a few hours, I watched some video and read some blogs but your content was the only one that really helped me . Thanks !

  • @manasiroy9510
    @manasiroy9510 4 роки тому +2

    Who dislikes this amazing video? This is very very helpful. I just love it.

    • @emreaka3965
      @emreaka3965 3 роки тому

      They should comment that why did not they dislike the video for. ^^

  • @aaronkagandev
    @aaronkagandev Рік тому

    Dude you're a G. This is by far the cleanest way i've seen so far

  • @javadmohammadi3943
    @javadmohammadi3943 3 роки тому

    oh thank God finally I find the best video about pagination

  • @pam_prunelle1693
    @pam_prunelle1693 4 роки тому

    With your tutos, I progressed, raised my level. A big thank-you
    Brad Traversy

  • @smsibasish
    @smsibasish 5 років тому +41

    Congrats Brad for 777k subscribers 😄

  • @hn031
    @hn031 4 роки тому

    Thanks man. I'm at point in a project where I had to chose which pagination to use. The data coming from the backend is already paginated, but I don't like that a new request had to be sent to the backend each time a new page is requested; I consider this too much load. Then I didn't want to use a package to paginate my data. What I'm left with is to learn how to do the pagination; you just helped out. Thanks a lot . You're saving tons of life and jobs.

  • @tomasliendo3127
    @tomasliendo3127 2 роки тому

    Incredible tutorial :D , well explained step by step and not skipping anything, the truth has helped me a lot, thanks for the time! Greetings from Argentina.

  • @HermesNautico
    @HermesNautico 4 роки тому +1

    Thanks, Brad. This was my first intro to pagination. I tried another instructor but he uses 'lodash' for something you made so simple.

  • @JoseAlbertoMendezPolanco
    @JoseAlbertoMendezPolanco Рік тому

    2023 and this tutorial is so useful! Thanks a lot

  • @matthewgarcia3540
    @matthewgarcia3540 11 місяців тому

    EVEN IN 2023 this was helpful with a bit tweaks from newer hooks that reacts has now this is great thanks!

  • @jigsaw6642
    @jigsaw6642 9 місяців тому

    watched this video, uses pure react to develop pagination, one of the best concept using only use state hooks, very usefil

  • @TheNikola2910
    @TheNikola2910 4 роки тому +3

    This helped me get a job! Thank you so much Brad!

  • @Buffnerd_i
    @Buffnerd_i 2 роки тому

    Kind of amazed by how easy this was, ty Brad!

  • @markkatona4501
    @markkatona4501 Рік тому

    this video was really helpful, I saw many of them about pagination, but this is a quality content, thank you so much :D

  • @BlobyCat
    @BlobyCat 3 роки тому +2

    Very good tutorial ! for the , i've found that href="!#" doesn't work, it does with href="#!". Maybe it's because i don't have bootstrap

    • @kalixaegus4042
      @kalixaegus4042 2 роки тому

      Im thank ful that i see your comment mine not working to when i use "!#"

  • @kimmotech
    @kimmotech 2 роки тому

    Thanks a lot man, this really helped me understand how pagination works and now I have a full component I can always reuse

  • @gsalazarmusic
    @gsalazarmusic 3 роки тому

    Dude!!! Thank you so much! My nightmares doing paginations are over!!!

  • @GustavoPozo
    @GustavoPozo 8 місяців тому

    very good way of pagination, it helped me a lot to set up my pagination system

  • @1337-coder
    @1337-coder Рік тому

    for anyone wondering why indexOfLastPost = currentPage * postsPerPage is valid:
    the slice method's end parameter can be greater than the array length. if this is the case (for example last page has fewer posts), slice uses the array's length as the end parameter.

  • @viktoriazubchenko5428
    @viktoriazubchenko5428 3 роки тому

    wow! Thank you for your video, it was so helpful for me, not only as pagination tutorial, but also as a short lesson about how cool hooks are.

  • @user-wt9xm7pj7i
    @user-wt9xm7pj7i 4 роки тому +5

    but there is a small question - how to make the first link active when the page is loaded, since the page reloads on the first click

  • @arifeljutviovska7672
    @arifeljutviovska7672 4 роки тому

    Man I love you I was searching everywhere for this and it works thank you so much

  • @kaytiwari6018
    @kaytiwari6018 2 роки тому +1

    Phenomenal video, that was crystal clear. Thanks for posting the code too, I'm gonna practice with the Json file. I have a react technical interview coming up so thanks so much for this.

  • @lexsemenenko
    @lexsemenenko 5 років тому +4

    Thank you. Right in time. Would be more complete showing how to make pagination button active.

  • @Mathis-zk7uq
    @Mathis-zk7uq 5 років тому +3

    Thank you very much :) Can't wait for the full stack video !!!

  • @kiransurage
    @kiransurage 5 років тому

    Anyone else hits the Like button as they start watching, bcuz its Brad, and u just know it's going to be awesome?

  • @ashokk9289
    @ashokk9289 2 роки тому

    This is the Best and Easiest Pagination I've ever seen. Thank You Soo Much for this Wonderful video Brad. I'm Your new Subscriber

  • @Hashmimohammed
    @Hashmimohammed 5 років тому

    Transforming many lives with your work. You Rock

  • @L-Wassa
    @L-Wassa 4 роки тому

    Traversy Media the best channel for web developers!!!

  • @aurimasrimkus4705
    @aurimasrimkus4705 2 роки тому +1

    This is just amazing, so simple and works like a charm!

  • @madeinbalcony7237
    @madeinbalcony7237 4 роки тому

    this is worth not skipping ads. as always, thanks brad :D

  • @LCaputo
    @LCaputo Рік тому

    Echoing what everyone else is saying, this is a great tutorial. Very helpful! Thank you!

  • @albertohuerta
    @albertohuerta Рік тому

    Still relevant in 2023. React-bootstrap table needs an update with pagination. Thanks for vid.

  • @etekumoses3320
    @etekumoses3320 Рік тому

    This is an awesome video you saved me countless hours..

  • @yendrembamrabinchandra476
    @yendrembamrabinchandra476 5 років тому +20

    Brad, please upload a tutorial Video on Data Structures and Algorithms in JS

    • @ilyas9303
      @ilyas9303 5 років тому +2

      there is one in freecodecamp channel

  • @karma_yogi_42
    @karma_yogi_42 3 роки тому

    what a life saver!
    thanks needed this for a interview assignment!

  • @bartvandenborne9644
    @bartvandenborne9644 5 років тому +1

    Thanks Brad, this is a big help. One sidenote: the href attribute in the pagination component crashed my app, I'm not familiar with the exclamation mark in href="!#", when I replaced it with href="#", and everything worked fine. I read elsewhere that using anchor tags with onClick events cause unexpected behavior, so I replaced those with buttons (developer.mozilla.org/nl/docs/Web/HTML/Element/a).

  • @randolphperkins6584
    @randolphperkins6584 Рік тому

    Great video! I completed this tutorial, and I am looking forward to watching a pagination lesson using the back end. Thank you!

  • @shivanimathur1356
    @shivanimathur1356 3 роки тому

    Thank you for making this so easy, I've been hitting my head on pagination for 3 days

  • @tatosalusu
    @tatosalusu 2 роки тому

    I love you so much, this one is so simple for newbie.

  • @TheGasbb
    @TheGasbb 3 дні тому

    You are the goat man, absolute unit

  • @rez41
    @rez41 5 років тому +1

    This is great. I'm just getting to grips with React and hooks so this was perfect - I may even use pagination in my next project now. Thanks Brad

  • @scv4634
    @scv4634 2 роки тому +1

    You are the best, Im taking a bow

  • @brucelee7782
    @brucelee7782 2 роки тому

    omg this dude saved me life!!

  • @wingsaber629
    @wingsaber629 5 років тому +1

    Thanks Brad! SUPER USEFUL. For the full-stack, put pagination it in your MERN stack course! I will be doing that. Thanks.

  • @HarshSingh-ot1jj
    @HarshSingh-ot1jj 3 роки тому

    This is the best video on pagination ❤️

  • @roman_mf
    @roman_mf Рік тому

    Thank you so much Brad! Exactly what I was looking for. This approach was super useful for my own project.

  • @julielesage960
    @julielesage960 4 роки тому

    Perfect clear and simple, up to date code, and I love your voice ! many thanks

  • @marcuszierke7930
    @marcuszierke7930 5 років тому

    No idea what those 12 haters have to complain about - amazing video, simple, efficient and great way of explaining.

  • @shauntonesify
    @shauntonesify 4 роки тому

    I love you Brad, you saved my life again on another project.

  • @sunnydevtale3021
    @sunnydevtale3021 2 роки тому

    Thank you, Brad! This tutorial was Awsome.!

  • @md.fazlulkarim8847
    @md.fazlulkarim8847 5 років тому

    In the video, you wrote the useState code and right after that, you showed us how actually state and useState are similar. That took at best two seconds. But this type of little things makes you different than thousands of content creator.
    Please consider making a short course on Algolia with react in the future? Take love...💛💛💛

  • @aniketa.raikwar1983
    @aniketa.raikwar1983 3 роки тому

    Excellent Video, Thank you so much, without this tutorial i can able to implement pagination.

  • @brunagomesdasilva7777
    @brunagomesdasilva7777 3 роки тому

    Many Thanks, Brad!! It really helped me.
    Also I'd like to show how I solve my url issue.
    I changed
    paginate(number)} href="!#" className="page-link">{number}
    by
    : Add Link react-router-dom
    paginate(number)}>
    {number}

  • @marimuthur9456
    @marimuthur9456 2 роки тому

    Extraordinary explanation 👌🏼👌🏼👌🏼

  • @francisfernando4605
    @francisfernando4605 3 роки тому

    Very easy to understand. Great tutorials. Thank you so much

  • @BadtzCarol
    @BadtzCarol 3 роки тому

    Thank you so much for the awesome tutorial!
    Now I have a pagination component that can use in every project

  • @dermotsheerin5672
    @dermotsheerin5672 4 роки тому

    Thanks a mill Brad that was excellent.....as always you explain all steps

  • @ShubhamRathod-jg9gt
    @ShubhamRathod-jg9gt 5 років тому +2

    Keep post more on React.js related topics (: and congratulations for 777K subscribers

  • @andrewcodes
    @andrewcodes 5 років тому +1

    Amazing, been searching for something like this everywhere!
    It would be amazing would be if you could do it where you don't load then unless you click second or third page etc, only load recourses required - Just like you mentioned in your video. Thanks again!

  • @natefr0st239
    @natefr0st239 5 років тому

    I liked the video before I even watch it, because I know it's gonna be a good one as any other in that channel.

  • @rodolfoleal7295
    @rodolfoleal7295 4 роки тому

    Just used it on my project. Thank you very much Brad!

  • @yaoxiao6897
    @yaoxiao6897 Рік тому

    Awesome, clear and simple to follow.

  • @isbaccas
    @isbaccas 3 роки тому +1

    Thank you so much for the great walk-through. I was able to adapt this simple code into a table that stored all my accounts.
    The switch from front end to backend was also super easy. Just needed to pull from a server with my data and use a limit and offset for the data. The rest of the page work is done front end.

  • @asielvalle96
    @asielvalle96 11 місяців тому

    Thank you for sharing this information. I appreciate it.

  • @laurechapert8435
    @laurechapert8435 2 роки тому

    Extremlely useful tutorial! thanks!!!

  • @Colstonewall
    @Colstonewall 5 років тому

    Just what I needed and wanted. Thank you Brad!

  • @jasonlee7227
    @jasonlee7227 2 роки тому

    Thank you soo much, Brad! I really needed this. God bless you.

  • @pirouz_roshanzamir
    @pirouz_roshanzamir 3 роки тому

    U have no idea how much time this saved me

  • @edwardhui6274
    @edwardhui6274 4 роки тому

    Straight on point! Great tutorial for pagination on front-end side!

  • @sudharshaniyengar1587
    @sudharshaniyengar1587 4 роки тому

    Thanks Brad .. Love such cut short videos

  • @nakimapi
    @nakimapi 3 роки тому

    What a great video! Exactly what I was looking for!

  • @manuelcaceres8977
    @manuelcaceres8977 3 роки тому

    Excellent!! Thank you so much. I'm a subscriber now

  • @yutamtsmt
    @yutamtsmt 3 роки тому

    just what I needed the most. thank you for the excellent job!

  • @zoheballadin-ys5pk
    @zoheballadin-ys5pk Рік тому

    This method will result in slight lag when you have a lot of pages. To fix the lag, simply remove the anchor tag of the page numbers and put the onClick on the li tag .

  • @TheAditya64
    @TheAditya64 5 років тому

    Great work Brad.... As always loved the work.

  • @parasarora5869
    @parasarora5869 5 років тому

    loved it !!...wanted to learn this for a long time 😄 thank uuu

  • @emreaka3965
    @emreaka3965 3 роки тому +1

    Thank you! You helped much. ^^

  • @Szchmausser
    @Szchmausser 3 роки тому

    You are a BOSS! Thank you, very concise and helpful.

  • @coolpriyanks
    @coolpriyanks 3 роки тому

    simple and to the point video. Thank you for making it!