import { getInjectable } from "@ogre-tools/injectable"; import { onLoadOfApplicationInjectionToken } from "@k8slens/application"; import { getMessageChannel, sendMessageToChannelInjectionToken } from "@k8slens/messaging"; export const frameCommunicationAdminChannel = getMessageChannel( "frame-communication-admin-channel", ); const allowCommunicationToIframeInjectable = getInjectable({ id: "allow-communication-to-iframe-injectable", instantiate: (di) => { const sendMessageToChannel = di.inject(sendMessageToChannelInjectionToken); return { run: () => { sendMessageToChannel(frameCommunicationAdminChannel); }, }; }, injectionToken: onLoadOfApplicationInjectionToken, }); export default allowCommunicationToIframeInjectable;