mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Remove global version of appEventBus Signed-off-by: Sebastian Malton <sebastian@malton.name> * Introduce a temporary but better shape of ExecFileInjectable error Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name>
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
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 { afterApplicationIsLoadedInjectionToken } from "../../../main/start-main-application/runnable-tokens/after-application-is-loaded-injection-token";
|
|
import emitAppEventInjectable from "../../../common/app-event-bus/emit-event.injectable";
|
|
import { getCurrentDateTime } from "../../../common/utils/date/get-current-date-time";
|
|
import buildVersionInjectable from "../../../main/vars/build-version/build-version.injectable";
|
|
|
|
const emitCurrentVersionToAnalyticsInjectable = getInjectable({
|
|
id: "emit-current-version-to-analytics",
|
|
|
|
instantiate: (di) => {
|
|
const emitAppEvent = di.inject(emitAppEventInjectable);
|
|
const buildVersion = di.inject(buildVersionInjectable);
|
|
|
|
return {
|
|
id: "emit-current-version-to-analytics",
|
|
run: () => {
|
|
emitAppEvent({
|
|
name: "app",
|
|
action: "current-version",
|
|
|
|
params: {
|
|
version: buildVersion.get(),
|
|
currentDateTime: getCurrentDateTime(),
|
|
},
|
|
});
|
|
},
|
|
};
|
|
},
|
|
|
|
injectionToken: afterApplicationIsLoadedInjectionToken,
|
|
});
|
|
|
|
export default emitCurrentVersionToAnalyticsInjectable;
|