mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
322 lines
11 KiB
TypeScript
322 lines
11 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import styles from "./catalog.module.scss";
|
|
|
|
import React from "react";
|
|
import { disposeOnUnmount, observer } from "mobx-react";
|
|
import { ItemListLayout } from "../item-object-list";
|
|
import { action, IComputedValue, makeObservable, observable, reaction, runInAction, when } from "mobx";
|
|
import type { CatalogEntityStore } from "./catalog-entity-store/catalog-entity.store";
|
|
import { navigate } from "../../navigation";
|
|
import { MenuItem, MenuActions } from "../menu";
|
|
import type { CatalogEntityContextMenu, CatalogEntityContextMenuContext } from "../../api/catalog-entity";
|
|
import { HotbarStore } from "../../../common/hotbar-store";
|
|
import { ConfirmDialog } from "../confirm-dialog";
|
|
import { catalogCategoryRegistry, CatalogEntity } from "../../../common/catalog";
|
|
import { CatalogAddButton } from "./catalog-add-button";
|
|
import type { RouteComponentProps } from "react-router";
|
|
import { Notifications } from "../notifications";
|
|
import { MainLayout } from "../layout/main-layout";
|
|
import { prevDefault } from "../../utils";
|
|
import { CatalogEntityDetails } from "./catalog-entity-details";
|
|
import { browseCatalogTab, catalogURL, CatalogViewRouteParam } from "../../../common/routes";
|
|
import { CatalogMenu } from "./catalog-menu";
|
|
import { RenderDelay } from "../render-delay/render-delay";
|
|
import { Icon } from "../icon";
|
|
import { HotbarToggleMenuItem } from "./hotbar-toggle-menu-item";
|
|
import { Avatar } from "../avatar";
|
|
import { withInjectables } from "@ogre-tools/injectable-react";
|
|
import catalogPreviousActiveTabStorageInjectable from "./catalog-previous-active-tab-storage/catalog-previous-active-tab-storage.injectable";
|
|
import catalogEntityStoreInjectable from "./catalog-entity-store/catalog-entity-store.injectable";
|
|
import type { GetCategoryColumnsParams, CategoryColumns } from "./get-category-columns.injectable";
|
|
import getCategoryColumnsInjectable from "./get-category-columns.injectable";
|
|
import type { RegisteredCustomCategoryViewDecl } from "./custom-views.injectable";
|
|
import customCategoryViewsInjectable from "./custom-views.injectable";
|
|
import type { CustomCategoryViewComponents } from "./custom-views";
|
|
|
|
interface Props extends RouteComponentProps<CatalogViewRouteParam> {}
|
|
|
|
interface Dependencies {
|
|
catalogPreviousActiveTabStorage: { set: (value: string ) => void };
|
|
catalogEntityStore: CatalogEntityStore;
|
|
getCategoryColumns: (params: GetCategoryColumnsParams) => CategoryColumns;
|
|
customCategoryViews: IComputedValue<Map<string, Map<string, RegisteredCustomCategoryViewDecl>>>;
|
|
}
|
|
|
|
@observer
|
|
class NonInjectedCatalog extends React.Component<Props & Dependencies> {
|
|
@observable private contextMenu: CatalogEntityContextMenuContext;
|
|
@observable activeTab?: string;
|
|
|
|
constructor(props: Props & Dependencies) {
|
|
super(props);
|
|
makeObservable(this);
|
|
}
|
|
|
|
get routeActiveTab(): string {
|
|
const { group, kind } = this.props.match.params ?? {};
|
|
|
|
if (group && kind) {
|
|
return `${group}/${kind}`;
|
|
}
|
|
|
|
return browseCatalogTab;
|
|
}
|
|
|
|
async componentDidMount() {
|
|
this.contextMenu = {
|
|
menuItems: observable.array([]),
|
|
navigate: (url: string) => navigate(url),
|
|
};
|
|
disposeOnUnmount(this, [
|
|
this.props.catalogEntityStore.watch(),
|
|
reaction(() => this.routeActiveTab, async (routeTab) => {
|
|
this.props.catalogPreviousActiveTabStorage.set(this.routeActiveTab);
|
|
|
|
try {
|
|
await when(() => (routeTab === browseCatalogTab || !!catalogCategoryRegistry.filteredItems.find(i => i.getId() === routeTab)), { timeout: 5_000 }); // we need to wait because extensions might take a while to load
|
|
const item = catalogCategoryRegistry.filteredItems.find(i => i.getId() === routeTab);
|
|
|
|
runInAction(() => {
|
|
this.activeTab = routeTab;
|
|
this.props.catalogEntityStore.activeCategory = item;
|
|
});
|
|
} catch (error) {
|
|
console.error(error);
|
|
Notifications.error(<p>Unknown category: {routeTab}</p>);
|
|
}
|
|
}, { fireImmediately: true }),
|
|
]);
|
|
|
|
// If active category is filtered out, automatically switch to the first category
|
|
disposeOnUnmount(this, reaction(() => catalogCategoryRegistry.filteredItems, () => {
|
|
if (!catalogCategoryRegistry.filteredItems.find(item => item.getId() === this.props.catalogEntityStore.activeCategory.getId())) {
|
|
const item = catalogCategoryRegistry.filteredItems[0];
|
|
|
|
runInAction(() => {
|
|
if (item) {
|
|
this.activeTab = item.getId();
|
|
this.props.catalogEntityStore.activeCategory = item;
|
|
}
|
|
});
|
|
}
|
|
}));
|
|
}
|
|
|
|
addToHotbar(entity: CatalogEntity): void {
|
|
HotbarStore.getInstance().addToHotbar(entity);
|
|
}
|
|
|
|
removeFromHotbar(entity: CatalogEntity): void {
|
|
HotbarStore.getInstance().removeFromHotbar(entity.getId());
|
|
}
|
|
|
|
onDetails = (entity: CatalogEntity) => {
|
|
if (this.props.catalogEntityStore.selectedItemId) {
|
|
this.props.catalogEntityStore.selectedItemId = null;
|
|
} else {
|
|
this.props.catalogEntityStore.onRun(entity);
|
|
}
|
|
};
|
|
|
|
onMenuItemClick(menuItem: CatalogEntityContextMenu) {
|
|
if (menuItem.confirm) {
|
|
ConfirmDialog.open({
|
|
okButtonProps: {
|
|
primary: false,
|
|
accent: true,
|
|
},
|
|
ok: () => {
|
|
menuItem.onClick();
|
|
},
|
|
message: menuItem.confirm.message,
|
|
});
|
|
} else {
|
|
menuItem.onClick();
|
|
}
|
|
}
|
|
|
|
get categories() {
|
|
return catalogCategoryRegistry.items;
|
|
}
|
|
|
|
onTabChange = action((tabId: string | null) => {
|
|
const activeCategory = this.categories.find(category => category.getId() === tabId);
|
|
|
|
if (activeCategory) {
|
|
navigate(catalogURL({ params: { group: activeCategory.spec.group, kind: activeCategory.spec.names.kind }}));
|
|
} else {
|
|
navigate(catalogURL({ params: { group: browseCatalogTab }}));
|
|
}
|
|
});
|
|
|
|
renderNavigation() {
|
|
return (
|
|
<CatalogMenu activeItem={this.activeTab} onItemClick={this.onTabChange} />
|
|
);
|
|
}
|
|
|
|
renderItemMenu = (entity: CatalogEntity) => {
|
|
const onOpen = () => {
|
|
this.contextMenu.menuItems = [];
|
|
|
|
entity.onContextMenuOpen(this.contextMenu);
|
|
};
|
|
|
|
return (
|
|
<MenuActions onOpen={onOpen}>
|
|
<MenuItem key="open-details" onClick={() => this.props.catalogEntityStore.selectedItemId = entity.getId()}>
|
|
View Details
|
|
</MenuItem>
|
|
{
|
|
this.contextMenu.menuItems.map((menuItem, index) => (
|
|
<MenuItem key={index} onClick={() => this.onMenuItemClick(menuItem)}>
|
|
{menuItem.title}
|
|
</MenuItem>
|
|
))
|
|
}
|
|
<HotbarToggleMenuItem
|
|
key="hotbar-toggle"
|
|
entity={entity}
|
|
addContent="Add to Hotbar"
|
|
removeContent="Remove from Hotbar"
|
|
/>
|
|
</MenuActions>
|
|
);
|
|
};
|
|
|
|
renderName(entity: CatalogEntity) {
|
|
const isItemInHotbar = HotbarStore.getInstance().isAddedToActive(entity);
|
|
|
|
return (
|
|
<>
|
|
<Avatar
|
|
title={entity.getName()}
|
|
colorHash={`${entity.getName()}-${entity.getSource()}`}
|
|
src={entity.spec.icon?.src}
|
|
background={entity.spec.icon?.background}
|
|
className={styles.catalogAvatar}
|
|
size={24}
|
|
>
|
|
{entity.spec.icon?.material && <Icon material={entity.spec.icon?.material} small/>}
|
|
</Avatar>
|
|
<span>{entity.getName()}</span>
|
|
<Icon
|
|
small
|
|
className={styles.pinIcon}
|
|
material={!isItemInHotbar && "push_pin"}
|
|
svg={isItemInHotbar ? "push_off" : "push_pin"}
|
|
tooltip={isItemInHotbar ? "Remove from Hotbar" : "Add to Hotbar"}
|
|
onClick={prevDefault(() => isItemInHotbar ? this.removeFromHotbar(entity) : this.addToHotbar(entity))}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
|
|
renderViews = () => {
|
|
const { catalogEntityStore, customCategoryViews } = this.props;
|
|
const { activeCategory } = catalogEntityStore;
|
|
|
|
if (!activeCategory) {
|
|
return this.renderList();
|
|
}
|
|
|
|
const customViews = customCategoryViews.get()
|
|
.get(activeCategory.spec.group)
|
|
?.get(activeCategory.spec.names.kind);
|
|
const renderView = ({ View }: CustomCategoryViewComponents, index: number) => (
|
|
<View
|
|
key={index}
|
|
category={activeCategory}
|
|
/>
|
|
);
|
|
|
|
return (
|
|
<>
|
|
{customViews?.before.map(renderView)}
|
|
{this.renderList()}
|
|
{customViews?.after.map(renderView)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
renderList() {
|
|
const { catalogEntityStore, getCategoryColumns } = this.props;
|
|
const { activeCategory } = catalogEntityStore;
|
|
const tableId = activeCategory
|
|
? `catalog-items-${activeCategory.metadata.name.replace(" ", "")}`
|
|
: "catalog-items";
|
|
|
|
const noItemsMessage = activeCategory?.metadata.name == "Dev Clusters" ? "There are no Dev Clusters in this space"
|
|
: "Item list is empty";
|
|
|
|
if (this.activeTab === undefined) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<ItemListLayout
|
|
className={styles.Catalog}
|
|
tableId={tableId}
|
|
renderHeaderTitle={activeCategory?.metadata.name ?? "Browse All"}
|
|
isSelectable={false}
|
|
isConfigurable={true}
|
|
store={catalogEntityStore}
|
|
getItems={() => catalogEntityStore.entities}
|
|
showEmptyTablePlaceholder
|
|
noItemsMessage={noItemsMessage}
|
|
customizeTableRowProps={entity => ({
|
|
disabled: !entity.isEnabled(),
|
|
})}
|
|
{...getCategoryColumns({ activeCategory })}
|
|
onDetails={this.onDetails}
|
|
renderItemMenu={this.renderItemMenu}
|
|
/>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
if (!this.props.catalogEntityStore) {
|
|
return null;
|
|
}
|
|
|
|
const selectedEntity = this.props.catalogEntityStore.selectedItem;
|
|
|
|
return (
|
|
<MainLayout sidebar={this.renderNavigation()}>
|
|
<div className={styles.views}>
|
|
{this.renderViews()}
|
|
</div>
|
|
{
|
|
selectedEntity
|
|
? <CatalogEntityDetails
|
|
entity={selectedEntity}
|
|
hideDetails={() => this.props.catalogEntityStore.selectedItemId = null}
|
|
onRun={() => this.props.catalogEntityStore.onRun(selectedEntity)}
|
|
/>
|
|
: (
|
|
<RenderDelay>
|
|
<CatalogAddButton
|
|
category={this.props.catalogEntityStore.activeCategory}
|
|
/>
|
|
</RenderDelay>
|
|
)
|
|
}
|
|
</MainLayout>
|
|
);
|
|
}
|
|
}
|
|
|
|
export const Catalog = withInjectables<Dependencies, Props>( NonInjectedCatalog, {
|
|
getProps: (di, props) => ({
|
|
catalogEntityStore: di.inject(catalogEntityStoreInjectable),
|
|
catalogPreviousActiveTabStorage: di.inject(catalogPreviousActiveTabStorageInjectable),
|
|
getCategoryColumns: di.inject(getCategoryColumnsInjectable),
|
|
customCategoryViews: di.inject(customCategoryViewsInjectable),
|
|
...props,
|
|
}),
|
|
});
|