Quellcode durchsuchen

Adds placeholder string to repo pickers

main
Eric Amodio vor 1 Jahr
Ursprung
Commit
b032f658aa
2 geänderte Dateien mit 5 neuen und 3 gelöschten Zeilen
  1. +1
    -1
      src/commands/openAssociatedPullRequestOnRemote.ts
  2. +4
    -2
      src/quickpicks/repositoryPicker.ts

+ 1
- 1
src/commands/openAssociatedPullRequestOnRemote.ts Datei anzeigen

@ -40,7 +40,7 @@ export class OpenAssociatedPullRequestOnRemoteCommand extends ActiveEditorComman
}
try {
const repo = await getRepositoryOrShowPicker('Open Pull Request Associated', undefined, {
const repo = await getRepositoryOrShowPicker('Open Pull Request Associated', undefined, undefined, {
filter: async r => (await this.container.git.getBestRemoteWithRichProvider(r.uri))?.provider != null,
});
if (repo == null) return;

+ 4
- 2
src/quickpicks/repositoryPicker.ts Datei anzeigen

@ -13,6 +13,7 @@ export async function getBestRepositoryOrShowPicker(
uri: Uri | undefined,
editor: TextEditor | undefined,
title: string,
placeholder?: string,
options?: { filter?: (r: Repository) => Promise<boolean> },
): Promise<Repository | undefined> {
let repository = Container.instance.git.getBestRepository(uri, editor);
@ -24,7 +25,7 @@ export async function getBestRepositoryOrShowPicker(
}
if (repository != null) return repository;
const pick = await showRepositoryPicker(title, undefined, options);
const pick = await showRepositoryPicker(title, placeholder, options);
if (pick instanceof CommandQuickPickItem) {
await pick.execute();
return undefined;
@ -35,6 +36,7 @@ export async function getBestRepositoryOrShowPicker(
export async function getRepositoryOrShowPicker(
title: string,
placeholder?: string,
uri?: Uri,
options?: { filter?: (r: Repository) => Promise<boolean> },
): Promise<Repository | undefined> {
@ -52,7 +54,7 @@ export async function getRepositoryOrShowPicker(
}
if (repository != null) return repository;
const pick = await showRepositoryPicker(title, undefined, options);
const pick = await showRepositoryPicker(title, placeholder, options);
if (pick instanceof CommandQuickPickItem) {
void (await pick.execute());
return undefined;

Laden…
Abbrechen
Speichern