-
Notifications
You must be signed in to change notification settings - Fork 58
/
help.go
96 lines (78 loc) · 3 KB
/
help.go
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package main
import (
"fmt"
"regexp"
"strings"
"github.com/alecthomas/kong"
"github.com/charmbracelet/lipgloss"
)
const space = 18
var highlighter = regexp.MustCompile("{{(.+?)}}")
func helpPrinter(_ kong.HelpOptions, ctx *kong.Context) error {
codeBlockStyle := lipgloss.NewStyle().Background(lipgloss.AdaptiveColor{Light: "254", Dark: "235"}).MarginLeft(2).Padding(1, 2)
programStyle := lipgloss.NewStyle().Background(codeBlockStyle.GetBackground()).Foreground(lipgloss.Color("#7E65FF")).PaddingLeft(1)
stringStyle := lipgloss.NewStyle().Background(codeBlockStyle.GetBackground()).Foreground(lipgloss.AdaptiveColor{Light: "#02BA84", Dark: "#02BF87"}).PaddingLeft(1)
argumentStyle := lipgloss.NewStyle().Background(codeBlockStyle.GetBackground()).Foreground(lipgloss.Color("248")).PaddingLeft(1)
flagStyle := lipgloss.NewStyle().Background(codeBlockStyle.GetBackground()).Foreground(lipgloss.Color("244")).PaddingLeft(1)
titleStyle := lipgloss.NewStyle().Bold(true).Transform(strings.ToUpper).Margin(1, 0, 0, 2).Foreground(lipgloss.Color("#6C50FF"))
fmt.Println()
fmt.Println(" Generate images of code and terminal output. 📸")
fmt.Println(titleStyle.Render(strings.ToUpper("Usage")))
fmt.Println()
fmt.Println(
codeBlockStyle.Render(
lipgloss.JoinVertical(
lipgloss.Top,
lipgloss.JoinHorizontal(lipgloss.Left, programStyle.Render("freeze"), argumentStyle.Render("main.go"), flagStyle.Render("[-o code.svg] [--flags]")),
lipgloss.JoinHorizontal(lipgloss.Left, programStyle.Render("freeze"), argumentStyle.Render("--execute"), stringStyle.Render("\"ls -la\""), flagStyle.Render("[--flags] ")),
),
),
)
flags := ctx.Flags()
lastGroup := ""
fmt.Println()
for _, f := range flags {
if f.Name == "interactive" {
printFlag(f)
}
}
fmt.Println(titleStyle.Render("Settings"))
for _, f := range flags {
if f.Group != nil && f.Group.Title == "Settings" {
if f.Hidden || f.Name == "help" {
continue
}
printFlag(f)
}
}
fmt.Print(titleStyle.Render("Customization"))
for _, f := range flags {
if f.Hidden || f.Name == "help" || f.Group.Title == "Settings" {
continue
}
if f.Group != nil && lastGroup != f.Group.Title {
lastGroup = f.Group.Title
fmt.Println()
}
printFlag(f)
}
fmt.Println()
return nil
}
const helpForeground = "243"
func printFlag(f *kong.Flag) {
dashStyle := lipgloss.NewStyle().Foreground(lipgloss.Color("240")).MarginLeft(1)
helpStyle := lipgloss.NewStyle().Foreground(lipgloss.Color(helpForeground))
keywordStyle := lipgloss.NewStyle().Foreground(lipgloss.Color("1"))
if f.Short > 0 {
fmt.Print(" ", dashStyle.Render("-"), string(f.Short))
fmt.Print(dashStyle.Render("--"), f.Name)
fmt.Print(strings.Repeat(" ", space-len(f.Name)))
} else {
fmt.Print(" ", dashStyle.Render(" "), " ")
fmt.Print(dashStyle.Render("--"), f.Name)
fmt.Print(strings.Repeat(" ", space-len(f.Name)))
}
help := highlighter.ReplaceAllString(f.Help, keywordStyle.Render("$1")+"\x1b[38;5;"+helpForeground+"m")
fmt.Println(helpStyle.Render(help))
}