/** * 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 { jobStore } from "../+workloads-jobs/job.store"; import { Link } from "react-router-dom"; import { cronJobStore } from "./cronjob.store"; import type { KubeObjectDetailsProps } from "../kube-object-details"; import { getDetailsUrl } from "../kube-detail-params"; import { CronJob, Job } from "../../../common/k8s-api/endpoints"; import { KubeObjectMeta } from "../kube-object-meta"; import logger from "../../../common/logger"; import type { KubeObjectStore } from "../../../common/k8s-api/kube-object.store"; import type { KubeObject } from "../../../common/k8s-api/kube-object"; import type { Disposer } from "../../../common/utils"; import { withInjectables } from "@ogre-tools/injectable-react"; import kubeWatchApiInjectable from "../../kube-watch-api/kube-watch-api.injectable"; interface Props extends KubeObjectDetailsProps { } interface Dependencies { subscribeStores: (stores: KubeObjectStore[]) => Disposer; } @observer class NonInjectedCronJobDetails extends React.Component { componentDidMount() { disposeOnUnmount(this, [ this.props.subscribeStores([ jobStore, ]), ]); } render() { const { object: cronJob } = 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 && <> {childJobs.map((job: Job) => { const selectors = job.getSelectors(); const condition = job.getCondition(); return (
{job.getName()}
{condition && ( )} { selectors.map(label => ) }
);}) } }
); } } export const CronJobDetails = withInjectables( NonInjectedCronJobDetails, { getProps: (di, props) => ({ subscribeStores: di.inject(kubeWatchApiInjectable).subscribeStores, ...props, }), }, );