mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com> Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
import { lensWindowInjectionToken } from "../start-main-application/lens-window/application-window/lens-window-injection-token";
|
|
import { pipeline } from "@ogre-tools/fp";
|
|
import { getInjectable } from "@ogre-tools/injectable";
|
|
import { filter } from "lodash/fp";
|
|
import { sendToAgnosticChannelInjectionToken } from "../../common/channel/send-to-agnostic-channel-injection-token";
|
|
|
|
const sendToAgnosticChannelInjectable = getInjectable({
|
|
id: "send-to-agnostic-channel-main",
|
|
|
|
instantiate: (di) => {
|
|
const getAllLensWindows = () => di.injectMany(lensWindowInjectionToken);
|
|
|
|
return (channel, message) => {
|
|
const visibleWindows = pipeline(
|
|
getAllLensWindows(),
|
|
filter((lensWindow) => !!lensWindow.visible),
|
|
);
|
|
|
|
visibleWindows.forEach((lensWindow) =>
|
|
lensWindow.send({ channel: channel.id, data: [message] }),
|
|
);
|
|
};
|
|
},
|
|
|
|
injectionToken: sendToAgnosticChannelInjectionToken,
|
|
});
|
|
|
|
export default sendToAgnosticChannelInjectable;
|