Pagination
Some EUI components have pagination built-in, like EuiBasicTable, but for custom built paginated interfaces you can use EuiPagination manually.
Basic usage with many pages
EuiPagination accepts a total pageCount
and only shows up to 5 consecutive pages, with shortcuts to the first and/or last page. It also requires the parent component to maintain the current activePage
and handle the onPageClick
.
Provide a descriptive aria-label
for each pagination set.
Few pages
The UI simplifies when we have fewer than the maximum number of visible pages.
Centered pagination
You can use EuiFlexGroup to center the pagination in a layout.
Compressed and responsive
Use the compressed
prop to minimize the horizontal footprint. This will replace the numbered buttons with static numbers and rely on the first, last, next and previous icon buttons to navigate.
This is also the same display that will occur when responsive
is not false
. You can adjust the responsiveness by supplying an array of named breakpoints to responsive
. The default is ['xs', 's']
.
Indeterminate page count
If the total number of pages cannot be accurately determined, you can pass 0
as the pageCount
. This will remove the button numbers and rely solely on the arrow icon buttons for navigation. Without a total page count, the last page button will pass back -1
for the activePage
.
Table pagination
You can use EuiTablePagination to create a combination "Rows per page" and pagination set, commonly used with tables. If you pass 0
in as one of the itemsPerPageOptions
, it will create a "Show all" option and hide the pagination.
Customizable pagination
Or you can use EuiFlexGroup and EuiContextMenu to set up your own custom pagination layout.
Props
EuiPagination
Prop | Description and type | Default value |
---|---|---|
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Defines a string value that labels the current element. string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
Prop pageCount# | Description and type The total number of pages. number | Default value 1 |
Prop activePage# | Description and type The current page using a zero based index. number | Default value 0 |
Prop onPageClick# | Description and type Click handler that passes back the internally calculated (pageIndex: number) => void | Default value () => {} |
Prop compressed# | Description and type If true, will only show next/prev arrows and simplified number set. boolean | Default value |
Prop responsive# | Description and type Automatically reduces to the false | string[] | Default value ['xs', 's'] |
EuiPaginationButton
Prop | Description and type | Default value |
---|---|---|
Prop pageIndex# | Description and type Type: number | Default value Required |
Prop color# | Description and type Any of the named color palette options. "text" | "accent" | "primary" | "success" | "warning" | "danger" | Default value |
Prop size# | Description and type Type: "xs" | "s" | "m" | Default value |
Prop flush# | Description and type Ensure the text of the button sits flush to the left, right, or both sides of its container "left" | "right" | "both" | Default value |
Prop isDisabled# | Description and type
boolean | Default value |
Prop isLoading# | Description and type Force disables the button and changes the icon to a loading spinner boolean | Default value |
Prop isSelected# | Description and type Applies the boolean state as the boolean | Default value |
Prop href# | Description and type Type: string | Default value |
Prop target# | Description and type Type: string | Default value |
Prop rel# | Description and type Type: string | Default value |
Prop type# | Description and type Type: "button" | "reset" | "submit" | Default value |
Prop buttonRef# | Description and type Type: Ref<HTMLAnchorElement | HTMLButtonElement> | Default value |
Prop contentProps# | Description and type Object of props passed to the CommonProps & EuiButtonDisplayContentType | Default value |
Prop iconType# | Description and type Any IconType | Default value |
Prop iconSide# | Description and type Can only be one side ButtonContentIconSide | Default value |
Prop textProps# | Description and type Object of props passed to the This span wrapper can be removed by passing false | (HTMLAttributes<HTMLSpanElement> & CommonProps & { ref?: Ref<HTMLSpanElement>; 'data-text'?: string; }) | Default value |
Prop iconSize# | Description and type Type: "s" | "m" | Default value |
Prop className# | Description and type Type: string | Default value |
Prop aria-label# | Description and type Defines a string value that labels the current element. string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
Prop onClick# | Description and type Type: MouseEventHandler<HTMLAnchorElement> | MouseEventHandler<HTMLButtonElement> | (MouseEventHandler<HTMLButtonElement> & MouseEventHandler<...>) | (MouseEventHandler<...> & MouseEventHandler<...>) | Default value |
Prop isActive# | Description and type Type: boolean | Default value |
Prop totalPages# | Description and type Type: number | Default value |