mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
32 lines
1.4 KiB
TypeScript
32 lines
1.4 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
import { getInjectable } from "@ogre-tools/injectable";
|
|
import assert from "assert";
|
|
import getPodsByOwnerIdInjectable from "../+workloads-pods/get-pods-by-owner-id.injectable";
|
|
import { kubeObjectStoreInjectionToken } from "../../../common/k8s-api/api-manager/kube-object-store-token";
|
|
import jobApiInjectable from "../../../common/k8s-api/endpoints/job.api.injectable";
|
|
import loggerInjectable from "../../../common/logger.injectable";
|
|
import clusterFrameContextForNamespacedResourcesInjectable from "../../cluster-frame-context/for-namespaced-resources.injectable";
|
|
import storesAndApisCanBeCreatedInjectable from "../../stores-apis-can-be-created.injectable";
|
|
import { JobStore } from "./store";
|
|
|
|
const jobStoreInjectable = getInjectable({
|
|
id: "job-store",
|
|
instantiate: (di) => {
|
|
assert(di.inject(storesAndApisCanBeCreatedInjectable), "jobStore is only available in certain environments");
|
|
|
|
const api = di.inject(jobApiInjectable);
|
|
|
|
return new JobStore({
|
|
getPodsByOwnerId: di.inject(getPodsByOwnerIdInjectable),
|
|
context: di.inject(clusterFrameContextForNamespacedResourcesInjectable),
|
|
logger: di.inject(loggerInjectable),
|
|
}, api);
|
|
},
|
|
injectionToken: kubeObjectStoreInjectionToken,
|
|
});
|
|
|
|
export default jobStoreInjectable;
|