aboutsummaryrefslogtreecommitdiffstats
path: root/config/columns.go
diff options
context:
space:
mode:
Diffstat (limited to 'config/columns.go')
-rw-r--r--config/columns.go53
1 files changed, 0 insertions, 53 deletions
diff --git a/config/columns.go b/config/columns.go
index e1389bc0..c909d0ad 100644
--- a/config/columns.go
+++ b/config/columns.go
@@ -2,9 +2,7 @@ package config
import (
"bytes"
- "crypto/sha256"
"fmt"
- "reflect"
"regexp"
"strconv"
"strings"
@@ -118,54 +116,3 @@ func ParseColumnDefs(key *ini.Key, section *ini.Section) ([]*ColumnDef, error) {
}
return columns, nil
}
-
-func ColumnDefsToIni(defs []*ColumnDef, keyName string) string {
- var s strings.Builder
- var cols []string
- templates := make(map[string]string)
-
- for _, def := range defs {
- col := def.Name
- switch {
- case def.Flags.Has(ALIGN_LEFT):
- col += "<"
- case def.Flags.Has(ALIGN_CENTER):
- col += ":"
- case def.Flags.Has(ALIGN_RIGHT):
- col += ">"
- }
- switch {
- case def.Flags.Has(WIDTH_FIT):
- col += "="
- case def.Flags.Has(WIDTH_AUTO):
- col += "*"
- case def.Flags.Has(WIDTH_FRACTION):
- col += fmt.Sprintf("%.0f%%", def.Width*100)
- default:
- col += fmt.Sprintf("%.0f", def.Width)
- }
- cols = append(cols, col)
- tree := reflect.ValueOf(def.Template.Tree)
- text := tree.Elem().FieldByName("text").String()
- templates[fmt.Sprintf("column-%s", def.Name)] = text
- }
-
- s.WriteString(fmt.Sprintf("%s = %s\n", keyName, strings.Join(cols, ",")))
- for name, text := range templates {
- s.WriteString(fmt.Sprintf("%s = %s\n", name, text))
- }
-
- return s.String()
-}
-
-var templateFieldNameRe = regexp.MustCompile(`\{\{\.?(\w+)\}\}`)
-
-func columnNameFromTemplate(s string) string {
- match := templateFieldNameRe.FindStringSubmatch(s)
- if match == nil {
- h := sha256.New()
- h.Write([]byte(s))
- return fmt.Sprintf("%x", h.Sum(nil)[:3])
- }
- return strings.ReplaceAll(strings.ToLower(match[1]), "info", "")
-}