forked from perses/shared
-
Notifications
You must be signed in to change notification settings - Fork 0
Extend table component #1
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
8
commits into
main
Choose a base branch
from
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
8 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 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,146 @@ | ||||||||||||||||||||||||||||||
| // 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, 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); | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| 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 | ||||||||||||||||||||||||||||||
| placeholder="Search…" | ||||||||||||||||||||||||||||||
| value={globalFilter} | ||||||||||||||||||||||||||||||
| onChange={onGlobalFilterChange} | ||||||||||||||||||||||||||||||
adrianSepiol marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||
| variant="standard" | ||||||||||||||||||||||||||||||
| slotProps={{ | ||||||||||||||||||||||||||||||
| htmlInput: { 'aria-label': 'search table' }, | ||||||||||||||||||||||||||||||
| input: { | ||||||||||||||||||||||||||||||
| startAdornment: ( | ||||||||||||||||||||||||||||||
| <InputAdornment position="start"> | ||||||||||||||||||||||||||||||
| <Magnify fontSize="small" /> | ||||||||||||||||||||||||||||||
| </InputAdornment> | ||||||||||||||||||||||||||||||
| ), | ||||||||||||||||||||||||||||||
| endAdornment: globalFilter !== '' && ( | ||||||||||||||||||||||||||||||
| <InputAdornment position="end"> | ||||||||||||||||||||||||||||||
| <IconButton onClick={() => onGlobalFilterChange('')}> | ||||||||||||||||||||||||||||||
| <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 | ||||||||||||||||||||||||||||||
|
Comment on lines
+108
to
+114
|
||||||||||||||||||||||||||||||
| aria-haspopup="listbox" | |
| aria-expanded={colMenuOpen} | |
| > | |
| Columns | |
| </Button> | |
| <Menu | |
| aria-haspopup="menu" | |
| aria-expanded={colMenuOpen} | |
| aria-controls={colMenuOpen ? 'table-toolbar-columns-menu' : undefined} | |
| > | |
| Columns | |
| </Button> | |
| <Menu | |
| id="table-toolbar-columns-menu" |
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.
New behavior is introduced for global fuzzy search (
showSearch/globalFilter) and column visibility (showColumnFilter/hiddenColumns), but there are no corresponding tests inTable.test.tsx. Please add coverage to verify: (1) enablingshowSearchfilters rows based on the query, (2) enablingshowColumnFiltercan hide/show a column and affects rendered headers/cells, and (3)hiddenColumnshides the expected columns on initial render.