aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/html/autoindex.go
blob: 4c311347531b089988f185b5c8e20e8d7ebc4070 (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
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
package html

import (
	"fmt"
	"strconv"

	. "github.com/LMBishop/scrapbook/web/skeleton"
	. "maragu.dev/gomponents"
	. "maragu.dev/gomponents/html"
)

type File struct {
	Name  string
	IsDir bool
	Size  int64
	Mtime int
}

func IndexPage(dir string, err bool, files []File) Node {
	return Page("Index of "+dir,
		H1(Text("Index of "+dir)),

		Div(
			Class("table files-table"),
			Group{
				Span(
					Class("header name"),
					Text("Name"),
				),
				Span(
					Class("header size"),
					Text("Size"),
				),
				Span(
					Class("header last-modified"),
					Text("Last modified"),
				),
			},

			If(files != nil, Map(files, func(file File) Node {
				var fileName string
				if file.IsDir {
					fileName = file.Name + "/"
				} else {
					fileName = file.Name
				}
				return Group{
					A(
						Class("name"),
						Href(fileName),
						Text(fileName),
					),
					Span(
						Class("size"),
						If(file.IsDir, Text("--")),
						If(!file.IsDir, Text(strconv.FormatInt(file.Size, 10)+" bytes")),
					),
					Span(
						Class("last-modified"),
						Text("--"),
					),
				}
			})),
		),

		If(err, AlertError(fmt.Sprintf("Failed to list directory"))),
	)
}