mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- don't assume that loading "all namespaces" that lens knows about is the same as loading "all namespaces" that exist on the cluster - Track when actually listing namespaces Signed-off-by: Sebastian Malton <sebastian@malton.name>
59 lines
1.7 KiB
TypeScript
59 lines
1.7 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 { NamespaceSelectFilter } from "../+namespaces/namespace-select-filter";
|
|
import { isAllowedResource, KubeResource } from "../../../common/rbac";
|
|
import { ResourceNames } from "../../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.selectedNamespaces);
|
|
|
|
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>
|
|
<div className="workloads">
|
|
{workloads}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|