mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 18:06:28 +00:00
Allow dispaly of the filename (& extension) only
This commit is contained in:
parent
2e9d49768d
commit
ab99b102a0
1 changed files with 24 additions and 11 deletions
|
@ -1,5 +1,6 @@
|
||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
using System.Text;
|
||||||
using Cocona;
|
using Cocona;
|
||||||
using Spectre.Console;
|
using Spectre.Console;
|
||||||
|
|
||||||
|
@ -13,6 +14,7 @@ static async Task RootCommand(
|
||||||
[Option("depth", new[] { 'd' }, Description = "Search depth")] int depth = 1,
|
[Option("depth", new[] { 'd' }, Description = "Search depth")] int depth = 1,
|
||||||
[Option("elevated", new[] { 'e' }, Description = "Run with elevated privileges")] bool elevated = false,
|
[Option("elevated", new[] { 'e' }, Description = "Run with elevated privileges")] bool elevated = false,
|
||||||
[Option("group", new[] { 'g' }, Description = "Group scripts by folder")] bool group = false,
|
[Option("group", new[] { 'g' }, Description = "Group scripts by folder")] bool group = false,
|
||||||
|
[Option("brief", new[] { 'b' }, Description = "Show brief information")] bool brief = false,
|
||||||
[Argument(Name = "Directory", Description = "Starting directory")] string directory = ".")
|
[Argument(Name = "Directory", Description = "Starting directory")] string directory = ".")
|
||||||
{
|
{
|
||||||
if (!Directory.Exists(directory))
|
if (!Directory.Exists(directory))
|
||||||
|
@ -36,7 +38,7 @@ static async Task RootCommand(
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var dirPrompt = PromptConstructor.GetSelectionPrompt(dict.Keys.ToArray());
|
var dirPrompt = PromptConstructor.GetDirectoryPrompt(dict.Keys.ToArray());
|
||||||
var directoryInfo = AnsiConsole.Prompt(dirPrompt);
|
var directoryInfo = AnsiConsole.Prompt(dirPrompt);
|
||||||
files = dict[directoryInfo];
|
files = dict[directoryInfo];
|
||||||
}
|
}
|
||||||
|
@ -52,12 +54,12 @@ static async Task RootCommand(
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
var prompt = PromptConstructor.GetMultiSelectionPrompt(files);
|
var prompt = PromptConstructor.GetScriptPrompt(files, brief);
|
||||||
var scripts = AnsiConsole.Prompt(prompt);
|
var scripts = AnsiConsole.Prompt(prompt);
|
||||||
|
|
||||||
await ScriptExecutor.ExecAsync(scripts, elevated);
|
await ScriptExecutor.ExecAsync(scripts, elevated);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static class PromptConstructor
|
static class PromptConstructor
|
||||||
|
@ -66,14 +68,25 @@ static class PromptConstructor
|
||||||
|
|
||||||
private static Style SelectionHighlight => new(decoration: Decoration.Bold | Decoration.Underline);
|
private static Style SelectionHighlight => new(decoration: Decoration.Bold | Decoration.Underline);
|
||||||
|
|
||||||
private static string FileStyle(FileInfo info) =>
|
private static string FileStyle(FileInfo info, bool brief)
|
||||||
$"[blue]{info.DirectoryName}{Path.DirectorySeparatorChar}[/]"
|
{
|
||||||
+ $"[orangered1]{Path.GetFileNameWithoutExtension(info.Name)}[/]"
|
var builder = new StringBuilder();
|
||||||
+ $"[greenyellow]{info.Extension}[/]";
|
|
||||||
|
if (!brief)
|
||||||
|
{
|
||||||
|
builder.Append($"[blue]{info.DirectoryName}{Path.DirectorySeparatorChar}[/]");
|
||||||
|
}
|
||||||
|
|
||||||
|
builder
|
||||||
|
.Append($"[orangered1]{Path.GetFileNameWithoutExtension(info.Name)}[/]")
|
||||||
|
.Append($"[greenyellow]{info.Extension}[/]");
|
||||||
|
|
||||||
|
return builder.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
private static string DirectoryStyle(DirectoryInfo info) => $"[blue]{info}[/]";
|
private static string DirectoryStyle(DirectoryInfo info) => $"[blue]{info}[/]";
|
||||||
|
|
||||||
public static MultiSelectionPrompt<FileInfo> GetMultiSelectionPrompt(FileInfo[] files)
|
public static MultiSelectionPrompt<FileInfo> GetScriptPrompt(FileInfo[] files, bool brief)
|
||||||
{
|
{
|
||||||
var prompt = new MultiSelectionPrompt<FileInfo>()
|
var prompt = new MultiSelectionPrompt<FileInfo>()
|
||||||
.Title("Select a script the scripts to execute:")
|
.Title("Select a script the scripts to execute:")
|
||||||
|
@ -81,14 +94,14 @@ static class PromptConstructor
|
||||||
.PageSize(ScriptListSize)
|
.PageSize(ScriptListSize)
|
||||||
.InstructionsText("[grey](Press [blue]<space>[/] to toggle a script, [green]<enter>[/] to accept)[/]")
|
.InstructionsText("[grey](Press [blue]<space>[/] to toggle a script, [green]<enter>[/] to accept)[/]")
|
||||||
.MoreChoicesText("[grey]Move up and down to reveal more options[/]")
|
.MoreChoicesText("[grey]Move up and down to reveal more options[/]")
|
||||||
.UseConverter(FileStyle)
|
.UseConverter(x => FileStyle(x, brief))
|
||||||
.HighlightStyle(SelectionHighlight)
|
.HighlightStyle(SelectionHighlight)
|
||||||
.AddChoices(files);
|
.AddChoices(files);
|
||||||
|
|
||||||
return prompt;
|
return prompt;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static SelectionPrompt<DirectoryInfo> GetSelectionPrompt(DirectoryInfo[] directories)
|
public static SelectionPrompt<DirectoryInfo> GetDirectoryPrompt(DirectoryInfo[] directories)
|
||||||
{
|
{
|
||||||
var prompt = new SelectionPrompt<DirectoryInfo>()
|
var prompt = new SelectionPrompt<DirectoryInfo>()
|
||||||
.Title("Select a directory:")
|
.Title("Select a directory:")
|
||||||
|
|
Loading…
Add table
Reference in a new issue