summaryrefslogtreecommitdiff
path: root/pages/pages.go
blob: eb7a3f69415117504bd662c1b6867903e4a57c4d (plain)
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
package pages

import (
	"net/http"
)

func Init() Page {
	return simple(index, func(r *http.Request, uid int32) string {
		u, _ := Q.GetUserById(r.Context(), uid)
		return u.Name
	})
}

func Recur() Page {
	return simpleByQuery(recur, Q.GetRecurExpenses)
}

func Categories() Page {
	return simpleByQuery(categories, Q.GetCategoriesOrdered)
}

func NotFound() http.HandlerFunc {
	return func(w http.ResponseWriter, r *http.Request) {
		render(notfound(r.RequestURI), w, r)
	}
}