-
Notifications
You must be signed in to change notification settings - Fork 840
/
Copy pathtable_pagination.tsx
182 lines (168 loc) Β· 5 KB
/
table_pagination.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import React, {
FunctionComponent,
useState,
useMemo,
useCallback,
} from 'react';
import { EuiButtonEmpty } from '../../button';
import { EuiContextMenuItem, EuiContextMenuPanel } from '../../context_menu';
import { EuiFlexGroup, EuiFlexItem } from '../../flex';
import { EuiPagination, EuiPaginationProps } from '../../pagination';
import { EuiPopover } from '../../popover';
import { EuiI18n } from '../../i18n';
import { usePropsWithComponentDefaults } from '../../provider/component_defaults';
import { euiTablePaginationDefaults } from './table_pagination_defaults';
export type PageChangeHandler = EuiPaginationProps['onPageClick'];
export type ItemsPerPageChangeHandler = (pageSize: number) => void;
export interface EuiTablePaginationProps
extends Omit<EuiPaginationProps, 'onPageClick'> {
/**
* Option to completely hide the "Rows per page" selector.
*
* @default true
*/
showPerPageOptions?: boolean;
/**
* Current selection for "Rows per page".
* Pass `0` to display the selected "Show all" option and hide the pagination.
*
* @default 10
*/
itemsPerPage?: number;
/**
* Custom array of options for "Rows per page".
* Pass `0` as one of the options to create a "Show all" option.
*
* @default [10, 25, 50]
*/
itemsPerPageOptions?: number[];
/**
* Click handler that passes back selected `pageSize` number
*/
onChangeItemsPerPage?: ItemsPerPageChangeHandler;
onChangePage?: PageChangeHandler;
/**
* Requires the `id` of the table being controlled
*/
'aria-controls'?: string;
'aria-label'?: string;
}
export const EuiTablePagination: FunctionComponent<EuiTablePaginationProps> = (
props
) => {
const {
activePage,
itemsPerPage = euiTablePaginationDefaults.itemsPerPage,
itemsPerPageOptions = euiTablePaginationDefaults.itemsPerPageOptions,
showPerPageOptions = euiTablePaginationDefaults.showPerPageOptions,
onChangeItemsPerPage,
onChangePage,
pageCount,
...rest
} = usePropsWithComponentDefaults('EuiTablePagination', props);
const [isPopoverOpen, setIsPopoverOpen] = useState(false);
const togglePopover = useCallback(() => {
setIsPopoverOpen((isOpen) => !isOpen);
}, []);
const closePopover = useCallback(() => {
setIsPopoverOpen(false);
}, []);
const button = (
<EuiButtonEmpty
size="xs"
color="text"
iconType="arrowDown"
iconSide="right"
data-test-subj="tablePaginationPopoverButton"
onClick={togglePopover}
>
{itemsPerPage === 0 ? (
<EuiI18n
token="euiTablePagination.allRows"
default="Showing all rows"
/>
) : (
<>
<EuiI18n
token="euiTablePagination.rowsPerPage"
default="Rows per page"
/>
: {itemsPerPage}
</>
)}
</EuiButtonEmpty>
);
const items = useMemo(
() =>
itemsPerPageOptions.map((itemsPerPageOption) => (
<EuiContextMenuItem
key={itemsPerPageOption}
icon={itemsPerPageOption === itemsPerPage ? 'check' : 'empty'}
onClick={() => {
closePopover();
onChangeItemsPerPage?.(itemsPerPageOption);
}}
data-test-subj={`tablePagination-${itemsPerPageOption}-rows`}
>
{itemsPerPageOption === 0 ? (
<EuiI18n
token="euiTablePagination.rowsPerPageOptionShowAllRows"
default="Show all rows"
/>
) : (
<EuiI18n
token="euiTablePagination.rowsPerPageOption"
values={{ rowsPerPage: itemsPerPageOption }}
default="{rowsPerPage} rows"
/>
)}
</EuiContextMenuItem>
)),
[itemsPerPageOptions, itemsPerPage, onChangeItemsPerPage, closePopover]
);
const itemsPerPagePopover = (
<EuiPopover
button={button}
isOpen={isPopoverOpen}
closePopover={closePopover}
panelPaddingSize="none"
anchorPosition="upRight"
>
<EuiContextMenuPanel
items={items}
data-test-subj="tablePaginationRowOptions"
/>
</EuiPopover>
);
return (
<EuiFlexGroup
justifyContent="spaceBetween"
alignItems="center"
responsive={false}
wrap
gutterSize="s"
className="eui-xScroll"
>
<EuiFlexItem grow={false}>
{showPerPageOptions && itemsPerPagePopover}
</EuiFlexItem>
<EuiFlexItem grow={false}>
{itemsPerPage > 0 && (
<EuiPagination
pageCount={pageCount}
activePage={activePage}
onPageClick={onChangePage}
{...rest}
/>
)}
</EuiFlexItem>
</EuiFlexGroup>
);
};