Bruh are u reading my mind, I've been doing pagination in sveltekit for almost 4 days and u dono how much I'm happy when i got this notification ❣️
@Huntabyte Жыл бұрын
I’m glad to hear that! There are some great pagination components to go along with this out there. Look up ‘Pagination svelte repl’ on Google for some ideas which may help you out a bit more!
@Allformyequine Жыл бұрын
Omgosh same here LOL!! I had to make my own weird version ... till now!!! Thank you!
@NotAllHeroesWearCapes-101 Жыл бұрын
In continuation of our tradition, here is my comment on how great your video is :)
@Huntabyte Жыл бұрын
Thank you Dheeraj!
@dimitrisplastaras3026 Жыл бұрын
Always the most usefull topics.
@Huntabyte Жыл бұрын
Thanks Dimitris!
@H3eNr1K Жыл бұрын
Recently you just come up with everything I need to come forward in my project, thank you so much
@Huntabyte Жыл бұрын
You’re very welcome!
@Solanaceously Жыл бұрын
I'm convinced you and Joy Of Code conspired to talk about pages today
@Huntabyte Жыл бұрын
maybe we did maybe we didn’t 🫣😂
@patricknelson Жыл бұрын
This is useful even for me; I’ve built all this stuff before over and over and over again… but in different stacks, frameworks & languages. It’s super interesting to see how someone does it in SvelteKit vs. Laravel or something.
@Huntabyte Жыл бұрын
I’m glad to hear that!
@codewithguillaume Жыл бұрын
Again, an amazing video thanks !
@Huntabyte Жыл бұрын
You’re welcome, Guillaume!
@Allformyequine Жыл бұрын
AWESOME!!! Was hoping some knowledgeable SvelteKit guru would make a nice Pagination video!!
@adimardev1550 Жыл бұрын
Thanks mate! very helpful 👌
@nyashachiroro2531 Жыл бұрын
As always great useful Svelte content
@Huntabyte Жыл бұрын
Thank you!
@Dev_dev_dev Жыл бұрын
Great video! Any tips/resources on infinite scroll, or in other words appending the new page data on reaching a certain scroll point? We can't rerun "load," and if I'm using something like Prisma, I can't expose my DB by recreating the pagination in a function on the client side.
@Huntabyte Жыл бұрын
Cursor-based pagination would be a better fit for infinite scroll. Since this is a client side JS requirement, I’d probably setup a separate endpoint and issue fetch requests as you scroll just like you would with any other framework! Using {#await } along the way!
@adrianfr05 Жыл бұрын
why is the path on 3:46 not written with backticks and the variables with a $???
@Huntabyte Жыл бұрын
Svelte Magic 🪄- you don’t need to include backticks or $ inside of attributes in Svelte components!
@danielk.9321 Жыл бұрын
Good video, very useful
@Huntabyte Жыл бұрын
Thank you!
@mikebit5497 Жыл бұрын
How would that work if you have data put in by the user that should persist through the different pages? Like a list of favorite songs the user can select? Do they persist if the user changes the page or will they get reset when after the reload?
@mwlo8635 Жыл бұрын
Why are totalPages, currentPage, totalItems etc reactive? Wouldn’t that also work as normal variable?
@Trav164 Жыл бұрын
Do you have an example of including an optional page size with a select or something? After giving the user the option to change page size, I'm having difficulty refreshing the data or fetching the extra entities (example: going from pageSize: 10 => 50) Until I refresh the url params this doesn't work as it only updates the pagination links
@Huntabyte Жыл бұрын
When you update the pages, you should redirect the user to /whatever?limit=.
@Trav164 Жыл бұрын
@@Huntabyte if you’ve got some sort of filter on the table, how would you persist that if you’re redirecting users though?
@Huntabyte Жыл бұрын
@@Trav164 through the search params :)
@adamrichardlimb Жыл бұрын
Very nice, great video as always! Do you have any plans to do infinite scrolling/lazy loading? I imagine you could do something similar to this, but when the user reaches the top/bottom of the element - ask for more data and put it into an array, saving the highest and lowest element you have retrieved from the DB to use as the starting position for future queries. I've never implemented this, so I don't know if Svelte slows down when you have that many elements on the page, especially if they're complicated.
@kvetoslavnovak423 Жыл бұрын
Great video as usual! Any tips concerning the best SvelteKit way how to do Load more?
@tomich20 Жыл бұрын
thanks. My problem is when filtering, if i use the skip 30 param because im on page 3, i wont be getting the data i wanted.
@tipeon Жыл бұрын
Are you filtering your data in Javascript *after* the database query ? If so ... don't do that. Add a WHERE clause to your SQL query
@tomich20 Жыл бұрын
@@tipeon filtering on the query directly.. but if i do "select * from users where name like "%tom%" offset 10;" i will be missing the first 10 toms of the list, so the offset should be reset on every filtering?..?
@Huntabyte Жыл бұрын
I think in that case you would want to have an optional param that change the data retrieved from the DB *if* a filter is applied. Can certainly be done!
@kupyn Жыл бұрын
so what if i also have a serach bar? because right now i show paginated items, but if search query is in place i show all users
@Huntabyte Жыл бұрын
You would need some sort of conditional logic within the load function. Something to determine if it’s search to get the first X search results.
@doemaeries10 ай бұрын
might be a stupid question, but why do you use +page.ts and not +page.server.ts?
@Huntabyte10 ай бұрын
Wasn't hitting a private API in this case so there was no reason to make the trip to the server every time.
@theshy6717 Жыл бұрын
Love the font, what's the name of it?
@wandenreich7709 ай бұрын
Hmm I sort have an issue with this example cause the /products/page conflicts with /products/productId in a real life scenario .I know this wasnt your intention but you could maybe highlight it or something
@marcoantonio7648 Жыл бұрын
almost died in the sql with offset But great video
@oscarvasquez5033 Жыл бұрын
Thanks!
@Huntabyte Жыл бұрын
You're welcome!
@danielrios8037 Жыл бұрын
So easy explained, thanks a lot! Would it be possible to have a master detail mvp ?
@Huntabyte Жыл бұрын
What do you mean by master detail MVP?
@danielrios8037 Жыл бұрын
@@Huntabyte a minimal example of a master detail crud
@thirupparan421 Жыл бұрын
your videos are amazing. would you explain pagination page logic first show 5 page and after 5?
@Loui3Hunna Жыл бұрын
MVP!!
@Huntabyte Жыл бұрын
Thank you thank you!
@tipeon Жыл бұрын
Erm .... You're using offset and limit *without* an order by clause. 😮 Are you insane or does prisma adds it for you under the hood ?
@Huntabyte Жыл бұрын
Just a quick example 😂 I want to say by default it sorts by PK but I could be wrong there!
@TechBuddy_ Жыл бұрын
@@Huntabyte postgres and MySQL order them in the order of insertion by default edit: this feature is not guaranteed and might change in the future Edit 2: The default behaviour only applies if you only insert and never update or delete the records
@Huntabyte Жыл бұрын
@@TechBuddy_ Thanks for that info! Good to know, I usually orderby the field of my choosing but great info!