2024-09-11 02:37:36 +00:00
|
|
|
/*---------------------------------------------------------------------------------------------
|
|
|
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
2024-09-24 04:46:08 +00:00
|
|
|
import { ILayoutService } from '../../../../platform/layout/browser/layoutService.js';
|
|
|
|
|
import { IInstantiationService } from '../../../../platform/instantiation/common/instantiation.js';
|
|
|
|
|
import { IThemeService } from '../../../../platform/theme/common/themeService.js';
|
|
|
|
|
import { IConfigurationService } from '../../../../platform/configuration/common/configuration.js';
|
|
|
|
|
import { IContextKeyService } from '../../../../platform/contextkey/common/contextkey.js';
|
|
|
|
|
import { IKeybindingService } from '../../../../platform/keybinding/common/keybinding.js';
|
|
|
|
|
import { QuickInputController } from '../../../../platform/quickinput/browser/quickInputController.js';
|
|
|
|
|
import { QuickInputService as BaseQuickInputService } from '../../../../platform/quickinput/browser/quickInputService.js';
|
|
|
|
|
import { InstantiationType, registerSingleton } from '../../../../platform/instantiation/common/extensions.js';
|
|
|
|
|
import { IQuickInputService } from '../../../../platform/quickinput/common/quickInput.js';
|
|
|
|
|
import { InQuickPickContextKey } from '../../../browser/quickaccess.js';
|
2024-09-11 02:37:36 +00:00
|
|
|
|
|
|
|
|
export class QuickInputService extends BaseQuickInputService {
|
|
|
|
|
|
|
|
|
|
private readonly inQuickInputContext = InQuickPickContextKey.bindTo(this.contextKeyService);
|
|
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
|
@IConfigurationService configurationService: IConfigurationService,
|
|
|
|
|
@IInstantiationService instantiationService: IInstantiationService,
|
|
|
|
|
@IKeybindingService private readonly keybindingService: IKeybindingService,
|
|
|
|
|
@IContextKeyService contextKeyService: IContextKeyService,
|
|
|
|
|
@IThemeService themeService: IThemeService,
|
|
|
|
|
@ILayoutService layoutService: ILayoutService,
|
|
|
|
|
) {
|
|
|
|
|
super(instantiationService, contextKeyService, themeService, layoutService, configurationService);
|
|
|
|
|
|
|
|
|
|
this.registerListeners();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private registerListeners(): void {
|
|
|
|
|
this._register(this.onShow(() => this.inQuickInputContext.set(true)));
|
|
|
|
|
this._register(this.onHide(() => this.inQuickInputContext.set(false)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override createController(): QuickInputController {
|
|
|
|
|
return super.createController(this.layoutService, {
|
|
|
|
|
ignoreFocusOut: () => !this.configurationService.getValue('workbench.quickOpen.closeOnFocusLost'),
|
|
|
|
|
backKeybindingLabel: () => this.keybindingService.lookupKeybinding('workbench.action.quickInputBack')?.getLabel() || undefined,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
registerSingleton(IQuickInputService, QuickInputService, InstantiationType.Delayed);
|