-
Notifications
You must be signed in to change notification settings - Fork 1
/
inserter.go
55 lines (44 loc) · 979 Bytes
/
inserter.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package colorgful
import (
"fmt"
"strings"
"github.com/reconquest/loreley"
)
type inserter struct {
*loreley.Style
}
func (inserter *inserter) insertLorg(
value string,
) string {
return fmt.Sprintf(`${%s}`, value)
}
func (inserter *inserter) insertOnLevel(
level string,
value string,
) string {
style, err := loreley.Compile(value, nil)
if err != nil {
return fmt.Sprintf("#{COMPILE ERROR: %s}", err)
}
previous, _ := loreley.CompileAndExecuteToString(
inserter.GetState().String(),
nil,
nil,
)
style.SetState(inserter.GetState())
sequence, err := style.ExecuteToString(nil)
if err != nil {
return fmt.Sprintf("#{EXECUTE ERROR: %s}", err)
}
return inserter.insertLorg(
`onlevel` + `:` +
strings.ToLower(level) + `:` + sequence + `:` +
previous,
)
}
func (inserter *inserter) insertRestore() string {
return inserter.insertLorg(`restore`)
}
func (inserter *inserter) insertStore() string {
return inserter.insertLorg(`store`)
}