Thank you. Actually I am working on Complete React JS course, If you are interested then you can register for that. For first 100 Students it will completely FREE. Fill This Form:- forms.gle/aBtV1aRdcbztDwF3A
Blown away by this, watched a few videos today on how to add some pagination functionality and they all go on for about 30 minutes. You had it explained in 7, so easy to understand too! Subbed
As a newbie, I was avoiding implementing this feature as a I knew it'd give me a headache. After watching this, I can't wait to get it done today on my personal project. Thank you so much!
your channel will blow up buddy, just keep up the awesome work really impressed. only a few suggestions for future videos, 1. keep them short like how your doing, crazy graphics and long intros just wastes ourr time eh 2. keep repos as up to date as possible 3. do updated versions because a lot of previous viewers will come back to see what youve come up with next 4. if you run out of lessons to teach take requests and set up a telegram or discord to live chat with the people you teach! thanks for this video super appreciative and always stoked to see a new channel rise up on YT I started watching hashlips when he had 3k subscribers. you got this!
I am from Bangladesh, I follow your channel, and your teaching style is really awesome, I have learned more easies way from your channel videos. We need more videos on javascript and React, Thanks, brother Love from Bangladesh
Fantastic tutorial! I don't typically comment on videos, but I had to give you credit. This was better than several others I combed through. Was easy to follow, understand and build on top of. Whole video was great, good job!
I think that at 0:56, row number 10 is not really necessary to be a state, cause the post per page will never be changed as a result of some event, unless you directly change it manually, so you can just give it a regular variable :)
I am currently working on Countries REST API task and was looking for a simple pagination cause i did't want to display all 250 items on a single page. I can't wait to get to my laptop and implement this to my code, thank you so much !
Hi! You've made a big job which helped me a lot. It would be nice if you show us a way to create fancy pagination which looks like 1 2 3 ... 8 ... 18, 19, 20
Now I know pagination because of you thank you brother in addition to your project I have added previous, forward, first, last button. can you teach us how to add ellipsis when we have hundreds of pages
Thank you so much for your support. I never done that ellipsis in pagination. But I think can do that by adding conditions. Sorry I don't know that properly
Thank you for a very easy to understand video. I successfully apply this to my project. ❤ I encountered a small issue with scrolling: when I clicked to change the page using pagination, it jumped to the top of the page, while my element was at the bottom. I fixed the problem using the useRef() and useEffect() hooks, so I wanted to share the solution for anyone who might need it: ``` import { useEffect, useRef } from 'react'; // initial setup const Pagination = ({ ... }) => { const scrollPosition = useRef(0); // To store the scroll position before page changes useEffect(() => { // Restore scroll position after state update window.scrollTo(0, scrollPosition.current); }, [currentPage]); // the rest of the code ``` }
watched this video, best explanation with animation, uses pure react with use effect hooks, effective usage, simple, i selected this to implement in my code. thanks
Thats awesome. you explanation is so awesome. After watch this video my concept about pagination is clear now. thank you so much for such an amazing video. ❤
best explanation in entire youtube . sir make a video like this on add to cart functionality with redux toolkit and with context api. thanks sir I'm waiting for it.
This code is working if the posts are even...example If there are 33 posts I have to display 10 posts on each page then it is displaying only 3 pages means ie 30 posts ...the rest 3 post is not displaying...for this what to do...?
i read the doc and it tell me the slice medthod has 2 params , the starting index and last index . It will cut the current array to a new array from the starting index to the last index - 1 . Is it right ? I need help
Yes you are correct.The slice method is like taking a piece of a cake. Imagine you have a cake (an array), and you want to cut a slice from it. - The starting index is where you want to begin cutting. - The ending index is where you want to stop cutting (but not include that part). So, if you have an array like this: const cake = ["chocolate", "vanilla", "strawberry", "caramel", "lemon"]; And you want to cut a slice from the second flavor to the fourth flavor (inclusive): const sliceOfCake = cake.slice(1, 4); The slice method takes a slice starting from the element at index 1 ("vanilla") and goes up to, but does not include, the element at index 4 ("caramel"). So, sliceOfCake would be: ["vanilla", "strawberry", "caramel"] It's like saying, "Give me a piece of the array starting from here and stopping just before there."
assume we have totally 1000 apps which is returned by the API and we can not load all the apps at once because it possess storage problem assume that right now iam some where in the 500th app page whatever the previous page apps are there are not required. i need to delete those and if i go back i should be able to get those as well.. for this sinario how could we achive
Can someone please explain to me how is it possible to mutate the setCurrentPage state through props ? Because as we all know, data flow in react is uni-directional! Im confused! How its possible to mutate the parent component state in the child component ?
@@CodeBlessYou Please I have another question. Is this approach better than making an api call to fetch each page? Thanks for your anticipated response
@@andrewaghoghovwia1948 this is obviously faster because you already have all data. so when you switch page it is already available whereas fetching data every page would make a little delay.
HI there, this was a very nice video, but i wanna ask if I have a search function for the list, can the search function still search from all data not from displayed data per page only?
🎓Get FREE access to my upcoming Ultimate Node.js Course for the FIRST 100 students: forms.gle/8m9XA7kmc17nHfhz8 🚀
This was an amazingly clear and concise video. Thank you for this and I hope you make many more in this exact style.
Thank you. Actually I am working on Complete React JS course, If you are interested then you can register for that. For first 100 Students it will completely FREE.
Fill This Form:- forms.gle/aBtV1aRdcbztDwF3A
Blown away by this, watched a few videos today on how to add some pagination functionality and they all go on for about 30 minutes.
You had it explained in 7, so easy to understand too!
Subbed
Thank you for your support ❤️😍
everything explained just in 7 min so amazingly, love u bro
Love you❤❤❤
Great buddy you just made this pagination very easy for me
wonderful explanation kudus
Glad to hear that. Thank you so much❤❤❤
Absolutely amazing. Detailed and clear. Thanks a lot! Keep up your good work!
Thanks for your support. Grateful for that❤❤
perfect video for pagination so glad i didnt waste time on other videos
Glad to hear that. Thank you so much
damn, your code is very easy to understand, your voice too. Thank you verymuch
Glad to hear that❤❤❤
The easiest and the fastest way pagination, also good core concept for beginner thankyou bro, subbed :D
Thanks for your support❤❤
Bro you litrally break down those 30min long videos in 5min, that too with more clearer logic explanation than them. You deserve a subscribe 🤝
Glad I could help
Great video! Thank you for being so straightforward and clear
❤❤
As a newbie, I was avoiding implementing this feature as a I knew it'd give me a headache. After watching this, I can't wait to get it done today on my personal project. Thank you so much!
❤❤❤
Usually I watch multiple videos to understand concepts, your explanation is clear and makes sense. Great editing and format. Cheers NZ
Glad to hear that❤❤❤
your channel will blow up buddy, just keep up the awesome work really impressed.
only a few suggestions for future videos,
1. keep them short like how your doing, crazy graphics and long intros just wastes ourr time eh
2. keep repos as up to date as possible
3. do updated versions because a lot of previous viewers will come back to see what youve come up with next
4. if you run out of lessons to teach take requests and set up a telegram or discord to live chat with the people you teach!
thanks for this video super appreciative and always stoked to see a new channel rise up on YT I started watching hashlips when he had 3k subscribers. you got this!
Thank you so much brother for this comments and suggestions. I will apply them as soon as possible. Really grateful for this support😇❤
I am from Bangladesh, I follow your channel, and your teaching style is really awesome, I have learned more easies way from your channel videos. We need more videos on javascript and React, Thanks, brother Love from Bangladesh
Thanks for this Feedback❤
Man this is a great tutorial. Very helpful and to the point.
Thanks for this comment❤
Fantastic tutorial! I don't typically comment on videos, but I had to give you credit. This was better than several others I combed through. Was easy to follow, understand and build on top of. Whole video was great, good job!
Glad to hear that❤❤❤
The way you broke down the topic and made it super easy to follow along was incredible. I loved how you kept it short and precise
Thank you so much for your support❤❤❤
I think that at 0:56, row number 10 is not really necessary to be a state, cause the post per page will never be changed as a result of some event, unless you directly change it manually, so you can just give it a regular variable :)
Yeah, Thanks for Suggestion😇❤
Easy to understand. Thank you
wow, superb explanation. So clean and precise. Thank you sooooo much , this helped me a lot 🥳
❤❤❤
Fantastic tutorial. This was so much easier than other solutions I've looked at and is exactly what I was looking for! Thank yoou so much!
❤❤❤❤
No where on the RUclips I found a video like this bro. Hatts off bro you made all what I wanted in this video. Thankyou so much
Thank you so much for your support. Really grateful for that❤❤
Bro Can u also add Next and Previous Button to it?
Super tutorial! I will do my best to implement this for my project!
Great❤❤❤
bro that is amazing video! short, easy and understandable
❤❤❤
Awesome tutorial! thank you from belgium
Thanks for your support❤❤ Love from India
I am currently working on Countries REST API task and was looking for a simple pagination cause i did't want to display all 250 items on a single page. I can't wait to get to my laptop and implement this to my code, thank you so much !
Thank you for your support. Grateful for that buddy😇❤
Best video on this topic. Subscribed!
Thank you so much for your support❤❤
Thanku sir for this tutorial, very easy to understand
My Pleasure ❤❤
Great explanation! Thank you!
❤❤❤
what a effort bro , who don't have interest in programming , can also watch this and enjoy this video by your way of explanation, its great
Thank you so much for your feedback❤ Really grateful for that😇😇
I have to thank you for make it possible for me to rest for the weekend. The real chad.
Welcome😀
Thankyou so much for explaining why and how things are happening!
❤❤❤
Hi! You've made a big job which helped me a lot. It would be nice if you show us a way to create fancy pagination which looks like 1 2 3 ... 8 ... 18, 19, 20
I will try to upload
I thought pagination is really complex but you explained that easiest possible way thank you
Glad to hear that. Thanks for watching❤❤
Very simple and clear explanation. Thank you!
Glad it was helpful!
You are our saver, thank you very much!
❤❤❤
Now I know pagination because of you thank you brother in addition to your project I have added previous, forward, first, last button. can you teach us how to add ellipsis when we have hundreds of pages
Thank you so much for your support. I never done that ellipsis in pagination. But I think can do that by adding conditions. Sorry I don't know that properly
Thank you for a very easy to understand video. I successfully apply this to my project. ❤
I encountered a small issue with scrolling: when I clicked to change the page using pagination, it jumped to the top of the page, while my element was at the bottom. I fixed the problem using the useRef() and useEffect() hooks, so I wanted to share the solution for anyone who might need it:
``` import { useEffect, useRef } from 'react';
// initial setup
const Pagination = ({ ... }) => {
const scrollPosition = useRef(0); // To store the scroll position before page changes
useEffect(() => {
// Restore scroll position after state update
window.scrollTo(0, scrollPosition.current);
}, [currentPage]);
// the rest of the code
```
}
Great. Thank you so much for this solution❤❤❤
Best tutorial on pagination ever.
❤❤❤
Bro this is awesome your explanation was very clear. Thank a lot
Thanks for your support😀❤❤
bro you explain very well
Glad to hear that brother❤❤❤
Thanks! It's very useful!
❤❤❤
Thats was awesome crystal clear !!, ..very simple to understand ...thank you very much 😁👍
Thanks for your Feedback😀
watched this video, best explanation with animation, uses pure react with use effect hooks, effective usage, simple, i selected this to implement in my code. thanks
Thank you so much for watching this tutorial❤❤
ADD "Math.ceil(totalPosts / postPerPage) - 1" in your pagination component if you are getting blank page on your last pag.
or just use Math.floor(totalPosts / postPerPage)
This is a greate tutorial clear and concise
❤❤❤
I subcribed for you. Thanks for your helpful knowledge!!!
❤❤❤
Great tutorial. Thanks❤
❤❤❤
You are the best! Thank you.
Thanks for your support❤❤❤
This was really helpful, thank you so much!
Thank you so much for your support. Really grateful for that❤❤
Thats awesome. you explanation is so awesome. After watch this video my concept about pagination is clear now. thank you so much for such an amazing video. ❤
Thank you for this nice comment ❤🙌
Amazing! Thanks for your work!
Thanks for your support❤❤❤
Great Video! Very concise and straight to the point
❤❤❤
It is very great tutorial for pagination explained in simple way 💯
Thank you for your support😇❤
Awesome! Thanks! It helped me with what I was working on!
Thanks for Feedback😀
Teacher at college: IQJHSDFÏPJQXCPIJQF
random guy i found on youtube: * actual tutorial *
😀❤❤
Awesome plus very helpful and educative.
Thanks Dev
Thanks for Feedback😀
How come i didnt tough about slice omg, thanks for sharing this and maiking it easier to understand.
❤❤❤
Excellent tutorial; simple and concise
Thanks for support😇❤
best video ever on pagination
Thank you so much for your love❤❤❤
Thank you so much my friend, it works
Welcome Brother😀❤
Thank you, finally I could have understood pagintation
Thanks for your support. Really grateful for that❤❤
Thank you so much for the concise explanation!
😇❤
best explanation in entire youtube .
sir make a video like this on add to cart functionality with redux toolkit and with context api.
thanks sir I'm waiting for it.
It will take time. Because Currently I am working on the Node JS Course❤❤❤
Thank you man very helpful
❤❤❤
This code is working if the posts are even...example
If there are 33 posts I have to display 10 posts on each page then it is displaying only 3 pages means ie 30 posts ...the rest 3 post is not displaying...for this what to do...?
Great video, you explained this very well. Thank you!
Thank you so much for this comment❤
So helpful thank you!
❤❤❤
Thanks bro. Genius work. 🙏🙏🤩
Thanks for this comment❤❤
You earned a sub, thank you
Grateful for that❤❤❤
Awesome explanation brother 🤝👍
❤❤❤
Thanks man that really helpful
❤❤
This was helpful, thanks!
😇❤❤
Very clear. I am already subscribed
Grateful for that❤❤❤
Amazing! please if you can keep up the good work!
thank you for the explanation sir😻
My pleasure❤❤❤
Thank you sir, it helped me a lot!
❤❤
Very useful thank you bro
❤❤❤
i read the doc and it tell me the slice medthod has 2 params , the starting index and last index . It will cut the current array to a new array from the starting index to the last index - 1 . Is it right ? I need help
Yes you are correct.The slice method is like taking a piece of a cake. Imagine you have a cake (an array), and you want to cut a slice from it.
- The starting index is where you want to begin cutting.
- The ending index is where you want to stop cutting (but not include that part).
So, if you have an array like this:
const cake = ["chocolate", "vanilla", "strawberry", "caramel", "lemon"];
And you want to cut a slice from the second flavor to the fourth flavor (inclusive):
const sliceOfCake = cake.slice(1, 4);
The slice method takes a slice starting from the element at index 1 ("vanilla") and goes up to, but does not include, the element at index 4 ("caramel"). So, sliceOfCake would be:
["vanilla", "strawberry", "caramel"]
It's like saying, "Give me a piece of the array starting from here and stopping just before there."
bro , this is the best I found .
❤❤
Great Great help brother you saved the day!!!!
My pleasure❤
Crazy Brother Amazing...
❤❤❤
assume we have totally 1000 apps which is returned by the API and we can not load all the apps at once because it possess storage problem assume that right now iam some where in the 500th app page whatever the previous page apps are there are not required. i need to delete those and if i go back i should be able to get those as well.. for this sinario how could we achive
Sorry I don't understand your question. Can you explain it with example?
Bro You Are The Best ❤️
❤❤
Superb video bro... Plesse make crud video of api with axios
very very thanks . it really helped me a lot .
Welcome😀❤
You are genius. Thanks Bro
❤❤❤❤
Good explanation ❤
❤❤
tip if you're making an API too: to improve the perfomance implement the pagination on your backend instead of getting all data and slice on frontend
Yes Helpful😀❤
simple to understand, thanks
Thanks for your comment🙌❤
i don't know what happend in this video but it works
🙂🙂
Very useful. Thank you.
Welcome and Thanks for this comment😇❤
This was awesome. What theme do you use?
AYU MIRAGE DARK
Good one 👌👌
❤
amazing bro !!
❤❤❤
Can someone please explain to me how is it possible to mutate the setCurrentPage state through props ? Because as we all know, data flow in react is uni-directional! Im confused! How its possible to mutate the parent component state in the child component ?
Very helpful ♥
Thank you so much❤
Simple clear explanation.. thanks alot.. but what of a scenario where you have more than a 100 pages ?
1. You can manually add +5 and -5 button
2. You can also add little input box for entering a page number and then display that posts.
@@CodeBlessYou Please I have another question. Is this approach better than making an api call to fetch each page? Thanks for your anticipated response
@@andrewaghoghovwia1948 this is obviously faster because you already have all data. so when you switch page it is already available whereas fetching data every page would make a little delay.
HI there, this was a very nice video, but i wanna ask
if I have a search function for the list, can the search function still search from all data not from displayed data per page only?
For that you have to add search query in your backend and call that query when input a word in search box