Home

ugit @a224c338e9cf79fc32c9dc0f9c62b7a8e2f31d9d - refs - log -
-
https://git.jolheiser.com/ugit.git
The code powering this h*ckin' site
ugit / internal / html / repo_refs.templ
- raw
 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
package html

import "fmt"
import "go.jolheiser.com/ugit/internal/git"

type RepoRefsContext struct {
  BaseContext
  RepoHeaderComponentContext
  Branches []string
  Tags []git.Tag
}

templ RepoRefs(rrc RepoRefsContext) {
	@base(rrc.BaseContext) {
		@repoHeaderComponent(rrc.RepoHeaderComponentContext)
		if len(rrc.Branches) > 0 {
			<h3 class="text-text text-lg mt-5">Branches</h3>
			<div class="text-text grid grid-cols-8">
				for _, branch := range rrc.Branches {
					<div class="col-span-1 font-bold">{ branch }</div>
					<div class="col-span-7"><a class="underline decoration-text/50 decoration-dashed hover:decoration-solid" href={ templ.SafeURL(fmt.Sprintf("/%s/tree/%s/", rrc.RepoHeaderComponentContext.Name, branch)) }>tree</a>{ " " }<a class="underline decoration-text/50 decoration-dashed hover:decoration-solid" href={ templ.SafeURL(fmt.Sprintf("/%s/log/%s/", rrc.RepoHeaderComponentContext.Name, branch)) }>log</a></div>
				}
			</div>
		}
		if len(rrc.Tags) > 0 {
			<h3 class="text-text text-lg mt-5">Tags</h3>
			<div class="text-text grid grid-cols-8">
				for _, tag := range rrc.Tags {
					<div class="col-span-1 font-bold">{ tag.Name }</div>
					<div class="col-span-7"><a class="underline decoration-text/50 decoration-dashed hover:decoration-solid" href={ templ.SafeURL(fmt.Sprintf("/%s/tree/%s/", rrc.RepoHeaderComponentContext.Name, tag.Name)) }>tree</a>{ " " }<a class="underline decoration-text/50 decoration-dashed hover:decoration-solid" href={ templ.SafeURL(fmt.Sprintf("/%s/log/%s/", rrc.RepoHeaderComponentContext.Name, tag.Name)) }>log</a></div>
					if tag.Signature != "" {
						<div class="col-span-8">{ tag.Signature }</div>
					}
					if tag.Annotation != "" {
						<div class="col-span-8">{ tag.Annotation }</div>
					}
				}
			</div>
		}
	}
}