mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* loading k8s resources into stores per selected namespaces -- part 1 Signed-off-by: Roman <ixrock@gmail.com> * loading k8s resources into stores per selected namespaces -- part 2 - fix: generating helm chart id Signed-off-by: Roman <ixrock@gmail.com> * loading k8s resources into stores per selected namespaces -- part 3 Signed-off-by: Roman <ixrock@gmail.com> * fixes Signed-off-by: Roman <ixrock@gmail.com> * fixes / responding to comments Signed-off-by: Roman <ixrock@gmail.com> * chore / small fixes Signed-off-by: Roman <ixrock@gmail.com> * fixes & refactoring Signed-off-by: Roman <ixrock@gmail.com> * make lint happy Signed-off-by: Roman <ixrock@gmail.com> * reset store on loading error Signed-off-by: Roman <ixrock@gmail.com> * added new cluster method: cluster.isAllowedResource Signed-off-by: Roman <ixrock@gmail.com> * fix: loading namespaces optimizations Signed-off-by: Roman <ixrock@gmail.com> * fixes & refactoring Signed-off-by: Roman <ixrock@gmail.com>
61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
import "./overview-statuses.scss";
|
|
|
|
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
import { OverviewWorkloadStatus } from "./overview-workload-status";
|
|
import { Link } from "react-router-dom";
|
|
import { workloadURL, workloadStores } from "../+workloads";
|
|
import { namespaceStore } from "../+namespaces/namespace.store";
|
|
import { PageFiltersList } from "../item-object-list/page-filters-list";
|
|
import { NamespaceSelectFilter } from "../+namespaces/namespace-select";
|
|
import { isAllowedResource, KubeResource } from "../../../common/rbac";
|
|
import { ResourceNames } from "../../../renderer/utils/rbac";
|
|
import { autobind } from "../../utils";
|
|
|
|
const resources: KubeResource[] = [
|
|
"pods",
|
|
"deployments",
|
|
"statefulsets",
|
|
"daemonsets",
|
|
"replicasets",
|
|
"jobs",
|
|
"cronjobs",
|
|
];
|
|
|
|
@observer
|
|
export class OverviewStatuses extends React.Component {
|
|
@autobind()
|
|
renderWorkload(resource: KubeResource): React.ReactElement {
|
|
const store = workloadStores[resource];
|
|
const items = store.getAllByNs(namespaceStore.getContextNamespaces());
|
|
|
|
return (
|
|
<div className="workload" key={resource}>
|
|
<div className="title">
|
|
<Link to={workloadURL[resource]()}>{ResourceNames[resource]} ({items.length})</Link>
|
|
</div>
|
|
<OverviewWorkloadStatus status={store.getStatuses(items)} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const workloads = resources
|
|
.filter(isAllowedResource)
|
|
.map(this.renderWorkload);
|
|
|
|
return (
|
|
<div className="OverviewStatuses">
|
|
<div className="header flex gaps align-center">
|
|
<h5 className="box grow">Overview</h5>
|
|
<NamespaceSelectFilter />
|
|
</div>
|
|
<PageFiltersList />
|
|
<div className="workloads">
|
|
{workloads}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|