mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Persist apiVersion when editing resources in monaco - Use a new custom k8slens prefixed label - Means that users aren't surprised when they use lens to update a resource to a new apiVersionWithGroup - Doesn't touch the versions in the stores Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix lint Signed-off-by: Sebastian Malton <sebastian@malton.name> * fix: Fix lint issues Signed-off-by: Sebastian Malton <sebastian@malton.name> * chore: make lint not bail on failure Signed-off-by: Sebastian Malton <sebastian@malton.name> * chore: Run lint:fix on all files Signed-off-by: Sebastian Malton <sebastian@malton.name> --------- Signed-off-by: Sebastian Malton <sebastian@malton.name>
24 lines
782 B
TypeScript
24 lines
782 B
TypeScript
import { getInjectable } from "@ogre-tools/injectable";
|
|
import { onLoadOfApplicationInjectionToken } from "@k8slens/application";
|
|
import { getMessageChannel, sendMessageToChannelInjectionToken } from "@k8slens/messaging";
|
|
|
|
export const frameCommunicationAdminChannel = getMessageChannel<undefined>("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;
|