summaryrefslogtreecommitdiffstats
path: root/templates/repo/view_list.tmpl
blob: c1ef4ff4cb0e5abf83b29eb317551ea5fb7a38f8 (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
<table id="repo-files-table" class="ui single line table gt-mt-0" data-last-commit-loader-url="{{.LastCommitLoaderURL}}">
	<thead>
		<tr class="commit-list">
			<th colspan="2" {{if not .LatestCommit}}class="notready"{{end}}>
				{{template "repo/latest_commit" .}}
			</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">{{svg "octicon-reply"}}<a class="muted" href="{{.BranchLink}}{{if .ParentPath}}{{PathEscapeSegments .ParentPath}}{{end}}">..</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}}
							{{svg "octicon-file-submodule"}}
							{{$refURL := $subModuleFile.RefURL AppUrl $.Repository.FullName $.SSHDomain}} {{/* FIXME: the usage of AppUrl seems incorrect, it would be fixed in the future, use AppSubUrl instead */}}
							{{if $refURL}}
								<a class="muted" href="{{$refURL}}">{{$entry.Name}}</a><span class="at">@</span><a href="{{$refURL}}/commit/{{PathEscape $subModuleFile.RefID}}">{{ShortSha $subModuleFile.RefID}}</a>
							{{else}}
								{{$entry.Name}}<span class="at">@</span>{{ShortSha $subModuleFile.RefID}}
							{{end}}
						{{else}}
							{{if $entry.IsDir}}
								{{$subJumpablePathName := $entry.GetSubJumpablePathName}}
								{{svg "octicon-file-directory-fill"}}
								<a class="muted" href="{{$.TreeLink}}/{{PathEscapeSegments $subJumpablePathName}}" title="{{$subJumpablePathName}}">
									{{$subJumpablePathFields := StringUtils.Split $subJumpablePathName "/"}}
									{{$subJumpablePathFieldLast := (Eval (len $subJumpablePathFields) "-" 1)}}
									{{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}}
								{{svg (printf "octicon-%s" (EntryIcon $entry))}}
								<a class="muted" href="{{$.TreeLink}}/{{PathEscapeSegments $entry.Name}}" title="{{$entry.Name}}">{{$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 .ReadmeExist}}
	{{template "repo/view_file" .}}
{{end}}