1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/features/telemetry/renderer/emit-telemetry.injectable.ts
Iku-turso 7e9e48e631 Implement a decorator to emit telemetry for any specified function-injectable
Signed-off-by: Iku-turso <mikko.aspiala@gmail.com>
2022-09-02 14:37:59 +03:00

28 lines
753 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 emitEventInjectable from "../../../common/app-event-bus/emit-event.injectable";
const emitTelemetryInjectable = getInjectable({
id: "emit-telemetry",
instantiate: (di) => {
const emitEvent = di.inject(emitEventInjectable);
return ({ action, args }: { action: string; args: any[] }) => {
emitEvent({
destination: "auto-capture",
action: "telemetry-from-business-action",
name: action,
params: { args },
});
};
},
decorable: false,
});
export default emitTelemetryInjectable;