summaryrefslogtreecommitdiffstats
path: root/cmd/web/templates.go
blob: 8cfa424d352c378bde1b3f9fca745772d68c5bd2 (plain) (blame)
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
package main

import (
	"html/template"
	"path/filepath"

	"github.com/yulqen/ded-go-core/internal/models"
)

// TODO: At the moment we are using a struct will have fields for all the data
// we will need. Not sure whether this is good or bad at the moment.
type templateData struct {
	Operations    []models.Operation
	Organisations []models.Organisation
}

func newTemplateCache() (map[string]*template.Template, error) {
	cache := map[string]*template.Template{}

	// get a slice of filepaths match the pattern for our page templates
	// e.g. [ui/html/pages/home.tmpl.html ui/html/pages/view.tmpl.html]
	pages, err := filepath.Glob("./ui/html/pages/*.html")
	if err != nil {
		return nil, err
	}

	// loop through the page filepaths one by one
	for _, page := range pages {
		// extract "home.tmp.html" from the full filepath.
		name := filepath.Base(page)

		files := []string{
			"./ui/html/base.tmpl.html",
			"./ui/html/partials/nav.tmpl.html",
			page,
		}

		ts, err := template.ParseFiles(files...)
		if err != nil {
			return nil, err
		}

		cache[name] = ts
	}

	return cache, nil
}