about summary refs log tree commit diff stats
path: root/internal/components/packages.templ
blob: e8112200d6cf1a1d59d1e64c07eaa50b48b9268e (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
37
38
39
package components

import (
	"searchix/internal/index"
	"searchix/internal/nix"
)

templ Packages(result *index.Result) {
	<table>
		<thead>
			<tr>
				<th scope="col">Attribute</th>
				<th scope="col">Name</th>
				<th scope="col">Description</th>
			</tr>
		</thead>
		<tbody>
			for _, hit := range result.Hits {
				if m := convertMatch[nix.Package](hit.Data); m != nil {
					@packageRow(*m)
				}
			}
		</tbody>
	</table>
}

templ packageRow(p nix.Package) {
	<tr>
		<td>
			@openDialogLink(p.Attribute)
		</td>
		<td>
			{ p.Name }
		</td>
		<td>
			{ p.Description }
		</td>
	</tr>
}