1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/+workloads-cronjobs/cronjob-details.tsx
Roman be4e1aa15c
Navigation refactoring, handling extension page params (#1651)
* decentralizing page url-params management -- PoC / tsc 4.1 random fixes

Signed-off-by: Roman <ixrock@gmail.com>

* fixes, tweak example-extension for demo

Signed-off-by: Roman <ixrock@gmail.com>

* lint fixes, revert tests

Signed-off-by: Roman <ixrock@gmail.com>

* removed occasional changes related to typescript 4.1

Signed-off-by: Roman <ixrock@gmail.com>

* updated example with 2 menu-items targeting same page with different params

Signed-off-by: Roman <ixrock@gmail.com>

* fix: merge page url chunks with native URL()-api, simplified default page-params registration

Signed-off-by: Roman <ixrock@gmail.com>

* fix: make lint happy

Signed-off-by: Roman <ixrock@gmail.com>

* fix: unit-tests

Signed-off-by: Roman <ixrock@gmail.com>

* renaming by jim's request: UrlParam => PageParam (type), createUrlParam => createPageParam (helper)

Signed-off-by: Roman <ixrock@gmail.com>

* fix: reverting NamespaceStore public-api breaking changes

Signed-off-by: Roman <ixrock@gmail.com>

* lint fix

Signed-off-by: Roman <ixrock@gmail.com>

* fine-tuning

Signed-off-by: Roman <ixrock@gmail.com>

* yes, lint always unhappy

Signed-off-by: Roman <ixrock@gmail.com>

* fix build

Signed-off-by: Roman <ixrock@gmail.com>

* small fixes

Signed-off-by: Roman <ixrock@gmail.com>

* fix merge-conflicts

Signed-off-by: Roman <ixrock@gmail.com>

* removed `isSystem` page-param's init field exposed to extensions-api

Signed-off-by: Roman <ixrock@gmail.com>
2020-12-22 15:29:25 +02:00

106 lines
3.3 KiB
TypeScript

import "./cronjob-details.scss";
import React from "react";
import kebabCase from "lodash/kebabCase";
import { observer } from "mobx-react";
import { Trans } from "@lingui/macro";
import { DrawerItem, DrawerTitle } from "../drawer";
import { Badge } from "../badge/badge";
import { jobStore } from "../+workloads-jobs/job.store";
import { Link } from "react-router-dom";
import { KubeEventDetails } from "../+events/kube-event-details";
import { cronJobStore } from "./cronjob.store";
import { getDetailsUrl, KubeObjectDetailsProps } from "../kube-object";
import { CronJob, Job } from "../../api/endpoints";
import { KubeObjectMeta } from "../kube-object/kube-object-meta";
import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry";
interface Props extends KubeObjectDetailsProps<CronJob> {
}
@observer
export class CronJobDetails extends React.Component<Props> {
async componentDidMount() {
if (!jobStore.isLoaded) {
jobStore.loadAll();
}
}
render() {
const { object: cronJob } = this.props;
if (!cronJob) return null;
const childJobs = jobStore.getJobsByOwner(cronJob);
return (
<div className="CronJobDetails">
<KubeObjectMeta object={cronJob}/>
<DrawerItem name={<Trans>Schedule</Trans>}>
{cronJob.isNeverRun() ? (
<>
<Trans>never</Trans> ({cronJob.getSchedule()})
</>
) : cronJob.getSchedule()}
</DrawerItem>
<DrawerItem name={<Trans>Active</Trans>}>
{cronJobStore.getActiveJobsNum(cronJob)}
</DrawerItem>
<DrawerItem name={<Trans>Suspend</Trans>}>
{cronJob.getSuspendFlag()}
</DrawerItem>
<DrawerItem name={<Trans>Last schedule</Trans>}>
{cronJob.getLastScheduleTime()}
</DrawerItem>
{childJobs.length > 0 &&
<>
<DrawerTitle title={<Trans>Jobs</Trans>}/>
{childJobs.map((job: Job) => {
const selectors = job.getSelectors();
const condition = job.getCondition();
return (
<div className="job" key={job.getId()}>
<div className="title">
<Link to={getDetailsUrl(job.selfLink)}>
{job.getName()}
</Link>
</div>
<DrawerItem name={<Trans>Condition</Trans>} className="conditions" labelsOnly>
{condition && (
<Badge
label={condition.type}
className={kebabCase(condition.type)}
/>
)}
</DrawerItem>
<DrawerItem name={<Trans>Selector</Trans>} labelsOnly>
{
selectors.map(label => <Badge key={label} label={label}/>)
}
</DrawerItem>
</div>
);})
}
</>
}
</div>
);
}
}
kubeObjectDetailRegistry.add({
kind: "CronJob",
apiVersions: ["batch/v1beta1"],
components: {
Details: (props) => <CronJobDetails {...props} />
}
});
kubeObjectDetailRegistry.add({
kind: "CronJob",
apiVersions: ["batch/v1beta1"],
priority: 5,
components: {
Details: (props) => <KubeEventDetails {...props} />
}
});