init: pristine aerc 0.20.0 source
This commit is contained in:
@@ -0,0 +1,99 @@
|
||||
package state
|
||||
|
||||
import (
|
||||
"strings"
|
||||
|
||||
"git.sr.ht/~rjarry/aerc/config"
|
||||
)
|
||||
|
||||
type texterInterface interface {
|
||||
Connected() string
|
||||
Disconnected() string
|
||||
Passthrough() string
|
||||
Sorting() string
|
||||
Threading() string
|
||||
Visual() string
|
||||
FormatFilter(string) string
|
||||
FormatSearch(string) string
|
||||
}
|
||||
|
||||
type text struct{}
|
||||
|
||||
var txt text
|
||||
|
||||
func (t text) Connected() string {
|
||||
return "Connected"
|
||||
}
|
||||
|
||||
func (t text) Disconnected() string {
|
||||
return "Disconnected"
|
||||
}
|
||||
|
||||
func (t text) Passthrough() string {
|
||||
return "passthrough"
|
||||
}
|
||||
|
||||
func (t text) Sorting() string {
|
||||
return "sorting"
|
||||
}
|
||||
|
||||
func (t text) Threading() string {
|
||||
return "threading"
|
||||
}
|
||||
|
||||
func (t text) Visual() string {
|
||||
return "visual"
|
||||
}
|
||||
|
||||
func (t text) FormatFilter(s string) string {
|
||||
return s
|
||||
}
|
||||
|
||||
func (t text) FormatSearch(s string) string {
|
||||
return s
|
||||
}
|
||||
|
||||
type icon struct{}
|
||||
|
||||
var icn icon
|
||||
|
||||
func (i icon) Connected() string {
|
||||
return "✓"
|
||||
}
|
||||
|
||||
func (i icon) Disconnected() string {
|
||||
return "✘"
|
||||
}
|
||||
|
||||
func (i icon) Passthrough() string {
|
||||
return "➔"
|
||||
}
|
||||
|
||||
func (i icon) Sorting() string {
|
||||
return "⚙"
|
||||
}
|
||||
|
||||
func (i icon) Threading() string {
|
||||
return "🧵"
|
||||
}
|
||||
|
||||
func (i icon) Visual() string {
|
||||
return "🕶"
|
||||
}
|
||||
|
||||
func (i icon) FormatFilter(s string) string {
|
||||
return strings.ReplaceAll(s, "filter", "🔦")
|
||||
}
|
||||
|
||||
func (i icon) FormatSearch(s string) string {
|
||||
return strings.ReplaceAll(s, "search", "🔎")
|
||||
}
|
||||
|
||||
func texter() texterInterface {
|
||||
switch strings.ToLower(config.Statusline.DisplayMode) {
|
||||
case "icon":
|
||||
return &icn
|
||||
default:
|
||||
return &txt
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user