2020-11-29 15:52:11 +00:00
<div class="fitted item choose reference mr-1">
2017-10-15 19:59:24 +00:00
<div class="ui floating filter dropdown custom" data-can-create-branch=" {{ .CanCreateBranch }} " data-no-results=" {{ .i18n .Tr "repo.pulls.no_results" }} ">
2017-12-02 17:57:51 +00:00
<div class="ui basic small compact button" @click="menuVisible = !menuVisible" @keyup.enter="menuVisible = !menuVisible">
2015-12-09 06:11:41 +00:00
<span class="text">
2020-09-11 20:19:00 +00:00
{{ svg "octicon-git-branch" }}
2015-12-09 06:11:41 +00:00
{{ if .IsViewBranch }} {{ .i18n .Tr "repo.branch" }} {{ else }} {{ .i18n .Tr "repo.tree" }} {{ end }} :
<strong> {{ if .IsViewBranch }} {{ .BranchName }} {{ else }} {{ ShortSha .BranchName }} {{ end }} </strong>
</span>
2020-10-31 22:15:11 +00:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2015-12-09 06:11:41 +00:00
</div>
2017-10-15 19:59:24 +00:00
<div class="data" style="display: none" data-mode=" {{ if .IsViewTag }} tags {{ else }} branches {{ end }} ">
{{ range .Branches }}
2017-10-30 02:04:25 +00:00
<div class="item branch {{ if eq $ .BranchName . }} selected {{ end }} " data-url=" {{ $ .RepoLink }} / {{ if $ .PageIsCommits }} commits {{ else }} src {{ end }} /branch/ {{ EscapePound . }} {{ if $ .TreePath }} / {{ EscapePound $ .TreePath }} {{ end }} "> {{ . }} </div>
2017-10-15 19:59:24 +00:00
{{ end }}
{{ range .Tags }}
2017-10-30 02:04:25 +00:00
<div class="item tag {{ if eq $ .BranchName . }} selected {{ end }} " data-url=" {{ $ .RepoLink }} / {{ if $ .PageIsCommits }} commits {{ else }} src {{ end }} /tag/ {{ EscapePound . }} {{ if $ .TreePath }} / {{ EscapePound $ .TreePath }} {{ end }} "> {{ . }} </div>
2017-10-15 19:59:24 +00:00
{{ end }}
</div>
2017-10-17 07:24:43 +00:00
<div class="menu transition" :class=" { visible: menuVisible}" v-if="menuVisible" v-cloak>
2015-12-09 06:11:41 +00:00
<div class="ui icon search input">
2020-11-09 18:21:47 +00:00
<i class="icon df ac jc m-0"> {{ svg "octicon-filter" 1 6 }} </i>
2017-10-15 19:59:24 +00:00
<input name="search" ref="searchField" v-model="searchTerm" @keydown="keydown($event)" placeholder=" {{ .i18n .Tr "repo.filter_branch_and_tag" }} ...">
2015-12-09 06:11:41 +00:00
</div>
2017-10-15 19:59:24 +00:00
<div class="header branch-tag-choice">
2015-12-09 06:11:41 +00:00
<div class="ui grid">
<div class="two column row">
2021-02-28 19:57:45 +00:00
<a class="reference column" href="#" @click="createTag = false; mode = 'branches'; focusSearchField()">
2017-10-15 19:59:24 +00:00
<span class="text" :class=" { black: mode == 'branches'}">
2020-12-09 19:03:19 +00:00
{{ svg "octicon-git-branch" 1 6 "mr-2" }} {{ .i18n .Tr "repo.branches" }}
2015-12-09 06:11:41 +00:00
</span>
</a>
2021-02-28 19:57:45 +00:00
<a class="reference column" href="#" @click="createTag = true; mode = 'tags'; focusSearchField()">
2017-10-15 19:59:24 +00:00
<span class="text" :class=" { black: mode == 'tags'}">
2020-12-09 19:03:19 +00:00
{{ svg "octicon-tag" 1 6 "mr-2" }} {{ .i18n .Tr "repo.tags" }}
2015-12-09 06:11:41 +00:00
</span>
</a>
</div>
</div>
</div>
2017-10-15 19:59:24 +00:00
<div class="scrolling menu" ref="scrollContainer">
<div v-for="(item, index) in filteredItems" :key="item.name" class="item" :class=" { selected: item.selected, active: active == index}" @click="selectItem(item)" :ref="'listItem' + index">$ { item.name }</div>
<div class="item" v-if="showCreateNewBranch" :class=" { active: active == filteredItems.length}" :ref="'listItem' + filteredItems.length">
<a href="#" @click="createNewBranch()">
2021-02-28 19:57:45 +00:00
<div v-show="createTag">
<i class="reference tags icon"></i>
{{ .i18n .Tr "repo.tag.create_tag" ` $ { searchTerm } ` | Safe }}
</div>
<div v-show="!createTag">
2020-09-11 20:19:00 +00:00
{{ svg "octicon-git-branch" }}
2017-10-15 19:59:24 +00:00
{{ .i18n .Tr "repo.branch.create_branch" ` $ { searchTerm } ` | Safe }}
</div>
<div class="text small">
{{ if .IsViewBranch }}
2018-03-19 14:29:16 +00:00
{{ .i18n .Tr "repo.branch.create_from" .BranchName }}
2017-10-15 19:59:24 +00:00
{{ else }}
2018-03-19 14:29:16 +00:00
{{ .i18n .Tr "repo.branch.create_from" ( ShortSha .BranchName ) }}
2017-10-15 19:59:24 +00:00
{{ end }}
</div>
</a>
2017-11-11 01:32:46 +00:00
<form ref="newBranchForm" action=" {{ .RepoLink }} /branches/_new/ {{ EscapePound .BranchNameSubURL }} " method="post">
2017-10-15 19:59:24 +00:00
{{ .CsrfTokenHtml }}
<input type="hidden" name="new_branch_name" v-model="searchTerm">
2021-02-28 19:57:45 +00:00
<input type="hidden" name="create_tag" v-model="createTag">
2017-10-15 19:59:24 +00:00
</form>
</div>
2015-12-09 06:11:41 +00:00
</div>
2017-10-15 19:59:24 +00:00
<div class="message" v-if="showNoResults">$ { noResults }</div>
2015-12-09 06:11:41 +00:00
</div>
</div>
</div>