-
Notifications
You must be signed in to change notification settings - Fork 841
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[EuiDataGrid] Introduce a renderCustomToolbar render prop (#7150)
- Loading branch information
Showing
5 changed files
with
371 additions
and
142 deletions.
There are no files selected for viewing
170 changes: 170 additions & 0 deletions
170
src-docs/src/views/datagrid/advanced/custom_toolbar.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
import React, { useCallback, useState } from 'react'; | ||
import { faker } from '@faker-js/faker'; | ||
|
||
import { | ||
EuiDataGrid, | ||
EuiDataGridColumnCellActionProps, | ||
EuiButtonIcon, | ||
EuiDataGridPaginationProps, | ||
EuiDataGridSorting, | ||
EuiDataGridColumnSortingConfig, | ||
EuiPopover, | ||
EuiDataGridCustomToolbarProps, | ||
EuiFormRow, | ||
EuiRange, | ||
} from '../../../../../src'; | ||
|
||
const raw_data: Array<{ [key: string]: string }> = []; | ||
for (let i = 1; i < 100; i++) { | ||
raw_data.push({ | ||
name: `${faker.name.lastName()}, ${faker.name.firstName()}`, | ||
email: faker.internet.email(), | ||
location: `${faker.address.city()}, ${faker.address.country()}`, | ||
date: `${faker.date.past()}`, | ||
amount: faker.commerce.price(1, 1000, 2, '$'), | ||
}); | ||
} | ||
|
||
const columns = [ | ||
{ | ||
id: 'name', | ||
displayAsText: 'Name', | ||
cellActions: [ | ||
({ Component }: EuiDataGridColumnCellActionProps) => ( | ||
<Component | ||
onClick={() => alert('action')} | ||
iconType="faceHappy" | ||
aria-label="Some action" | ||
> | ||
Some action | ||
</Component> | ||
), | ||
], | ||
}, | ||
{ | ||
id: 'email', | ||
displayAsText: 'Email address', | ||
initialWidth: 130, | ||
}, | ||
{ | ||
id: 'location', | ||
displayAsText: 'Location', | ||
}, | ||
{ | ||
id: 'date', | ||
displayAsText: 'Date', | ||
}, | ||
{ | ||
id: 'amount', | ||
displayAsText: 'Amount', | ||
}, | ||
]; | ||
|
||
export default () => { | ||
// Column visibility | ||
const [visibleColumns, setVisibleColumns] = useState(() => | ||
columns.map(({ id }) => id) | ||
); | ||
|
||
// Pagination | ||
const [pagination, setPagination] = useState({ pageIndex: 0 }); | ||
const onChangePage = useCallback<EuiDataGridPaginationProps['onChangePage']>( | ||
(pageIndex) => { | ||
setPagination((pagination) => ({ ...pagination, pageIndex })); | ||
}, | ||
[] | ||
); | ||
const onChangePageSize = useCallback< | ||
EuiDataGridPaginationProps['onChangeItemsPerPage'] | ||
>((pageSize) => { | ||
setPagination((pagination) => ({ ...pagination, pageSize })); | ||
}, []); | ||
|
||
// Sorting | ||
const [sortingColumns, setSortingColumns] = useState< | ||
EuiDataGridColumnSortingConfig[] | ||
>([]); | ||
const onSort = useCallback<EuiDataGridSorting['onSort']>((sortingColumns) => { | ||
setSortingColumns(sortingColumns); | ||
}, []); | ||
const [isDisplaySelectorOpen, setIsDisplaySelectorOpen] = useState(false); | ||
|
||
// Custom toolbar body renderer | ||
const RenderCustomToolbar = ({ | ||
fullScreenSelector, | ||
keyboardShortcuts, | ||
rowHeightsControls, | ||
densityControls, | ||
columnSelector, | ||
columnSorting, | ||
}: EuiDataGridCustomToolbarProps) => { | ||
return ( | ||
<div className="euiDataGrid__controls" data-test-subj="dataGridControls"> | ||
<div className="euiDataGrid__leftControls"> | ||
Always look at the left side of grid! | ||
</div> | ||
<div className="euiDataGrid__rightControls"> | ||
{fullScreenSelector} | ||
{keyboardShortcuts} | ||
<EuiPopover | ||
button={ | ||
<EuiButtonIcon | ||
iconType="controlsHorizontal" | ||
aria-label="Custom grid controls" | ||
onClick={() => setIsDisplaySelectorOpen(true)} | ||
/> | ||
} | ||
isOpen={isDisplaySelectorOpen} | ||
data-test-subj="dataGridDisplaySelectorPopover" | ||
closePopover={() => setIsDisplaySelectorOpen(false)} | ||
anchorPosition="downRight" | ||
panelPaddingSize="s" | ||
panelClassName="euiDataGrid__displayPopoverPanel" | ||
> | ||
{rowHeightsControls} | ||
{densityControls} | ||
|
||
<EuiFormRow label="Random Sample Size" display="columnCompressed"> | ||
<EuiRange | ||
compressed | ||
fullWidth | ||
showInput | ||
min={1} | ||
max={100} | ||
step={1} | ||
value={10} | ||
data-test-subj="randomSampleSize" | ||
/> | ||
</EuiFormRow> | ||
</EuiPopover> | ||
{columnSorting} | ||
{columnSelector} | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
return ( | ||
<> | ||
<EuiDataGrid | ||
aria-label="Data grid custom body renderer demo" | ||
columns={columns} | ||
columnVisibility={{ visibleColumns, setVisibleColumns }} | ||
sorting={{ columns: sortingColumns, onSort }} | ||
inMemory={{ level: 'sorting' }} | ||
pagination={{ | ||
...pagination, | ||
onChangePage: onChangePage, | ||
onChangeItemsPerPage: onChangePageSize, | ||
}} | ||
rowCount={raw_data.length} | ||
renderCellValue={({ rowIndex, columnId }) => | ||
raw_data[rowIndex][columnId] | ||
} | ||
renderCustomToolbar={RenderCustomToolbar} | ||
height={undefined} | ||
gridStyle={{ border: 'none', header: 'underline' }} | ||
/> | ||
</> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.