/** * 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 appEventBusInjectable from "../../../common/app-event-bus/app-event-bus.injectable"; import { beforeQuitOfFrontEndInjectionToken } from "../runnable-tokens/before-quit-of-front-end-injection-token"; const emitCloseToEventBusInjectable = getInjectable({ id: "emit-close-to-event-bus", instantiate: (di) => { const appEventBus = di.inject(appEventBusInjectable); return { run: () => { appEventBus.emit({ name: "app", action: "close" }); }, }; }, injectionToken: beforeQuitOfFrontEndInjectionToken, }); export default emitCloseToEventBusInjectable;