-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtemplate.go
63 lines (56 loc) · 1.44 KB
/
template.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
56
57
58
59
60
61
62
63
package gold
import (
"bytes"
"strings"
)
// A template represents a Gold template.
type Template struct {
Path string
Generator *Generator
Elements []*Element
Super *Template
Sub *Template
Blocks map[string]*Block
}
// AppendElement appends the element to the template's elements.
func (t *Template) AppendElement(e *Element) {
t.Elements = append(t.Elements, e)
}
// Html generates an html and returns it.
func (t *Template) Html(stringTemplates map[string]string, embedMap EmbedMap) (string, error) {
if t.Super != nil {
return t.Super.Html(stringTemplates, embedMap)
} else {
var bf bytes.Buffer
for _, e := range t.Elements {
err := e.Html(&bf, stringTemplates)
if err != nil {
return "", err
}
}
html := bf.String()
for key, value := range embedMap {
html = strings.Replace(html, "%{"+key+"}", value, -1)
}
return html, nil
}
}
// Dir returns the template file's directory.
func (t *Template) Dir() string {
tokens := strings.Split(t.Path, "/")
l := len(tokens)
switch {
case l < 2:
return "./"
default:
return strings.Join(tokens[:l-1], "/") + "/"
}
}
// AddBlock appends the block to the template.
func (t *Template) AddBlock(name string, block *Block) {
t.Blocks[name] = block
}
// NewTemplate generates a new template and returns it.
func NewTemplate(path string, generator *Generator) *Template {
return &Template{Path: path, Generator: generator, Blocks: make(map[string]*Block)}
}