mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Make sure release details are updates when opening details Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Relax filtering of resources to prevent crashing when release has installed resources in another namespace Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Add Open Closed Principle compliant way to introduce global overrides without modification in getDiForUnitTesting Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Rework helm release details to fix multiple bugs Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Remove redundant optional chaining Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Simplify code Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
27 lines
1002 B
TypeScript
27 lines
1002 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 { computed } from "mobx";
|
|
import { clusterFrameChildComponentInjectionToken } from "../../../frames/cluster-frame/cluster-frame-child-component-injection-token";
|
|
import { ReleaseDetails } from "./release-details";
|
|
import targetHelmReleaseInjectable from "./target-helm-release.injectable";
|
|
|
|
const releaseDetailsClusterFrameChildComponentInjectable = getInjectable({
|
|
id: "release-details-cluster-frame-child-component",
|
|
|
|
instantiate: (di) => {
|
|
const targetRelease = di.inject(targetHelmReleaseInjectable);
|
|
|
|
return {
|
|
id: "release-details",
|
|
Component: ReleaseDetails,
|
|
shouldRender: computed(() => !!targetRelease.get()),
|
|
};
|
|
},
|
|
injectionToken: clusterFrameChildComponentInjectionToken,
|
|
});
|
|
|
|
export default releaseDetailsClusterFrameChildComponentInjectable;
|