summaryrefslogtreecommitdiffstats
path: root/templates/shared/search/fuzzy.tmpl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--templates/shared/search/fuzzy.tmpl21
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/shared/search/fuzzy.tmpl b/templates/shared/search/fuzzy.tmpl
new file mode 100644
index 0000000..25cfc57
--- /dev/null
+++ b/templates/shared/search/fuzzy.tmpl
@@ -0,0 +1,21 @@
+{{/* Disabled (optional) - if dropdown has to be disabled */}}
+{{/* IsFuzzy - state of the fuzzy search toggle */}}
+<div class="ui small dropdown selection {{if .Disabled}} disabled{{end}}" data-tooltip-content="{{ctx.Locale.Tr "search.type_tooltip"}}" data-test-tag="fuzzy-dropdown">
+ {{$fuzzyType := "fuzzy"}}
+ {{if .CodeIndexerDisabled}}
+ {{$fuzzyType = "union"}}
+ {{end}}
+ <input name="fuzzy" type="hidden"{{if .Disabled}} disabled{{end}} value="{{.IsFuzzy}}">{{svg "octicon-triangle-down" 14 "dropdown icon"}}
+ <div class="text">{{/*
+ if code indexer is disabled display fuzzy as union
+ */}}{{if .IsFuzzy}}{{/*
+ */}}{{ctx.Locale.Tr (printf "search.%s" $fuzzyType)}}{{/*
+ */}}{{else}}{{/*
+ */}}{{ctx.Locale.Tr "search.exact"}}{{/*
+ */}}{{end}}</div>
+ <div class="menu">
+ <div class="item" data-value="true" data-tooltip-content="{{ctx.Locale.Tr (printf "search.%s_tooltip" $fuzzyType)}}">{{/*
+ */}}{{ctx.Locale.Tr (printf "search.%s" $fuzzyType)}}</div>
+ <div class="item" data-value="false" data-tooltip-content="{{ctx.Locale.Tr "search.exact_tooltip"}}">{{ctx.Locale.Tr "search.exact"}}</div>
+ </div>
+</div>