mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Reorganize stuff to prevent circular dependencies Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Install injectable extension to allow injecting reactively many implementations Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Switch to using computedInjectMany over filtering injectMany based on enabled extensions for simplicity Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Remove await for not being needed Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Sort dependencies alphabetically Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
32 lines
943 B
TypeScript
32 lines
943 B
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
import { getInjectable, lifecycleEnum } from "@ogre-tools/injectable";
|
|
import { computed } from "mobx";
|
|
import type { Route } from "../../common/front-end-routing/front-end-route-injection-token";
|
|
import currentPathInjectable from "./current-path.injectable";
|
|
import { matchPath } from "react-router-dom";
|
|
|
|
const routeIsActiveInjectable = getInjectable({
|
|
id: "route-is-active",
|
|
|
|
instantiate: (di, route: Route<unknown>) => {
|
|
const currentPath = di.inject(currentPathInjectable);
|
|
|
|
return computed(
|
|
() =>
|
|
!!matchPath(currentPath.get(), {
|
|
path: route.path,
|
|
exact: true,
|
|
}),
|
|
);
|
|
},
|
|
|
|
lifecycle: lifecycleEnum.keyedSingleton({
|
|
getInstanceKey: (di, route: Route<unknown>) => route.path,
|
|
}),
|
|
});
|
|
|
|
export default routeIsActiveInjectable;
|