- components
- ›
- pagination
- ›
- react
Pagination
Navigate between multiple pages of content.
ID | Name | Country | |
---|---|---|---|
1 | Patsy Cormier | Janelle.Adams@yahoo.com | Australia |
2 | Glenn Spinka | Brooks.Gorczany5@gmail.com | United Kingdom |
3 | Juanita Satterfield | Robyn_Kilback45@hotmail.com | Australia |
4 | Ruben Quitzon | Margaret.Krajcik@yahoo.com | Pitcairn Islands |
5 | Dr. Christy Thiel | Karianne82@gmail.com | India |
Page Size
ID | Name | Country | |
---|---|---|---|
1 | Sheryl Mertz | Savannah.Marvin15@gmail.com | Wallis and Futuna |
2 | Rosalie Nitzsche | Annabelle_Kuphal@gmail.com | United Arab Emirates |
3 | Lucas Weissnat-Kub | Erin54@yahoo.com | Tunisia |
4 | Rick Jaskolski DVM | Mikel_Kihn@gmail.com | Tajikistan |
5 | Miss Ollie Lebsack | Wilfredo25@hotmail.com | Indonesia |
Direction
ID | Name | Country | |
---|---|---|---|
1 | Priscilla Hoppe III | Gerardo84@yahoo.com | Ecuador |
2 | Freda Weimann | Piper.Dare@hotmail.com | Jordan |
3 | Miss Krystal Abbott | Camila_Schiller@yahoo.com | Costa Rica |
4 | Marsha Bins III | Shakira.Rohan@hotmail.com | Hong Kong |
5 | Brandon Treutel | Daisy95@yahoo.com | Suriname |
Total Count
For server-side pagination, your data source may be truncated. Make sure to specify the total records using count
.
{ "data": [...], "pagination": { "page": 1, "limit": 10, "count": 500, }}
<Pagination page={response.pagination.page} count={response.pagination.count} pageSize={response.pagination.limit}> ...</Pagination>
API Reference
Root
Property | Default | Type |
---|---|---|
ids | - | Partial<{ root: string; ellipsis: (index: number) => string; prevTrigger: string; nextTrigger: string; item: (page: number) => string; }> | undefinedThe ids of the elements in the accordion. Useful for composition. |
translations | - | IntlTranslations | undefinedSpecifies the localized strings that identifies the accessibility elements and their states |
count | - | number | undefinedTotal number of data items |
pageSize | - | number | undefinedThe controlled number of data items per page |
defaultPageSize | 10 | number | undefinedThe initial number of data items per page when rendered. Use when you don't need to control the page size of the pagination. |
siblingCount | 1 | number | undefinedNumber of pages to show beside active page |
page | - | number | undefinedThe controlled active page |
defaultPage | 1 | number | undefinedThe initial active page when rendered. Use when you don't need to control the active page of the pagination. |
onPageChange | - | ((details: PageChangeDetails) => void) | undefinedCalled when the page number is changed |
onPageSizeChange | - | ((details: PageSizeChangeDetails) => void) | undefinedCalled when the page size is changed |
type | "button" | "button" | "link" | undefinedThe type of the trigger element |
getPageUrl | - | ((details: PageUrlDetails) => string) | undefinedFunction to generate href attributes for pagination links. Only used when `type` is set to "link". |
dir | "ltr" | "ltr" | "rtl" | undefinedThe document's text/writing direction. |
getRootNode | - | (() => ShadowRoot | Node | Document) | undefinedA root node to correctly resolve document in custom environments. E.x.: Iframes, Electron. |
element | - | ((attributes: HTMLAttributes<"nav">) => Element) | undefinedRender the element yourself |
RootProvider
Property | Default | Type |
---|---|---|
value | - | PaginationApi<PropTypes> |
element | - | ((attributes: HTMLAttributes<"nav">) => Element) | undefinedRender the element yourself |
RootContext
Property | Default | Type |
---|---|---|
children | - | (pagination: PaginationApi<PropTypes>) => ReactNode |
PrevTrigger
Property | Default | Type |
---|---|---|
element | - | ((attributes: HTMLAttributes<"button">) => Element) | undefinedRender the element yourself |
Item
Property | Default | Type |
---|---|---|
type | - | "page" |
value | - | number |
element | - | ((attributes: HTMLAttributes<"a">) => Element) | undefinedRender the element yourself |
Ellipsis
Property | Default | Type |
---|---|---|
index | - | number |
element | - | ((attributes: HTMLAttributes<"span">) => Element) | undefinedRender the element yourself |
NextTrigger
Property | Default | Type |
---|---|---|
element | - | ((attributes: HTMLAttributes<"button">) => Element) | undefinedRender the element yourself |