we should not paginate on client side, it works for small set of data but if we have say millions of rows to return then pagination would do no good cz the response will be hell lot of slow
@navinnavneet5116 Жыл бұрын
It won't work if you are applying search functionality with the pagination, even for a small set of data.
@paulsnehasish5830 Жыл бұрын
@@navinnavneet5116 it works in my springboot app, as springboot provides prebuilt functionalities to do so...
@siddhartha6916 Жыл бұрын
You can use the pagination hook along with react query
@Logan91S Жыл бұрын
There are cases to use client side pagination. And, there are cases to mix both methods together. If you are only loading 25 items per page… it’s slow if the user needs to cycle quickly. Instead, load 500.. allow client side pagination… load the next 500 when the user is nearing the last page.
@codewithguillaume Жыл бұрын
Hahaha I like the title - it's always the same, story of my life... I discover all the time new hooks or composables. Best Josh :)
@rjtdas Жыл бұрын
Hi Josh, Could you please create a series on building an eCommerce store? I really liked your similarity api and learned a lot. Thanks
@anasazkoul4899 Жыл бұрын
Hi Josh, as always I'm amazed at how much I'm learning form your videos. I have a question though. For a self-taught developer who's looking for a first job, don't you think that these hooks although would save so much time during development, would make a specially beginning developer lazy and stop thinking about problem solving and would only depend on different libraries to solve his problems for them? what do you think?
@omarjano7117 Жыл бұрын
In my opinion it's much more a developer responsibility, if you are willing to be a better developer you will simply learn the concept behind it and try to implement it. But sometimes even though you're able to implement it, it takes time and effort and it may not be like the library. It's always better to understand how it works behind the scenes but that doesn't mean you have to do it on your own
@richardtumapon3091 Жыл бұрын
@@omarjano7117 Agree
@stefanplusplus917 Жыл бұрын
do you want to solve puzzles or do you want to build products?
@d-e-v-esh Жыл бұрын
I think when your project's aim is to build a finished product then you should not worry about anything other than getting it done as simply as possible.
@Sapphiamur Жыл бұрын
This is so useful, thanks so much :)!!
@junog5552 Жыл бұрын
Brother, keep up the amazing work. ❤️🤞
@harellevi9687 Жыл бұрын
I wonder why shouldn't we just use the pagination component from the MUI library?
@sudhanshusharma9159 Жыл бұрын
Hi, I have a doubt, do we really need .FC for TS functional component? As per my understanding, it's not required now. Pleae correct me if i am wrong and provide the details.
@Luka_brx Жыл бұрын
What do u use for hosting database? Btw great content
@imnash_on_E Жыл бұрын
Sir how about ahooks library
@martapfahl940 Жыл бұрын
Jo wie geil ist das denn, danke dir man =)
@hardwired66 Жыл бұрын
More mantine UI content 😁
@realdaly Жыл бұрын
it wouldve been really better if you've showed an example of pagination with items fetched from an API
@haryanvideveloper582 Жыл бұрын
best one so far
@croko2240 Жыл бұрын
This tool is great, thanks
@syth-1 Жыл бұрын
Just a small criticism, I don't think the video title is favourable to the search algorithm on yt, originally I watch on yt Vance where I was recommended this video - except yt Vanced stopped working (unrelated info but just bare with me for a sec) Switched to working yt and tried searching the video based on the title, couldn't find it at all ;-; ofcourse there are many parameters coming to play for searchability of a video eg channel popularity, subject interest etc, I don't have all the answers but figured I'd point out what I've seen, maybe worth experimenting and see what sticks. .
@aymenbachiri-yh2hd6 ай бұрын
Thank you so much
@waleedsharif618 Жыл бұрын
Are you paying for copilot ?
@joshtriedcoding Жыл бұрын
No, it's free for students
@tathagat9586 Жыл бұрын
Great video
@serychristianrenaud Жыл бұрын
Thanks
@hextrashop Жыл бұрын
you just made it harder to paginate
@AniketKumar-x6j Жыл бұрын
Dont you think useDebounceState is the one of the dumbest hook here?. because you are executing more code to prevent simple code?
@coffeefps Жыл бұрын
It is one of the most useful based on my experience.