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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
package components
import (
"net/url"
"go.alanpearce.eu/searchix/internal/config"
"go.alanpearce.eu/searchix/frontend"
)
templ Page(tdata TemplateData) {
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Searchix</title>
for _, sheet := range tdata.Assets.Stylesheets {
<link href={ sheet.URL } rel="stylesheet" integrity={ "sha256-" + sheet.Base64SHA256 }/>
}
@Unsafe(tdata.ExtraHeadHTML)
<link
rel="search"
type="application/opensearchdescription+xml"
title={ "Searchix " + sourceNameAndType(nil) }
href={ string(joinPath("/all", "opensearch.xml")) }
/>
for _, source := range tdata.Sources {
<link
rel="search"
type="application/opensearchdescription+xml"
title={ "Searchix " + sourceNameAndType(source) }
href={ string(joinPath("/", source.Importer.String(), source.Key, "opensearch.xml")) }
/>
}
</head>
<body>
<header>
<nav>
<h1><a href="/">Searchix</a></h1>
<a
if tdata.Source == nil {
if tdata.SourceResult != nil || tdata.Query != "" {
class="current"
}
href="/all/search"
} else {
href={ joinPathQuery("/all/search", tdata.Query) }
}
>All</a>
for _, source := range tdata.Sources {
<a
if tdata.Source != nil && tdata.Source.Name == source.Name {
class="current"
href={ joinPath("/", source.Importer.String(), source.Key, "search") }
} else {
href={ joinPathQuery(joinPath("/", source.Importer.String(), source.Key, "search"), tdata.Query) }
}
>{ source.Name }</a>
}
</nav>
</header>
<main>
{ children... }
</main>
<footer>
Made by <a href="https://alanpearce.eu">Alan Pearce</a>.
<a href="https://todo.sr.ht/~alanpearce/searchix">Report issues</a>
</footer>
</body>
</html>
}
templ script(s *frontend.Asset) {
<script src={ s.URL } defer integrity={ "sha256-" + s.Base64SHA256 }></script>
}
func Unsafe(html string) templ.Component {
return templ.ComponentFunc(func(_ context.Context, w io.Writer) (err error) {
_, err = io.WriteString(w, html)
return
})
}
func sourceNameAndType(source *config.Source) string {
if source == nil {
return "Combined"
}
switch source.Importer {
case config.Options:
return source.Name + " " + source.Importer.String()
case config.Packages:
return source.Name
}
return ""
}
func joinPath(base string, parts ...string) templ.SafeURL {
u, err := url.JoinPath(base, parts...)
if err != nil {
panic(err)
}
return templ.SafeURL(u)
}
func joinPathQuery[T ~string](path T, query string) templ.SafeURL {
if query == "" {
return templ.SafeURL(path)
}
return templ.SafeURL(string(path) + "?query=" + url.QueryEscape(query))
}
|