Skip to content

Commit

Permalink
feat: implement group by and quick filters
Browse files Browse the repository at this point in the history
  • Loading branch information
amlannandy committed Dec 24, 2024
1 parent f22c0ba commit a0c8bf9
Show file tree
Hide file tree
Showing 4 changed files with 416 additions and 100 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import {
StatefulsetsQuickFiltersConfig,
VolumesQuickFiltersConfig,
} from './constants';
import K8sNamespacesList from './Namespaces/K8sNamespacesList';
import K8sPodLists from './Pods/K8sPodLists';
import Volumes from './Volumes/Volumes';

Expand Down Expand Up @@ -323,6 +324,13 @@ export default function InfraMonitoringK8s(): JSX.Element {
/>
)}

{selectedCategory === K8sCategories.NAMESPACES && (
<K8sNamespacesList
isFiltersVisible={showFilters}
handleFilterVisibilityChange={handleFilterVisibilityChange}
/>
)}

{selectedCategory === K8sCategories.VOLUMES && <Volumes />}
</div>
</div>
Expand Down
Loading

0 comments on commit a0c8bf9

Please sign in to comment.