97 lines
3.0 KiB
Go
97 lines
3.0 KiB
Go
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))
|
|
}
|