mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
136 lines
3.6 KiB
TypeScript
136 lines
3.6 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import "./catalog-add-button.scss";
|
|
import React from "react";
|
|
import { SpeedDial, SpeedDialAction } from "@material-ui/lab";
|
|
import { Icon } from "../icon";
|
|
import { observer } from "mobx-react";
|
|
import { observable, makeObservable, action } from "mobx";
|
|
import { boundMethod } from "../../../common/utils";
|
|
import type { CatalogCategory, CatalogEntityAddMenuContext, CatalogEntityAddMenu } from "../../api/catalog-entity";
|
|
import { EventEmitter } from "events";
|
|
import { navigate } from "../../navigation";
|
|
import { catalogCategoryRegistry } from "../../api/catalog-category-registry";
|
|
|
|
export interface CatalogAddButtonProps {
|
|
category: CatalogCategory;
|
|
}
|
|
|
|
type CategoryId = string;
|
|
|
|
@observer
|
|
export class CatalogAddButton extends React.Component<CatalogAddButtonProps> {
|
|
@observable protected isOpen = false;
|
|
@observable menuItems = new Map<CategoryId, CatalogEntityAddMenu[]>();
|
|
|
|
constructor(props: CatalogAddButtonProps) {
|
|
super(props);
|
|
makeObservable(this);
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.updateMenuItems();
|
|
}
|
|
|
|
componentDidUpdate(prevProps: CatalogAddButtonProps) {
|
|
if (prevProps.category != this.props.category) {
|
|
this.updateMenuItems();
|
|
}
|
|
}
|
|
|
|
get categories() {
|
|
return catalogCategoryRegistry.filteredItems;
|
|
}
|
|
|
|
@action
|
|
updateMenuItems() {
|
|
this.menuItems.clear();
|
|
|
|
if (this.props.category) {
|
|
this.updateCategoryItems(this.props.category);
|
|
} else {
|
|
// Show menu items from all categories
|
|
this.categories.forEach(this.updateCategoryItems);
|
|
}
|
|
}
|
|
|
|
updateCategoryItems = action((category: CatalogCategory) => {
|
|
if (category instanceof EventEmitter) {
|
|
const menuItems: CatalogEntityAddMenu[] = [];
|
|
const context: CatalogEntityAddMenuContext = {
|
|
navigate: (url: string) => navigate(url),
|
|
menuItems,
|
|
};
|
|
|
|
category.emit("catalogAddMenu", context);
|
|
this.menuItems.set(category.getId(), menuItems);
|
|
}
|
|
});
|
|
|
|
getCategoryFilteredItems = (category: CatalogCategory) => {
|
|
return category.filteredItems(this.menuItems.get(category.getId()) || []);
|
|
};
|
|
|
|
@boundMethod
|
|
onOpen() {
|
|
this.isOpen = true;
|
|
}
|
|
|
|
@boundMethod
|
|
onClose() {
|
|
this.isOpen = false;
|
|
}
|
|
|
|
@boundMethod
|
|
onButtonClick() {
|
|
const defaultAction = this.items.find(item => item.defaultAction)?.onClick;
|
|
const clickAction = defaultAction || (this.items.length === 1 ? this.items[0].onClick : null);
|
|
|
|
clickAction?.();
|
|
}
|
|
|
|
get items() {
|
|
const { category } = this.props;
|
|
|
|
return category ? this.getCategoryFilteredItems(category) :
|
|
this.categories.map(this.getCategoryFilteredItems).flat();
|
|
}
|
|
|
|
render() {
|
|
if (this.items.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<SpeedDial
|
|
className="CatalogAddButton"
|
|
ariaLabel="SpeedDial CatalogAddButton"
|
|
open={this.isOpen}
|
|
onOpen={this.onOpen}
|
|
onClose={this.onClose}
|
|
icon={<Icon material="add" />}
|
|
direction="up"
|
|
onClick={this.onButtonClick}
|
|
>
|
|
{this.items.map((menuItem, index) => {
|
|
return <SpeedDialAction
|
|
key={index}
|
|
icon={<Icon material={menuItem.icon}/>}
|
|
tooltipTitle={menuItem.title}
|
|
onClick={(evt) => {
|
|
evt.stopPropagation();
|
|
menuItem.onClick();
|
|
}}
|
|
TooltipClasses={{
|
|
popper: "catalogSpeedDialPopper",
|
|
}}
|
|
/>;
|
|
})}
|
|
</SpeedDial>
|
|
);
|
|
}
|
|
}
|