-
Notifications
You must be signed in to change notification settings - Fork 15
[ENHANCEMENT] Add support for sub-rows, fuzzy filtering and column filtering #90
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
Open
adrianSepiol
wants to merge
14
commits into
perses:main
Choose a base branch
from
adrianSepiol:extend-table-component
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
985f804
[ENHANCEMENT] theme: add support for color-scheme (#78)
Gladorme 4a06076
Bump github.com/perses/perses from 0.53.0 to 0.53.1 in the gomod grou…
dependabot[bot] 67a0b97
[ENHANCEMENT] Add support for sub-rows and expanded row model in tabl…
adrianSepiol 18bdfb7
Add fuzzy search and column visibility features to table component
adrianSepiol c3a6f32
Update setGlobalFilter type to OnChangeFn in useFuzzySearch
adrianSepiol 5cf57de
Enhance TableToolbar with customizable width and improved search func…
adrianSepiol bc8aa44
Merge branch 'refs/heads/main' into extend-table-component
adrianSepiol 9659607
install @tanstack/match-sorter-utils
adrianSepiol 81ed3fc
Improve TextField state management
adrianSepiol b77bbf6
Restore old import
adrianSepiol 021f05c
Add max height to columns filter menu
adrianSepiol c9125ce
Remove unused type exports from index.ts
adrianSepiol 09c1ee8
Add comment explaining react table type extension
adrianSepiol ae0877e
Merge branch 'main' into extend-table-component
adrianSepiol File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,82 @@ | ||
| // Copyright The Perses Authors | ||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
|
|
||
| import { render, screen, waitFor } from '@testing-library/react'; | ||
| import userEvent from '@testing-library/user-event'; | ||
| import { ReactElement, useState } from 'react'; | ||
| import { TableToolbar, TableToolbarProps } from './TableToolbar'; | ||
|
|
||
| function TableToolbarWrapper(props: Partial<TableToolbarProps<unknown>> = {}): ReactElement { | ||
| const [globalFilter, setGlobalFilter] = useState(''); | ||
|
|
||
| return ( | ||
| <TableToolbar | ||
| showSearch | ||
| globalFilter={globalFilter} | ||
| onGlobalFilterChange={setGlobalFilter} | ||
| columns={[]} | ||
| width={600} | ||
| {...props} | ||
| /> | ||
| ); | ||
| } | ||
|
|
||
| function getSearchInput(): HTMLInputElement { | ||
| return screen.getByRole('textbox', { name: 'search table' }); | ||
| } | ||
|
|
||
| async function getClearSearchButton(): Promise<HTMLElement> { | ||
| return waitFor(() => screen.getByRole('button')); | ||
| } | ||
|
|
||
| describe('TableToolbar', () => { | ||
| describe('search clear button', () => { | ||
| test('clicking the close button clears the input value', async () => { | ||
| render(<TableToolbarWrapper />); | ||
|
|
||
| const input = getSearchInput(); | ||
|
|
||
| userEvent.type(input, 'hello'); | ||
| expect(input).toHaveValue('hello'); | ||
|
|
||
| userEvent.click(await getClearSearchButton()); | ||
|
|
||
| const resetInput = getSearchInput(); | ||
| expect(resetInput).toHaveValue(''); | ||
| }); | ||
|
|
||
| test('close button is not visible when search input is empty', () => { | ||
| render(<TableToolbarWrapper />); | ||
|
|
||
| expect(screen.queryByRole('button')).not.toBeInTheDocument(); | ||
| }); | ||
|
|
||
| test('input value is empty after typing, clearing, and re-checking', async () => { | ||
| render(<TableToolbarWrapper />); | ||
|
|
||
| const input = getSearchInput(); | ||
|
|
||
| userEvent.type(input, 'first'); | ||
| expect(input).toHaveValue('first'); | ||
|
|
||
| userEvent.click(await getClearSearchButton()); | ||
| expect(getSearchInput()).toHaveValue(''); | ||
|
|
||
| userEvent.type(getSearchInput(), 'second'); | ||
| expect(getSearchInput()).toHaveValue('second'); | ||
|
|
||
| userEvent.click(await getClearSearchButton()); | ||
| expect(getSearchInput()).toHaveValue(''); | ||
| }); | ||
| }); | ||
| }); |
This file contains hidden or 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,154 @@ | ||
| // Copyright The Perses Authors | ||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
|
|
||
| import { Checkbox, IconButton, InputAdornment, ListItemText, Menu, MenuItem, Stack } from '@mui/material'; | ||
| import { Column } from '@tanstack/react-table'; | ||
| import { ReactElement, useCallback, useState } from 'react'; | ||
| import Magnify from 'mdi-material-ui/Magnify'; | ||
| import Close from 'mdi-material-ui/Close'; | ||
| import ViewColumn from 'mdi-material-ui/ViewColumn'; | ||
| import { TextField } from '../controls'; | ||
|
|
||
| export interface TableToolbarProps<TableData> { | ||
| /** | ||
| * When `true`, a search input is rendered. | ||
| */ | ||
| showSearch?: boolean; | ||
|
|
||
| /** | ||
| * Current value of the global filter / search query. | ||
| */ | ||
| globalFilter: string; | ||
|
|
||
| /** | ||
| * Callback fired when the search query changes. | ||
| */ | ||
| onGlobalFilterChange: (value: string) => void; | ||
|
|
||
| /** | ||
| * When `true`, a "Columns" button is rendered that opens a column visibility dropdown. | ||
| */ | ||
| showColumnFilter?: boolean; | ||
|
|
||
| /** | ||
| * All columns from the table instance, used to build the visibility menu. | ||
| */ | ||
| columns: Array<Column<TableData>>; | ||
| /** | ||
| * The width of the toolbar, used to determine when to switch to a more compact layout. | ||
| */ | ||
| width: number | string; | ||
| } | ||
|
|
||
| export function TableToolbar<TableData>({ | ||
| showSearch, | ||
| globalFilter, | ||
| onGlobalFilterChange, | ||
| showColumnFilter, | ||
| columns, | ||
| width, | ||
| }: TableToolbarProps<TableData>): ReactElement | null { | ||
| const [colMenuAnchor, setColMenuAnchor] = useState<null | HTMLElement>(null); | ||
| const colMenuOpen = Boolean(colMenuAnchor); | ||
| const [searchResetKey, setSearchResetKey] = useState(0); | ||
|
|
||
| const handleSearchClear = useCallback(() => { | ||
| onGlobalFilterChange(''); | ||
| setSearchResetKey((prev) => prev + 1); | ||
| }, [onGlobalFilterChange]); | ||
|
|
||
| if (!showSearch && !showColumnFilter) { | ||
| return null; | ||
| } | ||
|
|
||
| return ( | ||
| <Stack | ||
| direction="row" | ||
| gap={1} | ||
| alignItems="center" | ||
| justifyContent="flex-end" | ||
| width={width} | ||
| padding="0.5rem" | ||
| sx={{ backgroundColor: (theme) => theme.palette.background.default }} | ||
| > | ||
| {showSearch && ( | ||
| <TextField | ||
| key={searchResetKey} | ||
| placeholder="Search…" | ||
| value={globalFilter} | ||
| onChange={onGlobalFilterChange} | ||
| variant="standard" | ||
| slotProps={{ | ||
| htmlInput: { 'aria-label': 'search table' }, | ||
| input: { | ||
| startAdornment: ( | ||
| <InputAdornment position="start"> | ||
| <Magnify fontSize="small" /> | ||
| </InputAdornment> | ||
| ), | ||
| endAdornment: globalFilter !== '' && ( | ||
| <InputAdornment position="end"> | ||
| <IconButton onClick={handleSearchClear}> | ||
| <Close fontSize="small" /> | ||
| </IconButton> | ||
| </InputAdornment> | ||
| ), | ||
| }, | ||
| }} | ||
| sx={{ flexGrow: 1 }} | ||
| /> | ||
| )} | ||
| {showColumnFilter && ( | ||
| <> | ||
| <IconButton | ||
| onClick={(e) => setColMenuAnchor(e.currentTarget)} | ||
| aria-haspopup="listbox" | ||
| aria-expanded={colMenuOpen} | ||
| color="info" | ||
| > | ||
| <ViewColumn /> | ||
| </IconButton> | ||
| <Menu | ||
| anchorEl={colMenuAnchor} | ||
| open={colMenuOpen} | ||
| onClose={() => setColMenuAnchor(null)} | ||
| slotProps={{ list: { dense: true } }} | ||
| sx={{ maxHeight: 400 }} | ||
| > | ||
| {columns.map((column) => { | ||
| const header = column.columnDef.header; | ||
| const label = typeof header === 'string' ? header : column.id; | ||
| return ( | ||
| <MenuItem | ||
| key={column.id} | ||
| disabled={!column.getCanHide()} | ||
| onClick={column.getCanHide() ? column.getToggleVisibilityHandler() : undefined} | ||
| dense | ||
| > | ||
| <Checkbox | ||
| checked={column.getIsVisible()} | ||
| disabled={!column.getCanHide()} | ||
| size="small" | ||
| disableRipple | ||
| sx={{ p: 0, mr: 1 }} | ||
| /> | ||
| <ListItemText primary={label} /> | ||
| </MenuItem> | ||
| ); | ||
| })} | ||
| </Menu> | ||
| </> | ||
| )} | ||
| </Stack> | ||
| ); | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did not test it, but I think we will need to set a height limit?
How does it behave with 100+ items?