summaryrefslogtreecommitdiffstats
path: root/templates/shared/search/code/search.tmpl
blob: 9457da988a0ea5ef031c862de32d0c36780e94e2 (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
<form class="ui form ignore-dirty">
	<input type="hidden" name="path" value="{{.CodeSearchPath}}">
	{{template "shared/search/combo_multi"
		dict
			"Value" .Keyword
			"Disabled" .CodeIndexerUnavailable
			"Placeholder" (ctx.Locale.Tr "search.code_kind")
			"Selected" $.CodeSearchMode
			"Options" $.CodeSearchOptions}}
</form>
<div class="divider"></div>
<div class="ui user list">
	{{if .CodeIndexerUnavailable}}
		<div class="ui error message">
			<p>{{ctx.Locale.Tr "search.code_search_unavailable"}}</p>
		</div>
	{{else}}
		{{if .CodeSearchPath}}
			<div class="tw-mb-4">
				<span class="breadcrumb">
					<a class="section" href="?q={{.Keyword}}&mode={{.CodeSearchMode}}">@</a>
					{{$href := ""}}
					{{- range $i, $path := StringUtils.Split .CodeSearchPath "/" -}}
						{{if eq $i 0}}
							{{$href = $path}}
						{{else}}
							{{$href = StringUtils.Join (StringUtils.Make $href $path) "/"}}
						{{end}}
						<span class="breadcrumb-divider">/</span>
						<span class="section"><a href="?q={{$.Keyword}}&mode={{$.CodeSearchMode}}&path={{$href}}">{{$path}}</a></span>
					{{- end -}}
				</span>
			</div>
		{{end}}
		{{if .CodeIndexerDisabled}}
			<div class="ui message" data-test-tag="grep">
				<p>{{ctx.Locale.Tr "search.code_search_by_git_grep"}}</p>
			</div>
		{{end}}
		{{if .SearchResults}}
			{{template "shared/search/code/results" .}}
		{{else if .Keyword}}
			<div>{{ctx.Locale.Tr "search.no_results"}}</div>
		{{end}}
	{{end}}
</div>