mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
81 lines
2.5 KiB
TypeScript
81 lines
2.5 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import treeStyles from "./catalog-tree.module.scss";
|
|
import styles from "./catalog-menu.module.scss";
|
|
|
|
import React from "react";
|
|
import { TreeItem, TreeItemProps, TreeView } from "@material-ui/lab";
|
|
import { catalogCategoryRegistry } from "../../api/catalog-category-registry";
|
|
import { Icon } from "../icon";
|
|
import { StylesProvider } from "@material-ui/core";
|
|
import { cssNames } from "../../utils";
|
|
import type { CatalogCategory } from "../../api/catalog-entity";
|
|
import { observer } from "mobx-react";
|
|
|
|
export interface CatalogMenuProps {
|
|
activeItem: string;
|
|
onItemClick: (id: string) => void;
|
|
}
|
|
|
|
function getCategories() {
|
|
return catalogCategoryRegistry.filteredItems;
|
|
}
|
|
|
|
function getCategoryIcon(category: CatalogCategory) {
|
|
const { icon } = category.metadata ?? {};
|
|
|
|
if (typeof icon === "string") {
|
|
return icon.includes("<svg")
|
|
? <Icon small svg={icon}/>
|
|
: <Icon small material={icon}/>;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
function Item(props: TreeItemProps) {
|
|
return (
|
|
<TreeItem classes={treeStyles} {...props}/>
|
|
);
|
|
}
|
|
|
|
export const CatalogMenu = observer((props: CatalogMenuProps) => {
|
|
return (
|
|
// Overwrite Material UI styles with injectFirst https://material-ui.com/guides/interoperability/#controlling-priority-4
|
|
<StylesProvider injectFirst>
|
|
<div className="flex flex-col w-full">
|
|
<div className={styles.catalog}>Catalog</div>
|
|
<TreeView
|
|
defaultExpanded={["catalog"]}
|
|
defaultCollapseIcon={<Icon material="expand_more"/>}
|
|
defaultExpandIcon={<Icon material="chevron_right" />}
|
|
selected={props.activeItem || "browse"}
|
|
>
|
|
<Item nodeId="browse" label="Browse" data-testid="*-tab" onClick={() => props.onItemClick("*")}/>
|
|
<Item
|
|
nodeId="catalog"
|
|
label={<div className={styles.parent}>Categories</div>}
|
|
className={cssNames(styles.bordered)}
|
|
>
|
|
{
|
|
getCategories().map(category => (
|
|
<Item
|
|
icon={getCategoryIcon(category)}
|
|
key={category.getId()}
|
|
nodeId={category.getId()}
|
|
label={category.metadata.name}
|
|
data-testid={`${category.getId()}-tab`}
|
|
onClick={() => props.onItemClick(category.getId())}
|
|
/>
|
|
))
|
|
}
|
|
</Item>
|
|
</TreeView>
|
|
</div>
|
|
</StylesProvider>
|
|
);
|
|
});
|