Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Data Grid] Add hidePerPageOptions prop into EuiDataGridPaginationProps #3700

Merged

Conversation

sulemanof
Copy link
Contributor

@sulemanof sulemanof commented Jul 7, 2020

Summary

Add hidePerPageOptions prop into EuiDataGridPaginationProps for EuiDataGrid pagination prop:

<EuiDataGrid
  pagination={{
      hidePerPageOptions: true,
      pageIndex: 1,
      pageSize: 20
  }}

In kibana Data table visualization the Rows per page is controlled by vis options tab, so it needs a possibility to hide choosing rows per page.

image

Checklist

  • Check against all themes for compatibility in both light and dark modes
  • Checked in mobile
  • Checked in IE11 and Firefox
  • Props have proper autodocs
  • Added documentation
  • Checked Code Sandbox works for the any docs examples
  • Added or updated jest tests
  • Checked for breaking changes and labeled appropriately
  • Checked for accessibility including keyboard-only and screenreader modes
  • A changelog entry exists and is marked appropriately

@kibanamachine
Copy link

Since this is a community submitted pull request, a Jenkins build has not been kicked off automatically. Can an Elastic organization member please verify the contents of this patch and then kick off a build manually?

@sulemanof sulemanof marked this pull request as ready for review July 7, 2020 11:25
Copy link
Contributor

@chandlerprall chandlerprall left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of a new prop for this, I feel making pageSizeOptions optional and/or checking for an empty array is a better approach.

@sulemanof
Copy link
Contributor Author

Instead of a new prop for this, I feel making pageSizeOptions optional and/or checking for an empty array is a better approach.

I think it's a good idea.
Even more: I thought this should work firstly, so I tried it before and received an exception. So I would say it would be more evident for developers.

But my only concern is:
EuiDataGridPaginationProps and EuiTablePagination props have different props naming and usage of them is a bit confusing (at least for me). I need to check relations between those manually to use a feature:
pagination_props

I assume making such an approach will only cause additional confusing from usage perspective :

pagination_props_hide

But if you feel it's good, I'm OK.
Maybe that's only my vision of complexity 🙂

@chandlerprall
Copy link
Contributor

Yup, I think that's okay. Our existing component pagination prop types are all largely different between inmemorytable, basictable, tablepagination, and pagination. Not much unity to maintain between them, and supporting an empty pageSizeOptions is probably the better path forward.

@@ -218,10 +218,13 @@ function renderPagination(props: EuiDataGridProps, controls: string) {
} = pagination;
const pageCount = Math.ceil(props.rowCount / pageSize);

if (props.rowCount < pageSizeOptions[0]) {
if (pageCount <= 1) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reason this was previously props.rowCount < pageSizeOptions[0] is to keep the pagination controls around when switching to a large page size. For example, if there are 30 results and the page options are 5, 25, 50, switching the page size to 50 will cause the controls to disappear.

Maybe, if (props.rowCount < (pageSizeOptions[0] || pageSize)) { instead? Then it uses the active page size if there are no options.

Copy link
Contributor Author

@sulemanof sulemanof Jul 17, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for explanation, I didn't think about it at the first sight!
My only concern is: who guarantees the pageSizeOptions will be in ascending order?
An user can pass it like [100, 50, 25], right?
So I also placed a sorting function to be sure.

Copy link
Contributor

@chandlerprall chandlerprall left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One more request :)

src/components/datagrid/data_grid.tsx Outdated Show resolved Hide resolved
@chandlerprall
Copy link
Contributor

jenkins test this

@kibanamachine
Copy link

Preview documentation changes for this PR: https://eui.elastic.co/pr_3700/

Copy link
Contributor

@chandlerprall chandlerprall left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes LGTM; Pulled & tested existing, empty, and non-existent pageSizeOptions locally. Also tested the logic in displaying page sizes selection when items < the smallest option.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants