mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
22 lines
701 B
TypeScript
22 lines
701 B
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 type { ClusterId } from "../cluster-types";
|
|
import type { Cluster } from "../cluster/cluster";
|
|
import clusterStoreInjectable from "./cluster-store.injectable";
|
|
|
|
export type GetClusterById = (id: ClusterId) => Cluster | undefined;
|
|
|
|
const getClusterByIdInjectable = getInjectable({
|
|
id: "get-cluster-by-id",
|
|
instantiate: (di): GetClusterById => {
|
|
const store = di.inject(clusterStoreInjectable);
|
|
|
|
return (id) => store.getById(id);
|
|
},
|
|
});
|
|
|
|
export default getClusterByIdInjectable;
|