/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import "./overview.scss"; import React from "react"; import { disposeOnUnmount, observer } from "mobx-react"; import type { DeploymentStore } from "../+workloads-deployments/store"; import type { StatefulSetStore } from "../+workloads-statefulsets/store"; import type { JobStore } from "../+workloads-jobs/store"; import type { CronJobStore } from "../+workloads-cronjobs/store"; import type { IComputedValue } from "mobx"; import { makeObservable, observable, reaction } from "mobx"; import { NamespaceSelectFilter } from "../+namespaces/namespace-select-filter"; import { Icon } from "../icon"; import { TooltipPosition } from "../tooltip"; import { withInjectables } from "@ogre-tools/injectable-react"; import clusterFrameContextInjectable from "../../cluster-frame-context/cluster-frame-context.injectable"; import type { ClusterFrameContext } from "../../cluster-frame-context/cluster-frame-context"; import type { SubscribeStores } from "../../kube-watch-api/kube-watch-api"; import workloadOverviewDetailsInjectable from "./workload-overview-details/workload-overview-details.injectable"; import { SiblingsInTabLayout } from "../layout/siblings-in-tab-layout"; import type { PodStore } from "../+workloads-pods/store"; import type { DaemonSetStore } from "../+workloads-daemonsets/store"; import subscribeStoresInjectable from "../../kube-watch-api/subscribe-stores.injectable"; import daemonSetStoreInjectable from "../+workloads-daemonsets/store.injectable"; import podStoreInjectable from "../+workloads-pods/store.injectable"; import type { ReplicaSetStore } from "../+workloads-replicasets/store"; import replicaSetStoreInjectable from "../+workloads-replicasets/store.injectable"; import cronJobStoreInjectable from "../+workloads-cronjobs/store.injectable"; import deploymentStoreInjectable from "../+workloads-deployments/store.injectable"; import jobStoreInjectable from "../+workloads-jobs/store.injectable"; import statefulSetStoreInjectable from "../+workloads-statefulsets/store.injectable"; import type { EventStore } from "../+events/store"; import eventStoreInjectable from "../+events/store.injectable"; interface Dependencies { detailComponents: IComputedValue[]>; clusterFrameContext: ClusterFrameContext; subscribeStores: SubscribeStores; podStore: PodStore; daemonSetStore: DaemonSetStore; replicaSetStore: ReplicaSetStore; deploymentStore: DeploymentStore; jobStore: JobStore; cronJobStore: CronJobStore; statefulSetStore: StatefulSetStore; eventStore: EventStore; } @observer class NonInjectedWorkloadsOverview extends React.Component { @observable loadErrors: string[] = []; constructor(props: Dependencies) { super(props); makeObservable(this); } componentDidMount() { disposeOnUnmount(this, [ this.props.subscribeStores([ this.props.cronJobStore, this.props.daemonSetStore, this.props.deploymentStore, this.props.eventStore, this.props.jobStore, this.props.podStore, this.props.replicaSetStore, this.props.statefulSetStore, ], { onLoadFailure: error => this.loadErrors.push(String(error)), }), reaction(() => this.props.clusterFrameContext.contextNamespaces.slice(), () => { // clear load errors this.loadErrors.length = 0; }), ]); } renderLoadErrors() { if (this.loadErrors.length === 0) { return null; } return ( {this.loadErrors.map((error, index) =>

{error}

)} ), preferredPositions: TooltipPosition.BOTTOM, }} /> ); } render() { return (
Overview
{this.renderLoadErrors()}
{this.props.detailComponents.get().map((Details, index) => (
))}
); } } export const WorkloadsOverview = withInjectables(NonInjectedWorkloadsOverview, { getProps: (di) => ({ detailComponents: di.inject(workloadOverviewDetailsInjectable), clusterFrameContext: di.inject(clusterFrameContextInjectable), subscribeStores: di.inject(subscribeStoresInjectable), daemonSetStore: di.inject(daemonSetStoreInjectable), podStore: di.inject(podStoreInjectable), replicaSetStore: di.inject(replicaSetStoreInjectable), cronJobStore: di.inject(cronJobStoreInjectable), deploymentStore: di.inject(deploymentStoreInjectable), jobStore: di.inject(jobStoreInjectable), statefulSetStore: di.inject(statefulSetStoreInjectable), eventStore: di.inject(eventStoreInjectable), }), });