/** * 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 type { IComputedValue } from "mobx"; import { observable, makeObservable, computed } from "mobx"; import { observer } from "mobx-react"; import { Tabs, Tab } from "../tabs"; import type { CatalogEntity } from "../../api/catalog-entity"; import type { CatalogEntityRegistry } from "../../api/catalog/entity/registry"; import { EntitySettingRegistry } from "../../../extensions/registries"; import { groupBy } from "lodash"; import { SettingLayout } from "../layout/setting-layout"; import logger from "../../../common/logger"; import { Avatar } from "../avatar"; import { withInjectables } from "@ogre-tools/injectable-react"; import entitySettingsRouteParametersInjectable from "./entity-settings-route-parameters.injectable"; import type { ObservableHistory } from "mobx-observable-history"; import catalogEntityRegistryInjectable from "../../api/catalog/entity/registry.injectable"; import observableHistoryInjectable from "../../navigation/observable-history.injectable"; interface Dependencies { entityId: IComputedValue; entityRegistry: CatalogEntityRegistry; observableHistory: ObservableHistory; } @observer class NonInjectedEntitySettings extends React.Component { @observable activeTab?: string; constructor(props: Dependencies) { super(props); makeObservable(this); const { hash } = this.props.observableHistory.location; if (hash) { const menuId = hash.slice(1); const item = this.menuItems.find((item) => item.id === menuId); if (item) { this.activeTab = item.id; } } } @computed get entityId() { return this.props.entityId.get(); } get entity() { return this.props.entityRegistry.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(entity: CatalogEntity) { 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 ( <>
{entity.getName()}
{ groups.map((group, groupIndex) => (
{group[0]}
{ group[1].map((setting, index) => ( ))}
))}
); } render() { const { activeSetting, entity } = this; if (!entity) { logger.error("[ENTITY-SETTINGS]: entity not found", this.entityId); return null; } return ( { activeSetting && (

{activeSetting.title}

) }
); } } export const EntitySettings = withInjectables(NonInjectedEntitySettings, { getProps: (di) => ({ ...di.inject(entitySettingsRouteParametersInjectable), entityRegistry: di.inject(catalogEntityRegistryInjectable), observableHistory: di.inject(observableHistoryInjectable), }), });