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
885 B
TypeScript
27 lines
885 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 helmReleasesRouteParametersInjectable from "../helm-releases-route-parameters.injectable";
|
|
|
|
export interface TargetHelmRelease { name: string; namespace: string }
|
|
|
|
const targetHelmReleaseInjectable = getInjectable({
|
|
id: "target-helm-release",
|
|
|
|
instantiate: (di) => {
|
|
const routeParameters = di.inject(helmReleasesRouteParametersInjectable);
|
|
|
|
return computed((): TargetHelmRelease | undefined => {
|
|
const name = routeParameters.name.get();
|
|
const namespace = routeParameters.namespace.get();
|
|
|
|
return name && namespace ? { name, namespace } : undefined;
|
|
});
|
|
},
|
|
});
|
|
|
|
export default targetHelmReleaseInjectable;
|