mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-12 19:18:32 -05:00
40 lines
1.5 KiB
TypeScript
40 lines
1.5 KiB
TypeScript
'use strict';
|
|
import { TextEditor, Uri, window } from 'vscode';
|
|
import { ActiveEditorCachedCommand, Commands, getCommandUri } from './common';
|
|
import { GitService } from '../gitService';
|
|
import { Logger } from '../logger';
|
|
import { CommandQuickPickItem, RepoStatusQuickPick } from '../quickPicks';
|
|
|
|
export interface ShowQuickRepoStatusCommandArgs {
|
|
goBackCommand?: CommandQuickPickItem;
|
|
}
|
|
|
|
export class ShowQuickRepoStatusCommand extends ActiveEditorCachedCommand {
|
|
|
|
constructor(private git: GitService) {
|
|
super(Commands.ShowQuickRepoStatus);
|
|
}
|
|
|
|
async execute(editor: TextEditor, uri?: Uri, args: ShowQuickRepoStatusCommandArgs = {}) {
|
|
uri = getCommandUri(uri, editor);
|
|
|
|
try {
|
|
const repoPath = await this.git.getRepoPathFromUri(uri);
|
|
if (!repoPath) return window.showWarningMessage(`Unable to show repository status`);
|
|
|
|
const status = await this.git.getStatusForRepo(repoPath);
|
|
if (status === undefined) return window.showWarningMessage(`Unable to show repository status`);
|
|
|
|
const pick = await RepoStatusQuickPick.show(status, args.goBackCommand);
|
|
if (pick === undefined) return undefined;
|
|
|
|
if (pick instanceof CommandQuickPickItem) return pick.execute();
|
|
|
|
return undefined;
|
|
}
|
|
catch (ex) {
|
|
Logger.error(ex, 'ShowQuickRepoStatusCommand');
|
|
return window.showErrorMessage(`Unable to show repository status. See output channel for more details`);
|
|
}
|
|
}
|
|
} |