mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
112 lines
3.7 KiB
TypeScript
112 lines
3.7 KiB
TypeScript
import "./job-details.scss";
|
|
|
|
import React from "react";
|
|
import kebabCase from "lodash/kebabCase";
|
|
import { observer } from "mobx-react";
|
|
import { Trans } from "@lingui/macro";
|
|
import { DrawerItem } from "../drawer";
|
|
import { Badge } from "../badge";
|
|
import { PodDetailsStatuses } from "../+workloads-pods/pod-details-statuses";
|
|
import { Link } from "react-router-dom";
|
|
import { PodDetailsTolerations } from "../+workloads-pods/pod-details-tolerations";
|
|
import { PodDetailsAffinities } from "../+workloads-pods/pod-details-affinities";
|
|
import { KubeEventDetails } from "../+events/kube-event-details";
|
|
import { podsStore } from "../+workloads-pods/pods.store";
|
|
import { jobStore } from "./job.store";
|
|
import { getDetailsUrl } from "../../navigation";
|
|
import { KubeObjectDetailsProps } from "../kube-object";
|
|
import { Job, jobApi } from "../../api/endpoints";
|
|
import { PodDetailsList } from "../+workloads-pods/pod-details-list";
|
|
import { lookupApiLink } from "../../api/kube-api";
|
|
import { apiManager } from "../../api/api-manager";
|
|
import { KubeObjectMeta } from "../kube-object/kube-object-meta";
|
|
|
|
interface Props extends KubeObjectDetailsProps<Job> {
|
|
}
|
|
|
|
@observer
|
|
export class JobDetails extends React.Component<Props> {
|
|
async componentDidMount() {
|
|
if (!podsStore.isLoaded) {
|
|
podsStore.loadAll();
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { object: job } = this.props;
|
|
if (!job) return null;
|
|
const selectors = job.getSelectors()
|
|
const nodeSelector = job.getNodeSelectors()
|
|
const images = job.getImages()
|
|
const childPods = jobStore.getChildPods(job)
|
|
const ownerRefs = job.getOwnerRefs()
|
|
const condition = job.getCondition()
|
|
return (
|
|
<div className="JobDetails">
|
|
<KubeObjectMeta object={job}/>
|
|
<DrawerItem name={<Trans>Selector</Trans>} labelsOnly>
|
|
{
|
|
Object.keys(selectors).map(label => <Badge key={label} label={label}/>)
|
|
}
|
|
</DrawerItem>
|
|
{nodeSelector.length > 0 &&
|
|
<DrawerItem name={<Trans>Node Selector</Trans>} labelsOnly>
|
|
{
|
|
nodeSelector.map(label => (
|
|
<Badge key={label} label={label}/>
|
|
))
|
|
}
|
|
</DrawerItem>
|
|
}
|
|
{images.length > 0 &&
|
|
<DrawerItem name={<Trans>Images</Trans>}>
|
|
{
|
|
images.map(image => <p key={image}>{image}</p>)
|
|
}
|
|
</DrawerItem>
|
|
}
|
|
{ownerRefs.length > 0 &&
|
|
<DrawerItem name={<Trans>Controlled by</Trans>}>
|
|
{
|
|
ownerRefs.map(ref => {
|
|
const { name, kind } = ref;
|
|
const detailsUrl = getDetailsUrl(lookupApiLink(ref, job))
|
|
return (
|
|
<p key={name}>
|
|
{kind} <Link to={detailsUrl}>{name}</Link>
|
|
</p>
|
|
);
|
|
})
|
|
}
|
|
</DrawerItem>
|
|
}
|
|
<DrawerItem name={<Trans>Conditions</Trans>} className="conditions" labelsOnly>
|
|
{condition && (
|
|
<Badge
|
|
className={kebabCase(condition.type)}
|
|
label={condition.type}
|
|
tooltip={condition.message}
|
|
/>
|
|
)}
|
|
</DrawerItem>
|
|
<DrawerItem name={<Trans>Completions</Trans>}>
|
|
{job.getDesiredCompletions()}
|
|
</DrawerItem>
|
|
<DrawerItem name={<Trans>Parallelism</Trans>}>
|
|
{job.getParallelism()}
|
|
</DrawerItem>
|
|
<PodDetailsTolerations workload={job}/>
|
|
<PodDetailsAffinities workload={job}/>
|
|
<DrawerItem name={<Trans>Pod Status</Trans>} className="pod-status">
|
|
<PodDetailsStatuses pods={childPods}/>
|
|
</DrawerItem>
|
|
<PodDetailsList pods={childPods} owner={job}/>
|
|
<KubeEventDetails object={job}/>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
apiManager.registerViews(jobApi, {
|
|
Details: JobDetails
|
|
}); |