/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import "./cronjob-details.scss"; import React from "react"; import kebabCase from "lodash/kebabCase"; import { disposeOnUnmount, observer } from "mobx-react"; import { DrawerItem, DrawerTitle } from "../drawer"; import { Badge } from "../badge/badge"; import type { JobStore } from "../+workloads-jobs/store"; import { Link } from "react-router-dom"; import type { CronJobStore } from "./store"; import type { KubeObjectDetailsProps } from "../kube-object-details"; import { getDetailsUrl } from "../kube-detail-params"; import type { Job } from "../../../common/k8s-api/endpoints"; import { CronJob } from "../../../common/k8s-api/endpoints"; import logger from "../../../common/logger"; import { withInjectables } from "@ogre-tools/injectable-react"; import type { SubscribeStores } from "../../kube-watch-api/kube-watch-api"; import subscribeStoresInjectable from "../../kube-watch-api/subscribe-stores.injectable"; import cronJobStoreInjectable from "./store.injectable"; import jobStoreInjectable from "../+workloads-jobs/store.injectable"; export interface CronJobDetailsProps extends KubeObjectDetailsProps { } interface Dependencies { subscribeStores: SubscribeStores; jobStore: JobStore; cronJobStore: CronJobStore; } @observer class NonInjectedCronJobDetails extends React.Component { componentDidMount() { disposeOnUnmount(this, [ this.props.subscribeStores([ this.props.jobStore, ]), ]); } render() { const { object: cronJob, jobStore, cronJobStore } = this.props; if (!cronJob) { return null; } if (!(cronJob instanceof CronJob)) { logger.error("[CronJobDetails]: passed object that is not an instanceof CronJob", cronJob); return null; } const childJobs = jobStore.getJobsByOwner(cronJob); return (
{ cronJob.isNeverRun() ? `never (${cronJob.getSchedule()})` : cronJob.getSchedule() } {cronJobStore.getActiveJobsNum(cronJob)} {cronJob.getSuspendFlag()} {cronJob.getLastScheduleTime()} {childJobs.length > 0 && ( <> Jobs {childJobs.map((job: Job) => { const selectors = job.getSelectors(); const condition = job.getCondition(); return (
job.selfLink ? getDetailsUrl(job.selfLink) : ""}> {job.getName()}
{condition && ( )} { selectors.map(label => ) }
);}) } )}
); } } export const CronJobDetails = withInjectables(NonInjectedCronJobDetails, { getProps: (di, props) => ({ ...props, subscribeStores: di.inject(subscribeStoresInjectable), cronJobStore: di.inject(cronJobStoreInjectable), jobStore: di.inject(jobStoreInjectable), }), });