|
@@ -12,7 +12,6 @@ import (
|
|
|
"time"
|
|
|
"unicode"
|
|
|
|
|
|
- _ "github.com/mattn/go-sqlite3"
|
|
|
"github.com/seehuhn/mt19937"
|
|
|
)
|
|
|
|
|
@@ -398,15 +397,22 @@ door::renderFunction statusValue(door::ANSIColor status,
|
|
|
|
|
|
func RenderStatusValue(status string, value string) func(string) string {
|
|
|
renderF := func(text string) string {
|
|
|
- var result string
|
|
|
+
|
|
|
pos := strings.Index(text, ":")
|
|
|
if pos != -1 {
|
|
|
- result = status + text[:pos] + value + text[pos:]
|
|
|
+ return status + text[:pos] + value + text[pos:]
|
|
|
} else {
|
|
|
- // TO FIX: See above. We do digits in value color...
|
|
|
- result = status + text
|
|
|
+ var r door.Render = door.Render{Line: text}
|
|
|
+
|
|
|
+ for _, letter := range text {
|
|
|
+ if unicode.IsDigit(letter) {
|
|
|
+ r.Append(value, 1)
|
|
|
+ } else {
|
|
|
+ r.Append(status, 1)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return r.Result
|
|
|
}
|
|
|
- return result
|
|
|
}
|
|
|
return renderF
|
|
|
}
|