mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 18:06:28 +00:00
Always use multiple script selection
This commit is contained in:
parent
1df685119d
commit
0293fe85cb
1 changed files with 7 additions and 30 deletions
|
@ -12,7 +12,6 @@ static async Task RootCommand(
|
||||||
[Option("extensions", new[] { 'e' }, Description = "Comma separated list of script extensions to search")] string? extensions,
|
[Option("extensions", new[] { 'e' }, Description = "Comma separated list of script extensions to search")] string? extensions,
|
||||||
[Option("depth", new[] { 'd' }, Description = "Folder depth of the search")] int depth = 1,
|
[Option("depth", new[] { 'd' }, Description = "Folder depth of the search")] int depth = 1,
|
||||||
[Option("elevated", new[] { 'E' }, Description = "Run the script with elevated privileges")] bool elevated = false,
|
[Option("elevated", new[] { 'E' }, Description = "Run the script with elevated privileges")] bool elevated = false,
|
||||||
[Option("multiple", new[] { 'm' }, Description = "Execute multiple scripts in parallel")] bool multiple = false,
|
|
||||||
[Option("grouped", new[] { 'g' }, Description = "Group selection bay containing folder")] bool grouped = false,
|
[Option("grouped", new[] { 'g' }, Description = "Group selection bay containing folder")] bool grouped = false,
|
||||||
[Argument(Name = "Directory", Description = "Directory from which search the scripts")] string directory = ".")
|
[Argument(Name = "Directory", Description = "Directory from which search the scripts")] string directory = ".")
|
||||||
{
|
{
|
||||||
|
@ -37,8 +36,8 @@ static async Task RootCommand(
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var prompt = PromptConstructor.GetSelectionPrompt(dict.Keys.ToArray());
|
var dirPrompt = PromptConstructor.GetSelectionPrompt(dict.Keys.ToArray());
|
||||||
var directoryInfo = AnsiConsole.Prompt(prompt);
|
var directoryInfo = AnsiConsole.Prompt(dirPrompt);
|
||||||
files = dict[directoryInfo];
|
files = dict[directoryInfo];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -53,21 +52,12 @@ static async Task RootCommand(
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (multiple)
|
|
||||||
{
|
var prompt = PromptConstructor.GetMultiSelectionPrompt(files);
|
||||||
var prompt = PromptConstructor.GetMultiSelectionPrompt(files);
|
var scripts = AnsiConsole.Prompt(prompt);
|
||||||
var scripts = AnsiConsole.Prompt(prompt);
|
|
||||||
|
|
||||||
await ScriptExecutor.ExecAsync(scripts, elevated);
|
await ScriptExecutor.ExecAsync(scripts, elevated);
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
var prompt = PromptConstructor.GetSelectionPrompt(files);
|
|
||||||
|
|
||||||
var script = AnsiConsole.Prompt(prompt);
|
|
||||||
|
|
||||||
await ScriptExecutor.ExecAsync(script, elevated);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static class PromptConstructor
|
static class PromptConstructor
|
||||||
|
@ -83,19 +73,6 @@ static class PromptConstructor
|
||||||
|
|
||||||
private static string DirectoryStyle(DirectoryInfo info) => $"[blue]{info}[/]";
|
private static string DirectoryStyle(DirectoryInfo info) => $"[blue]{info}[/]";
|
||||||
|
|
||||||
public static SelectionPrompt<FileInfo> GetSelectionPrompt(FileInfo[] files)
|
|
||||||
{
|
|
||||||
var prompt = new SelectionPrompt<FileInfo>()
|
|
||||||
.Title("Select a script to execute:")
|
|
||||||
.PageSize(ScriptListSize)
|
|
||||||
.MoreChoicesText("[grey]Move up and down to reveal more options[/]")
|
|
||||||
.UseConverter(FileStyle)
|
|
||||||
.HighlightStyle(SelectionHighlight)
|
|
||||||
.AddChoices(files);
|
|
||||||
|
|
||||||
return prompt;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static MultiSelectionPrompt<FileInfo> GetMultiSelectionPrompt(FileInfo[] files)
|
public static MultiSelectionPrompt<FileInfo> GetMultiSelectionPrompt(FileInfo[] files)
|
||||||
{
|
{
|
||||||
var prompt = new MultiSelectionPrompt<FileInfo>()
|
var prompt = new MultiSelectionPrompt<FileInfo>()
|
||||||
|
|
Loading…
Add table
Reference in a new issue