mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-14 01:25:43 -05:00
97 lines
3.1 KiB
TypeScript
97 lines
3.1 KiB
TypeScript
'use strict';
|
|
import { CancellationTokenSource, commands, QuickPickItem, QuickPickOptions, TextEditor, Uri, window, workspace } from 'vscode';
|
|
import { Commands, Keyboard, KeyboardScope, KeyMapping, openEditor } from '../commands';
|
|
import { IAdvancedConfig } from '../configuration';
|
|
// import { Logger } from '../logger';
|
|
|
|
export function getQuickPickIgnoreFocusOut() {
|
|
return !workspace.getConfiguration('gitlens').get<IAdvancedConfig>('advanced').quickPick.closeOnFocusOut;
|
|
}
|
|
|
|
export function showQuickPickProgress(message: string, mapping?: KeyMapping): CancellationTokenSource {
|
|
const cancellation = new CancellationTokenSource();
|
|
_showQuickPickProgress(message, cancellation, mapping);
|
|
return cancellation;
|
|
}
|
|
|
|
async function _showQuickPickProgress(message: string, cancellation: CancellationTokenSource, mapping?: KeyMapping) {
|
|
// Logger.log(`showQuickPickProgress`, `show`, message);
|
|
|
|
const scope: KeyboardScope = mapping && await Keyboard.instance.beginScope(mapping);
|
|
|
|
try {
|
|
await window.showQuickPick(_getInfiniteCancellablePromise(cancellation), {
|
|
placeHolder: message,
|
|
ignoreFocusOut: getQuickPickIgnoreFocusOut()
|
|
} as QuickPickOptions, cancellation.token);
|
|
}
|
|
catch (ex) {
|
|
// Not sure why this throws
|
|
}
|
|
finally {
|
|
// Logger.log(`showQuickPickProgress`, `cancel`, message);
|
|
|
|
cancellation.cancel();
|
|
scope && scope.dispose();
|
|
}
|
|
}
|
|
|
|
function _getInfiniteCancellablePromise(cancellation: CancellationTokenSource) {
|
|
return new Promise((resolve, reject) => {
|
|
const disposable = cancellation.token.onCancellationRequested(() => {
|
|
disposable.dispose();
|
|
resolve([]);
|
|
});
|
|
});
|
|
}
|
|
|
|
export class CommandQuickPickItem implements QuickPickItem {
|
|
|
|
label: string;
|
|
description: string;
|
|
detail: string;
|
|
|
|
constructor(item: QuickPickItem, protected command: Commands, protected args?: any[]) {
|
|
Object.assign(this, item);
|
|
}
|
|
|
|
execute(): Thenable<{}> {
|
|
return commands.executeCommand(this.command, ...(this.args || []));
|
|
}
|
|
}
|
|
|
|
export class KeyCommandQuickPickItem extends CommandQuickPickItem {
|
|
|
|
constructor(protected command: Commands, protected args?: any[]) {
|
|
super({ label: undefined, description: undefined }, command, args);
|
|
}
|
|
}
|
|
|
|
export class OpenFileCommandQuickPickItem extends CommandQuickPickItem {
|
|
|
|
constructor(public uri: Uri, item: QuickPickItem) {
|
|
super(item, undefined, undefined);
|
|
}
|
|
|
|
async execute(pinned: boolean = false): Promise<{}> {
|
|
return this.open(pinned);
|
|
}
|
|
|
|
async open(pinned: boolean = false): Promise<TextEditor | undefined> {
|
|
return openEditor(this.uri, pinned);
|
|
}
|
|
}
|
|
|
|
export class OpenFilesCommandQuickPickItem extends CommandQuickPickItem {
|
|
|
|
constructor(public uris: Uri[], item: QuickPickItem) {
|
|
super(item, undefined, undefined);
|
|
}
|
|
|
|
async execute(): Promise<{}> {
|
|
for (const uri of this.uris) {
|
|
await openEditor(uri, true);
|
|
}
|
|
return undefined;
|
|
}
|
|
} |