mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Implement extensions API for workloads overview details (#2945)
* Implement extensions API for workloads overview details Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Prefix workloadsOverviewDetailItems Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * More renaming Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Add missing registry Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
This commit is contained in:
parent
deaf67b30b
commit
9852e5cfd8
@ -279,6 +279,7 @@ export class ExtensionLoader extends Singleton {
|
|||||||
registries.kubeObjectMenuRegistry.add(extension.kubeObjectMenuItems),
|
registries.kubeObjectMenuRegistry.add(extension.kubeObjectMenuItems),
|
||||||
registries.kubeObjectDetailRegistry.add(extension.kubeObjectDetailItems),
|
registries.kubeObjectDetailRegistry.add(extension.kubeObjectDetailItems),
|
||||||
registries.kubeObjectStatusRegistry.add(extension.kubeObjectStatusTexts),
|
registries.kubeObjectStatusRegistry.add(extension.kubeObjectStatusTexts),
|
||||||
|
registries.workloadsOverviewDetailRegistry.add(extension.kubeWorkloadsOverviewItems),
|
||||||
registries.commandRegistry.add(extension.commands),
|
registries.commandRegistry.add(extension.commands),
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
import type {
|
import type {
|
||||||
AppPreferenceRegistration, ClusterPageMenuRegistration, KubeObjectDetailRegistration, KubeObjectMenuRegistration,
|
AppPreferenceRegistration, ClusterPageMenuRegistration, KubeObjectDetailRegistration, KubeObjectMenuRegistration,
|
||||||
KubeObjectStatusRegistration, PageMenuRegistration, PageRegistration, StatusBarRegistration, WelcomeMenuRegistration,
|
KubeObjectStatusRegistration, PageMenuRegistration, PageRegistration, StatusBarRegistration, WelcomeMenuRegistration, WorkloadsOverviewDetailRegistration,
|
||||||
} from "./registries";
|
} from "./registries";
|
||||||
import type { Cluster } from "../main/cluster";
|
import type { Cluster } from "../main/cluster";
|
||||||
import { LensExtension } from "./lens-extension";
|
import { LensExtension } from "./lens-extension";
|
||||||
@ -40,6 +40,7 @@ export class LensRendererExtension extends LensExtension {
|
|||||||
statusBarItems: StatusBarRegistration[] = [];
|
statusBarItems: StatusBarRegistration[] = [];
|
||||||
kubeObjectDetailItems: KubeObjectDetailRegistration[] = [];
|
kubeObjectDetailItems: KubeObjectDetailRegistration[] = [];
|
||||||
kubeObjectMenuItems: KubeObjectMenuRegistration[] = [];
|
kubeObjectMenuItems: KubeObjectMenuRegistration[] = [];
|
||||||
|
kubeWorkloadsOverviewItems: WorkloadsOverviewDetailRegistration[] = [];
|
||||||
commands: CommandRegistration[] = [];
|
commands: CommandRegistration[] = [];
|
||||||
welcomeMenus: WelcomeMenuRegistration[] = [];
|
welcomeMenus: WelcomeMenuRegistration[] = [];
|
||||||
|
|
||||||
|
|||||||
@ -33,3 +33,4 @@ export * from "./command-registry";
|
|||||||
export * from "./entity-setting-registry";
|
export * from "./entity-setting-registry";
|
||||||
export * from "./welcome-menu-registry";
|
export * from "./welcome-menu-registry";
|
||||||
export * from "./protocol-handler-registry";
|
export * from "./protocol-handler-registry";
|
||||||
|
export * from "./workloads-overview-detail-registry";
|
||||||
|
|||||||
@ -0,0 +1,42 @@
|
|||||||
|
/**
|
||||||
|
* Copyright (c) 2021 OpenLens Authors
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
* this software and associated documentation files (the "Software"), to deal in
|
||||||
|
* the Software without restriction, including without limitation the rights to
|
||||||
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||||
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
||||||
|
* subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in all
|
||||||
|
* copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||||
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||||
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||||
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import type React from "react";
|
||||||
|
import { BaseRegistry } from "./base-registry";
|
||||||
|
|
||||||
|
export interface WorkloadsOverviewDetailComponents {
|
||||||
|
Details: React.ComponentType<any>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface WorkloadsOverviewDetailRegistration {
|
||||||
|
components: WorkloadsOverviewDetailComponents;
|
||||||
|
priority?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class WorkloadsOverviewDetailRegistry extends BaseRegistry<WorkloadsOverviewDetailRegistration> {
|
||||||
|
getItems() {
|
||||||
|
const items = super.getItems();
|
||||||
|
|
||||||
|
return items.sort((a, b) => (b.priority ?? 50) - (a.priority ?? 50));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export const workloadsOverviewDetailRegistry = new WorkloadsOverviewDetailRegistry();
|
||||||
@ -38,6 +38,7 @@ import { Events } from "../+events";
|
|||||||
import { isAllowedResource } from "../../../common/rbac";
|
import { isAllowedResource } from "../../../common/rbac";
|
||||||
import { kubeWatchApi } from "../../api/kube-watch-api";
|
import { kubeWatchApi } from "../../api/kube-watch-api";
|
||||||
import { clusterContext } from "../context";
|
import { clusterContext } from "../context";
|
||||||
|
import { workloadsOverviewDetailRegistry } from "../../../extensions/registries";
|
||||||
|
|
||||||
interface Props extends RouteComponentProps<IWorkloadsOverviewRouteParams> {
|
interface Props extends RouteComponentProps<IWorkloadsOverviewRouteParams> {
|
||||||
}
|
}
|
||||||
@ -57,11 +58,34 @@ export class WorkloadsOverview extends React.Component<Props> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
const items = workloadsOverviewDetailRegistry.getItems().map((item, index) => {
|
||||||
|
return (
|
||||||
|
<item.components.Details key={`workload-overview-${index}`}/>
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="WorkloadsOverview flex column gaps">
|
<div className="WorkloadsOverview flex column gaps">
|
||||||
<OverviewStatuses/>
|
{items}
|
||||||
{isAllowedResource("events") && <Events compact hideFilters className="box grow"/>}
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
workloadsOverviewDetailRegistry.add([
|
||||||
|
{
|
||||||
|
components: {
|
||||||
|
Details: (props: any) => <OverviewStatuses {...props} />,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
priority: 5,
|
||||||
|
components: {
|
||||||
|
Details: () => {
|
||||||
|
return (
|
||||||
|
isAllowedResource("events") && <Events compact hideFilters className="box grow"/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user