/*--------------------------------------------------------------------------------------------- * 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 { ModifierKeyEmitter } from '../../../base/browser/dom.js'; import { Emitter } from '../../../base/common/event.js'; import { Disposable } from '../../../base/common/lifecycle.js'; import { IKeybindingService } from '../../keybinding/common/keybinding.js'; import { INotificationService } from '../../notification/common/notification.js'; import { ITelemetryService } from '../../telemetry/common/telemetry.js'; import { IThemeService } from '../../theme/common/themeService.js'; import { ContextMenuHandler } from './contextMenuHandler.js'; import { IContextViewService } from './contextView.js'; let ContextMenuService = class ContextMenuService extends Disposable { constructor(telemetryService, notificationService, contextViewService, keybindingService, themeService) { super(); this._onDidShowContextMenu = new Emitter(); this._onDidHideContextMenu = new Emitter(); this.contextMenuHandler = new ContextMenuHandler(contextViewService, telemetryService, notificationService, keybindingService, themeService); } configure(options) { this.contextMenuHandler.configure(options); } // ContextMenu showContextMenu(delegate) { this.contextMenuHandler.showContextMenu(Object.assign(Object.assign({}, delegate), { onHide: (didCancel) => { if (delegate.onHide) { delegate.onHide(didCancel); } this._onDidHideContextMenu.fire(); } })); ModifierKeyEmitter.getInstance().resetKeyStatus(); this._onDidShowContextMenu.fire(); } }; ContextMenuService = __decorate([ __param(0, ITelemetryService), __param(1, INotificationService), __param(2, IContextViewService), __param(3, IKeybindingService), __param(4, IThemeService) ], ContextMenuService); export { ContextMenuService };