blob: 8e31132e133d16780a3c4389ee228c3bec3b3859 (
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
27
28
29
30
31
32
33
34
35
36
|
package components
import (
"go.alanpearce.eu/searchix/internal/index"
"go.alanpearce.eu/searchix/internal/nix"
)
templ Options(result *index.Result) {
<table>
<thead>
<tr>
<th scope="col">Title</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
for _, hit := range result.Hits {
if m := convertMatch[nix.Option](hit.Data); m != nil {
@optionRow(*m)
}
}
</tbody>
</table>
}
templ optionRow(o nix.Option) {
<tr>
<td>
@openDialogLink(o.Name)
</td>
<td>
@markdown(firstSentence(o.Description))
<dialog id={ o.Name }></dialog>
</td>
</tr>
}
|