summaryrefslogtreecommitdiffstats
path: root/templates/repo/view_list.tmpl
blob: b750e9129ead8fccea09b16664e8a7ea597d0a7a (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
69
70
71
72
<table id="repo-files-table" class="ui single line table tw-mt-0" {{if .HasFilesWithoutLatestCommit}}hx-indicator="tr.notready td.message span" hx-trigger="load" hx-swap="morph" hx-post="{{.LastCommitLoaderURL}}"{{end}}>
	<thead>
		<tr class="commit-list">
			<th class="tw-overflow-hidden" colspan="2">
				<div class="tw-flex">
					<div class="latest-commit">
						{{template "repo/latest_commit" .}}
					</div>
				</div>
			</th>
			<th class="text grey right age">{{if .LatestCommit}}{{if .LatestCommit.Committer}}{{TimeSince .LatestCommit.Committer.When ctx.Locale}}{{end}}{{end}}</th>
		</tr>
	</thead>
	<tbody>
		{{if .HasParentPath}}
			<tr class="has-parent">
				<td colspan="3"><a class="muted" href="{{.BranchLink}}{{if .ParentPath}}{{PathEscapeSegments .ParentPath}}{{end}}">{{svg "octicon-reply" 16 "tw-mr-2"}}..</a></td>
			</tr>
		{{end}}
		{{range $item := .Files}}
			{{$entry := $item.Entry}}
			{{$commit := $item.Commit}}
			{{$subModuleFile := $item.SubModuleFile}}
			<tr data-entryname="{{$entry.Name}}" data-ready="{{if $commit}}true{{else}}false{{end}}" class="{{if not $commit}}not{{end}}ready entry">
				<td class="name four wide">
					<span class="truncate">
						{{if $entry.IsSubModule}}
							{{$refURL := $subModuleFile.RefURL AppUrl $.Repository.FullName $.SSHDomain}} {{/* FIXME: the usage of AppUrl seems incorrect, it would be fixed in the future, use AppSubUrl instead */}}
							{{$icon := (svg "octicon-file-submodule" 16 "tw-mr-2")}}
							{{if $refURL}}
								<a class="muted" href="{{$refURL}}">{{$icon}}{{$entry.Name}}</a><span class="at">@</span><a href="{{$refURL}}/commit/{{PathEscape $subModuleFile.RefID}}">{{ShortSha $subModuleFile.RefID}}</a>
							{{else}}
								{{$icon}}{{$entry.Name}}<span class="at">@</span>{{ShortSha $subModuleFile.RefID}}
							{{end}}
						{{else}}
							{{if $entry.IsDir}}
								{{$subJumpablePathName := $entry.GetSubJumpablePathName}}
								<a class="muted" href="{{$.TreeLink}}/{{PathEscapeSegments $subJumpablePathName}}" title="{{$subJumpablePathName}}">
									{{$subJumpablePathFields := StringUtils.Split $subJumpablePathName "/"}}
									{{$subJumpablePathFieldLast := (Eval (len $subJumpablePathFields) "-" 1)}}
									{{svg "octicon-file-directory-fill" 16 "tw-mr-2" -}}
									{{if eq $subJumpablePathFieldLast 0 -}}
										{{$subJumpablePathName}}
									{{else -}}
										{{$subJumpablePathPrefixes := slice $subJumpablePathFields 0 $subJumpablePathFieldLast -}}
										<span class="text light-2">{{StringUtils.Join $subJumpablePathPrefixes "/"}}</span>/{{index $subJumpablePathFields $subJumpablePathFieldLast}}
									{{end}}
								</a>
							{{else}}
								<a class="muted" href="{{$.TreeLink}}/{{PathEscapeSegments $entry.Name}}" title="{{$entry.Name}}">{{svg (printf "octicon-%s" (EntryIcon $entry)) 16 "tw-mr-2"}}{{$entry.Name}}</a>
							{{end}}
						{{end}}
					</span>
				</td>
				<td class="message nine wide">
					<span class="truncate">
						{{if $commit}}
							{{$commitLink := printf "%s/commit/%s" $.RepoLink (PathEscape $commit.ID.String)}}
							{{RenderCommitMessageLinkSubject $.Context $commit.Message $commitLink ($.Repository.ComposeMetas ctx)}}
						{{else}}
							<div class="ui active tiny slow centered inline"></div>
						{{end}}
					</span>
				</td>
				<td class="text right age three wide">{{if $commit}}{{TimeSince $commit.Committer.When ctx.Locale}}{{end}}</td>
			</tr>
		{{end}}
	</tbody>
</table>
{{if and .ReadmeExist (or .IsMarkup .IsPlainText)}}
	{{template "repo/view_file" .}}
{{end}}