/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import styles from "./entity-settings.module.scss"; import React from "react"; import { observable, makeObservable } from "mobx"; import type { RouteComponentProps } from "react-router"; import { observer } from "mobx-react"; import { navigation } from "../../navigation"; import { Tabs, Tab } from "../tabs"; import type { CatalogEntity } from "../../api/catalog-entity"; import { catalogEntityRegistry } from "../../api/catalog-entity-registry"; import { EntitySettingRegistry } from "../../../extensions/registries"; import type { EntitySettingsRouteParams } from "../../../common/routes"; import { groupBy } from "lodash"; import { SettingLayout } from "../layout/setting-layout"; import logger from "../../../common/logger"; import { Avatar } from "../avatar"; interface Props extends RouteComponentProps { } @observer export class EntitySettings extends React.Component { @observable activeTab: string; constructor(props: Props) { super(props); makeObservable(this); const { hash } = navigation.location; if (hash) { const menuId = hash.slice(1); const item = this.menuItems.find((item) => item.id === menuId); if (item) { this.activeTab = item.id; } } } get entityId() { return this.props.match.params.entityId; } get entity(): CatalogEntity { return catalogEntityRegistry.getById(this.entityId); } get menuItems() { if (!this.entity) return []; return EntitySettingRegistry.getInstance().getItemsForKind(this.entity.kind, this.entity.apiVersion, this.entity.metadata.source); } get activeSetting() { this.activeTab ||= this.menuItems[0]?.id; return this.menuItems.find((setting) => setting.id === this.activeTab); } onTabChange = (tabId: string) => { this.activeTab = tabId; }; renderNavigation() { const groups = Object.entries(groupBy(this.menuItems, (item) => item.group || "Extensions")); groups.sort((a, b) => { if (a[0] === "Settings") return -1; if (a[0] === "Extensions") return 1; return a[0] <= b[0] ? -1 : 1; }); return ( <>
{this.entity.getName()}
{ groups.map((group, groupIndex) => (
{group[0]}
{ group[1].map((setting, index) => ( ))}
))}
); } render() { if (!this.entity) { logger.error("[ENTITY-SETTINGS]: entity not found", this.entityId); return null; } const { activeSetting } = this; return ( { activeSetting && (

{activeSetting.title}

) }
); } }