-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathCustomHelpProvider.cs
64 lines (50 loc) · 1.66 KB
/
CustomHelpProvider.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Author: Deci | Project: SmartImage.Rdx | Name: CustomHelpProvider.cs
// Date: 2024/04/10 @ 18:04:50
using Spectre.Console;
using Spectre.Console.Cli;
using Spectre.Console.Cli.Help;
using Spectre.Console.Rendering;
namespace SmartImage.Rdx.Shell;
internal class CustomHelpProvider : HelpProvider
{
public CustomHelpProvider(ICommandAppSettings settings)
: base(settings) { }
public override IEnumerable<IRenderable> GetUsage(ICommandModel model, ICommandInfo? command)
{
var usage = base.GetUsage(model, command);
return usage;
}
/*public override IEnumerable<IRenderable> GetExamples(ICommandModel model, ICommandInfo? command)
{
return
[
new Text(
"smartimage \"C:\\Users\\Deci\\Pictures\\Epic anime\\Kallen_FINAL_1-3.png\" --search-engines All --output-format \"Delimited\" --output-file \"output.csv\" --read-cookies")
];
return base.GetExamples(model, command);
}*/
public override IEnumerable<IRenderable> GetDescription(ICommandModel model, ICommandInfo? command)
{
return new[]
{
Text.NewLine,
new Text("DESCRIPTION:", new Style(Color.Yellow, decoration: Decoration.Bold)), Text.NewLine,
new Text($" Homepage: {R1.Url_Repo}", new Style(link: R1.Url_Repo)), Text.NewLine,
new Text($" Wiki: {R1.Url_Wiki}", new Style(link: R1.Url_Wiki)), Text.NewLine,
Text.NewLine,
Text.NewLine,
};
}
public override IEnumerable<IRenderable> GetFooter(ICommandModel model, ICommandInfo? command)
{
return base.GetFooter(model, command);
}
/*public override IEnumerable<IRenderable> GetHeader(ICommandModel model, ICommandInfo? command)
{
switch (command) {
case null:
break;
}
return [Text.Empty];
}*/
}