mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import { KubeObjectStore } from "../../../common/k8s-api/kube-object.store";
|
|
import { autoBind } from "../../utils";
|
|
import { CronJob, cronJobApi } from "../../../common/k8s-api/endpoints/cron-job.api";
|
|
import { jobStore } from "../+workloads-jobs/job.store";
|
|
import { apiManager } from "../../../common/k8s-api/api-manager";
|
|
|
|
export class CronJobStore extends KubeObjectStore<CronJob> {
|
|
api = cronJobApi;
|
|
|
|
constructor() {
|
|
super();
|
|
autoBind(this);
|
|
}
|
|
|
|
getStatuses(cronJobs?: CronJob[]) {
|
|
const status = { scheduled: 0, suspended: 0 };
|
|
|
|
cronJobs.forEach(cronJob => {
|
|
if (cronJob.spec.suspend) {
|
|
status.suspended++;
|
|
}
|
|
else {
|
|
status.scheduled++;
|
|
}
|
|
});
|
|
|
|
return status;
|
|
}
|
|
|
|
getActiveJobsNum(cronJob: CronJob) {
|
|
// Active jobs are jobs without any condition 'Complete' nor 'Failed'
|
|
const jobs = jobStore.getJobsByOwner(cronJob);
|
|
|
|
if (!jobs.length) return 0;
|
|
|
|
return jobs.filter(job => !job.getCondition()).length;
|
|
}
|
|
}
|
|
|
|
export const cronJobStore = new CronJobStore();
|
|
apiManager.registerStore(cronJobStore);
|