mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 18:06:28 +00:00
Show only relative script path in prompt
This commit is contained in:
parent
15475143e3
commit
a8cb72df0a
1 changed files with 21 additions and 9 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;
|
||||||
|
|
||||||
|
@ -44,7 +45,7 @@ static async Task RootCommand(
|
||||||
.PageSize(ScriptListSize)
|
.PageSize(ScriptListSize)
|
||||||
.MoreChoicesText("[grey]Move up and down to reveal more options[/]")
|
.MoreChoicesText("[grey]Move up and down to reveal more options[/]")
|
||||||
.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)[/]")
|
||||||
.UseConverter(PromptDecorator.GetStyledOption)
|
.UseConverter(x => PromptDecorator.GetStyledOption(x, directory))
|
||||||
.HighlightStyle(PromptDecorator.SelectionHighlight)
|
.HighlightStyle(PromptDecorator.SelectionHighlight)
|
||||||
.AddChoices(files);
|
.AddChoices(files);
|
||||||
|
|
||||||
|
@ -58,7 +59,7 @@ static async Task RootCommand(
|
||||||
.Title("Select a script to execute:")
|
.Title("Select a script to execute:")
|
||||||
.PageSize(ScriptListSize)
|
.PageSize(ScriptListSize)
|
||||||
.MoreChoicesText("[grey]Move up and down to reveal more options[/]")
|
.MoreChoicesText("[grey]Move up and down to reveal more options[/]")
|
||||||
.UseConverter(PromptDecorator.GetStyledOption)
|
.UseConverter(x => PromptDecorator.GetStyledOption(x, directory))
|
||||||
.HighlightStyle(PromptDecorator.SelectionHighlight)
|
.HighlightStyle(PromptDecorator.SelectionHighlight)
|
||||||
.AddChoices(files);
|
.AddChoices(files);
|
||||||
|
|
||||||
|
@ -70,13 +71,24 @@ static async Task RootCommand(
|
||||||
|
|
||||||
static class PromptDecorator
|
static class PromptDecorator
|
||||||
{
|
{
|
||||||
internal static string GetStyledOption(FileInfo info)
|
internal static string GetStyledOption(FileInfo info, string root)
|
||||||
{
|
{
|
||||||
var directory = $"[blue]{info.DirectoryName ?? "."}{Path.DirectorySeparatorChar}[/]";
|
var builder = new StringBuilder();
|
||||||
var filename = $"[orangered1]{Path.GetFileNameWithoutExtension(info.Name)}[/]";
|
|
||||||
var extension = $"[greenyellow]{Path.GetExtension(info.Name)}[/]";
|
|
||||||
|
|
||||||
return $"{directory}{filename}{extension}";
|
var directory = Path.GetRelativePath(root, info.DirectoryName ?? ".").TrimStart('.');
|
||||||
|
var filename = Path.GetFileNameWithoutExtension(info.Name);
|
||||||
|
var extension = Path.GetExtension(info.Name);
|
||||||
|
|
||||||
|
builder.Append($"[blue].{Path.DirectorySeparatorChar}[/]");
|
||||||
|
|
||||||
|
if(!string.IsNullOrWhiteSpace(directory))
|
||||||
|
{
|
||||||
|
builder.Append($"[blue]{directory}{Path.DirectorySeparatorChar}[/]");
|
||||||
|
}
|
||||||
|
|
||||||
|
builder.Append($"[orangered1]{filename}[/][greenyellow]{extension}[/]");
|
||||||
|
|
||||||
|
return builder.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static Style SelectionHighlight => new(decoration: Decoration.Bold | Decoration.Underline);
|
internal static Style SelectionHighlight => new(decoration: Decoration.Bold | Decoration.Underline);
|
||||||
|
@ -99,7 +111,7 @@ static class ScriptExecutor
|
||||||
{
|
{
|
||||||
await (Process.Start(process)?.WaitForExitAsync(cancellationToken) ?? Task.CompletedTask);
|
await (Process.Start(process)?.WaitForExitAsync(cancellationToken) ?? Task.CompletedTask);
|
||||||
}
|
}
|
||||||
catch (Exception ex) when (ex is Win32Exception || ex is InvalidOperationException || ex is PlatformNotSupportedException)
|
catch (Exception ex) when (ex is Win32Exception or InvalidOperationException or PlatformNotSupportedException)
|
||||||
{
|
{
|
||||||
AnsiConsole.Markup($"[red]{ex.Message}[/]");
|
AnsiConsole.Markup($"[red]{ex.Message}[/]");
|
||||||
}
|
}
|
||||||
|
@ -189,4 +201,4 @@ readonly struct ScriptFinder
|
||||||
|
|
||||||
internal FileInfo[] GetScriptFiles() =>
|
internal FileInfo[] GetScriptFiles() =>
|
||||||
Extensions.Select(GetScriptFiles).SelectMany(x => x).ToArray();
|
Extensions.Select(GetScriptFiles).SelectMany(x => x).ToArray();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue