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>
33 lines
993 B
TypeScript
33 lines
993 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 { computedInjectManyInjectable } from "@ogre-tools/injectable-extension-for-mobx";
|
|
import { computed } from "mobx";
|
|
import { trayMenuItemInjectionToken } from "./tray-menu-item-injection-token";
|
|
import { pipeline } from "@ogre-tools/fp";
|
|
import { filter, sortBy } from "lodash/fp";
|
|
|
|
const trayMenuItemsInjectable = getInjectable({
|
|
id: "tray-menu-items",
|
|
|
|
instantiate: (di) => {
|
|
const computedInjectMany = di.inject(
|
|
computedInjectManyInjectable,
|
|
);
|
|
|
|
const reactiveMenuItems = computedInjectMany(trayMenuItemInjectionToken);
|
|
|
|
return computed(() =>
|
|
pipeline(
|
|
reactiveMenuItems.get(),
|
|
filter((item) => item.visible.get()),
|
|
(items) => sortBy("orderNumber", items),
|
|
),
|
|
);
|
|
},
|
|
});
|
|
|
|
export default trayMenuItemsInjectable;
|