Skip to content

Commit

Permalink
Add 'replace in files' command
Browse files Browse the repository at this point in the history
  • Loading branch information
smart-bo committed Oct 7, 2021
1 parent 9e5b1ca commit 9442a6a
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ export namespace SearchInWorkspaceCommands {
id: 'search-in-workspace.open',
category: SEARCH_CATEGORY,
label: 'Find in Files'

};
export const REPLACE_IN_FILES: Command = {
id: 'search-in-workspace.replace',
category: SEARCH_CATEGORY,
label: 'Replace in Files'
};
export const FIND_IN_FOLDER: Command = {
id: 'search-in-workspace.in-folder',
Expand Down Expand Up @@ -123,6 +127,14 @@ export class SearchInWorkspaceFrontendContribution extends AbstractViewContribut
}
});

commands.registerCommand(SearchInWorkspaceCommands.REPLACE_IN_FILES, {
isEnabled: () => this.workspaceService.tryGetRoots().length > 0,
execute: async () => {
const widget = await this.openView({ activate: true });
widget.updateSearchAndReplaceTerm(this.getSearchTerm());
}
});

commands.registerCommand(SearchInWorkspaceCommands.FIND_IN_FOLDER, this.newMultiUriAwareCommandHandler({
execute: async uris => {
const resources: string[] = [];
Expand Down Expand Up @@ -212,7 +224,12 @@ export class SearchInWorkspaceFrontendContribution extends AbstractViewContribut
commandId: SearchInWorkspaceCommands.FIND_IN_FOLDER.id
});
menus.registerMenuAction(CommonMenus.EDIT_FIND, {
commandId: SearchInWorkspaceCommands.OPEN_SIW_WIDGET.id
commandId: SearchInWorkspaceCommands.OPEN_SIW_WIDGET.id,
order: '2'
});
menus.registerMenuAction(CommonMenus.EDIT_FIND, {
commandId: SearchInWorkspaceCommands.REPLACE_IN_FILES.id,
order: '3'
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,21 @@ export class SearchInWorkspaceWidget extends BaseWidget implements StatefulWidge
this.refresh();
}

/**
* Update the replace term and input fields.
* @param term the replace in files term.
*/
updateSearchAndReplaceTerm(term: string): void {
this.searchTerm = term;
const search = document.getElementById('search-input-field');
if (search) {
(search as HTMLInputElement).value = term;
}
this.showReplaceField = true;
this.resultTreeWidget.showReplaceButtons = this.showReplaceField;
this.update();
}

hasResultList(): boolean {
return this.hasResults;
}
Expand Down

0 comments on commit 9442a6a

Please sign in to comment.