aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/home.tmpl
blob: 343425134b5b93729cc78b4ed80c53c2baf8a3a7 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{{template "base/head" .}}
<div role="main" aria-label="{{.Title}}" class="page-content repository file list {{if .IsBlame}}blame{{end}}">
	{{template "repo/header" .}}
	<div class="ui container {{if .IsBlame}}fluid padded{{end}}">
		{{template "base/alert" .}}

		{{if .Repository.IsArchived}}
			<div class="ui warning message tw-text-center">
				{{if .Repository.ArchivedUnix.IsZero}}
					{{ctx.Locale.Tr "repo.archive.title"}}
				{{else}}
					{{ctx.Locale.Tr "repo.archive.title_date" (DateUtils.AbsoluteLong .Repository.ArchivedUnix)}}
				{{end}}
			</div>
		{{end}}

		{{template "repo/code/recently_pushed_new_branches" .}}

		{{$treeNamesLen := len .TreeNames}}
		{{$isTreePathRoot := eq $treeNamesLen 0}}
		{{$showSidebar := $isTreePathRoot}}
		<div class="{{Iif $showSidebar "repo-grid-filelist-sidebar" "repo-grid-filelist-only"}}">
			<div class="repo-home-filelist">
				{{template "repo/sub_menu" .}}
				<div class="repo-button-row">
					<div class="repo-button-row-left">
						{{$branchDropdownCurrentRefType := "branch"}}
						{{$branchDropdownCurrentRefShortName := .BranchName}}
						{{if .IsViewTag}}
							{{$branchDropdownCurrentRefType = "tag"}}
							{{$branchDropdownCurrentRefShortName = .TagName}}
						{{end}}
						{{template "repo/branch_dropdown" dict
							"Repository" .Repository
							"ShowTabBranches" true
							"ShowTabTags" true
							"CurrentRefType" $branchDropdownCurrentRefType
							"CurrentRefShortName" $branchDropdownCurrentRefShortName
							"CurrentTreePath" .TreePath
							"RefLinkTemplate" "{RepoLink}/src/{RefType}/{RefShortName}/{TreePath}"
							"AllowCreateNewRef" .CanCreateBranch
							"ShowViewAllRefsEntry" true
						}}
						{{if and .CanCompareOrPull .IsViewBranch (not .Repository.IsArchived)}}
							{{$cmpBranch := ""}}
							{{if ne .Repository.ID .BaseRepo.ID}}
								{{$cmpBranch = printf "%s/%s:" (.Repository.OwnerName|PathEscape) (.Repository.Name|PathEscape)}}
							{{end}}
							{{$cmpBranch = print $cmpBranch (.BranchName|PathEscapeSegments)}}
							{{$compareLink := printf "%s/compare/%s...%s" .BaseRepo.Link (.BaseRepo.DefaultBranch|PathEscapeSegments) $cmpBranch}}
							<a id="new-pull-request" role="button" class="ui compact basic button" href="{{$compareLink}}"
								data-tooltip-content="{{if .PullRequestCtx.Allowed}}{{ctx.Locale.Tr "repo.pulls.compare_changes"}}{{else}}{{ctx.Locale.Tr "action.compare_branch"}}{{end}}">
								{{svg "octicon-git-pull-request"}}
							</a>
						{{end}}

						<!-- Show go to file if on home page -->
						{{if $isTreePathRoot}}
							<a href="{{.Repository.Link}}/find/{{.BranchNameSubURL}}" class="ui compact basic button">{{ctx.Locale.Tr "repo.find_file.go_to_file"}}</a>
						{{end}}

						{{if and .CanWriteCode .IsViewBranch (not .Repository.IsMirror) (not .Repository.IsArchived) (not .IsViewFile)}}
							<button class="ui dropdown basic compact jump button"{{if not .Repository.CanEnableEditor}} disabled{{end}}>
								{{ctx.Locale.Tr "repo.editor.add_file"}}
								{{svg "octicon-triangle-down" 14 "dropdown icon"}}
								<div class="menu">
									<a class="item" href="{{.RepoLink}}/_new/{{.BranchName | PathEscapeSegments}}/{{.TreePath | PathEscapeSegments}}">
										{{ctx.Locale.Tr "repo.editor.new_file"}}
									</a>
									{{if .RepositoryUploadEnabled}}
									<a class="item" href="{{.RepoLink}}/_upload/{{.BranchName | PathEscapeSegments}}/{{.TreePath | PathEscapeSegments}}">
										{{ctx.Locale.Tr "repo.editor.upload_file"}}
									</a>
									{{end}}
									<a class="item" href="{{.RepoLink}}/_diffpatch/{{.BranchName | PathEscapeSegments}}/{{.TreePath | PathEscapeSegments}}">
										{{ctx.Locale.Tr "repo.editor.patch"}}
									</a>
								</div>
							</button>
						{{end}}

						{{if and $isTreePathRoot .Repository.IsTemplate}}
							<a role="button" class="ui primary compact button" href="{{AppSubUrl}}/repo/create?template_id={{.Repository.ID}}">
								{{ctx.Locale.Tr "repo.use_template"}}
							</a>
						{{end}}

						{{if not $isTreePathRoot}}
							{{$treeNameIdxLast := Eval $treeNamesLen "-" 1}}
							<span class="breadcrumb repo-path tw-ml-1">
								<a class="section" href="{{.RepoLink}}/src/{{.BranchNameSubURL}}" title="{{.Repository.Name}}">{{StringUtils.EllipsisString .Repository.Name 30}}</a>
								{{- range $i, $v := .TreeNames -}}
									<span class="breadcrumb-divider">/</span>
									{{- if eq $i $treeNameIdxLast -}}
										<span class="active section" title="{{$v}}">{{$v}}</span>
										<button class="btn interact-fg tw-mx-1" data-clipboard-text="{{$.TreePath}}" data-tooltip-content="{{ctx.Locale.Tr "copy_path"}}">{{svg "octicon-copy" 14}}</button>
									{{- else -}}
										{{$p := index $.Paths $i}}<span class="section"><a href="{{$.BranchLink}}/{{PathEscapeSegments $p}}" title="{{$v}}">{{$v}}</a></span>
									{{- end -}}
								{{- end -}}
							</span>
						{{end}}
					</div>

					<div class="repo-button-row-right">
						<!-- Only show clone panel in repository home page -->
						{{if $isTreePathRoot}}
							<div class="clone-panel ui action tiny input">
								{{template "repo/clone_buttons" .}}
								<button class="ui small jump dropdown icon button" data-tooltip-content="{{ctx.Locale.Tr "repo.more_operations"}}">
									{{svg "octicon-kebab-horizontal"}}
									<div class="menu">
										{{if not $.DisableDownloadSourceArchives}}
											<a class="item archive-link" href="{{$.RepoLink}}/archive/{{PathEscapeSegments $.RefName}}.zip" rel="nofollow">{{svg "octicon-file-zip" 16 "tw-mr-2"}}{{ctx.Locale.Tr "repo.download_zip"}}</a>
											<a class="item archive-link" href="{{$.RepoLink}}/archive/{{PathEscapeSegments $.RefName}}.tar.gz" rel="nofollow">{{svg "octicon-file-zip" 16 "tw-mr-2"}}{{ctx.Locale.Tr "repo.download_tar"}}</a>
											<a class="item archive-link" href="{{$.RepoLink}}/archive/{{PathEscapeSegments $.RefName}}.bundle" rel="nofollow">{{svg "octicon-package" 16 "tw-mr-2"}}{{ctx.Locale.Tr "repo.download_bundle"}}</a>
										{{end}}
										{{range .OpenWithEditorApps}}
											<a class="item js-clone-url-editor" data-href-template="{{.OpenURL}}">{{.IconHTML}}{{ctx.Locale.Tr "repo.open_with_editor" .DisplayName}}</a>
										{{end}}
									</div>
								</button>
								{{template "repo/clone_script" .}}{{/* the script will update `.js-clone-url` and related elements */}}
							</div>
							{{template "repo/cite/cite_modal" .}}
						{{end}}
						{{if and (not $isTreePathRoot) (not .IsViewFile) (not .IsBlame)}}{{/* IsViewDirectory (not home), TODO: split the templates, avoid using "if" tricks */}}
							<a class="ui button" href="{{.RepoLink}}/commits/{{.BranchNameSubURL}}/{{.TreePath | PathEscapeSegments}}">
								{{svg "octicon-history" 16 "tw-mr-2"}}{{ctx.Locale.Tr "repo.file_history"}}
							</a>
						{{end}}
					</div>
				</div>
				{{if .IsViewFile}}
					{{template "repo/view_file" .}}
				{{else if .IsBlame}}
					{{template "repo/blame" .}}
				{{else}}{{/* IsViewDirectory */}}
					{{if $isTreePathRoot}}
						{{template "repo/code/upstream_diverging_info" .}}
					{{end}}
					{{template "repo/view_list" .}}
				{{end}}
			</div>

			{{if $showSidebar}}
				<div class="repo-home-sidebar-top">{{template "repo/home_sidebar_top" .}}</div>
				<div class="repo-home-sidebar-bottom">{{template "repo/home_sidebar_bottom" .}}</div>
			{{end}}
		</div>
	</div>
</div>
{{template "base/footer" .}}