2021-01-09 17:54:50 +00:00
|
|
|
package tty
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/fatih/color"
|
2021-01-09 18:48:29 +00:00
|
|
|
"github.com/mickael-menu/zk/core/style"
|
2021-01-09 17:54:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Styler is a text styler using ANSI escape codes to be used with a TTY.
|
|
|
|
type Styler struct{}
|
|
|
|
|
|
|
|
func NewStyler() *Styler {
|
|
|
|
return &Styler{}
|
|
|
|
}
|
|
|
|
|
2021-01-09 18:48:29 +00:00
|
|
|
func (s *Styler) Style(text string, rules ...style.Rule) (string, error) {
|
|
|
|
attrs, err := s.attributes(expandThemeAliases(rules))
|
2021-01-09 17:54:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if len(attrs) == 0 {
|
|
|
|
return text, nil
|
|
|
|
}
|
|
|
|
return color.New(attrs...).Sprint(text), nil
|
|
|
|
}
|
|
|
|
|
2021-01-09 18:48:29 +00:00
|
|
|
// FIXME: User config
|
|
|
|
var themeAliases = map[style.Rule][]style.Rule{
|
|
|
|
"title": {"bold", "yellow"},
|
2021-01-10 11:29:57 +00:00
|
|
|
"path": {"underline", "cyan"},
|
2021-01-09 18:48:29 +00:00
|
|
|
"match": {"red"},
|
|
|
|
}
|
|
|
|
|
|
|
|
func expandThemeAliases(rules []style.Rule) []style.Rule {
|
|
|
|
expanded := make([]style.Rule, 0)
|
|
|
|
for _, rule := range rules {
|
|
|
|
aliases, ok := themeAliases[rule]
|
|
|
|
if ok {
|
|
|
|
aliases = expandThemeAliases(aliases)
|
|
|
|
for _, alias := range aliases {
|
|
|
|
expanded = append(expanded, alias)
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
expanded = append(expanded, rule)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return expanded
|
|
|
|
}
|
|
|
|
|
|
|
|
var attrsMapping = map[style.Rule]color.Attribute{
|
2021-01-09 17:54:50 +00:00
|
|
|
"reset": color.Reset,
|
|
|
|
"bold": color.Bold,
|
|
|
|
"faint": color.Faint,
|
|
|
|
"italic": color.Italic,
|
|
|
|
"underline": color.Underline,
|
|
|
|
"blink-slow": color.BlinkSlow,
|
|
|
|
"blink-fast": color.BlinkRapid,
|
|
|
|
"hidden": color.Concealed,
|
|
|
|
"strikethrough": color.CrossedOut,
|
|
|
|
|
|
|
|
"black": color.FgBlack,
|
|
|
|
"red": color.FgRed,
|
|
|
|
"green": color.FgGreen,
|
|
|
|
"yellow": color.FgYellow,
|
|
|
|
"blue": color.FgBlue,
|
|
|
|
"magenta": color.FgMagenta,
|
|
|
|
"cyan": color.FgCyan,
|
|
|
|
"white": color.FgWhite,
|
|
|
|
|
|
|
|
"black-bg": color.BgBlack,
|
|
|
|
"red-bg": color.BgRed,
|
|
|
|
"green-bg": color.BgGreen,
|
|
|
|
"yellow-bg": color.BgYellow,
|
|
|
|
"blue-bg": color.BgBlue,
|
|
|
|
"magenta-bg": color.BgMagenta,
|
|
|
|
"cyan-bg": color.BgCyan,
|
|
|
|
"white-bg": color.BgWhite,
|
|
|
|
|
|
|
|
"bright-black": color.FgHiBlack,
|
|
|
|
"bright-red": color.FgHiRed,
|
|
|
|
"bright-green": color.FgHiGreen,
|
|
|
|
"bright-yellow": color.FgHiYellow,
|
|
|
|
"bright-blue": color.FgHiBlue,
|
|
|
|
"bright-magenta": color.FgHiMagenta,
|
|
|
|
"bright-cyan": color.FgHiCyan,
|
|
|
|
"bright-white": color.FgHiWhite,
|
|
|
|
|
|
|
|
"bright-black-bg": color.BgHiBlack,
|
|
|
|
"bright-red-bg": color.BgHiRed,
|
|
|
|
"bright-green-bg": color.BgHiGreen,
|
|
|
|
"bright-yellow-bg": color.BgHiYellow,
|
|
|
|
"bright-blue-bg": color.BgHiBlue,
|
|
|
|
"bright-magenta-bg": color.BgHiMagenta,
|
|
|
|
"bright-cyan-bg": color.BgHiCyan,
|
|
|
|
"bright-white-bg": color.BgHiWhite,
|
|
|
|
}
|
|
|
|
|
2021-01-09 18:48:29 +00:00
|
|
|
func (s *Styler) attributes(rules []style.Rule) ([]color.Attribute, error) {
|
2021-01-09 17:54:50 +00:00
|
|
|
attrs := make([]color.Attribute, 0)
|
|
|
|
|
|
|
|
for _, rule := range rules {
|
|
|
|
attr, ok := attrsMapping[rule]
|
|
|
|
if !ok {
|
|
|
|
return attrs, fmt.Errorf("unknown styling rule: %v", rule)
|
|
|
|
} else {
|
|
|
|
attrs = append(attrs, attr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return attrs, nil
|
|
|
|
}
|