UNPKG

sussudio

Version:

An unofficial VS Code Internal API

46 lines (45 loc) 2.49 kB
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __param = (this && this.__param) || function (paramIndex, decorator) { return function (target, key) { decorator(target, key, paramIndex); } }; import { createDecorator, IInstantiationService } from "../../instantiation/common/instantiation.mjs"; import { ILifecycleMainService } from "../../lifecycle/electron-main/lifecycleMainService.mjs"; import { ILogService } from "../../log/common/log.mjs"; import { Menubar } from "./menubar.mjs"; export const IMenubarMainService = createDecorator('menubarMainService'); let MenubarMainService = class MenubarMainService { instantiationService; lifecycleMainService; logService; menubar; constructor(instantiationService, lifecycleMainService, logService) { this.instantiationService = instantiationService; this.lifecycleMainService = lifecycleMainService; this.logService = logService; this.menubar = this.installMenuBarAfterWindowOpen(); } async installMenuBarAfterWindowOpen() { await this.lifecycleMainService.when(3 /* LifecycleMainPhase.AfterWindowOpen */); return this.instantiationService.createInstance(Menubar); } async updateMenubar(windowId, menus) { this.logService.trace('menubarService#updateMenubar', windowId); const menubar = await this.menubar; menubar.updateMenu(menus, windowId); } }; MenubarMainService = __decorate([ __param(0, IInstantiationService), __param(1, ILifecycleMainService), __param(2, ILogService) ], MenubarMainService); export { MenubarMainService };