2021-05-03 17:27:48 +00:00
|
|
|
{{$release := .release}}
|
2022-02-09 20:28:55 +00:00
|
|
|
{{$defaultBranch := $.root.BranchName}}{{if and .root.IsViewTag (not .noTag)}}{{$defaultBranch = .root.TagName}}{{end}}{{if eq $defaultBranch ""}}{{$defaultBranch = $.root.Repository.DefaultBranch}}{{end}}
|
2021-05-03 17:27:48 +00:00
|
|
|
{{$showBranchesInDropdown := not .root.HideBranchesInDropdown}}
|
|
|
|
<div class="fitted item choose reference{{if not $release}} mr-1{{end}}">
|
2022-02-09 20:28:55 +00:00
|
|
|
<div class="ui floating filter dropdown custom"
|
|
|
|
data-branch-form="{{if $.branchForm}}{{$.branchForm}}{{end}}"
|
|
|
|
data-can-create-branch="{{if .canCreateBranch}}{{.canCreateBranch}}{{else}}{{.root.CanCreateBranch}}{{end}}"
|
|
|
|
data-no-results="{{.root.i18n.Tr "repo.pulls.no_results"}}"
|
|
|
|
data-set-action="{{.setAction}}" data-submit-form="{{.submitForm}}"
|
|
|
|
data-view-type="{{if and .root.IsViewTag (not .noTag)}}tag{{else if .root.IsViewBranch}}branch{{else}}tree{{end}}"
|
|
|
|
data-ref-name="{{if and .root.IsViewTag (not .noTag)}}{{.root.TagName}}{{else if .root.IsViewBranch}}{{.root.BranchName}}{{else}}{{ShortSha .root.CommitID}}{{end}}"
|
|
|
|
data-branch-url-prefix="{{if .branchURLPrefix}}{{.branchURLPrefix}}{{else}}{{$.root.RepoLink}}/{{if $.root.PageIsCommits}}commits{{else}}src{{end}}/branch/{{end}}"
|
|
|
|
data-branch-url-suffix="{{if .branchURLSuffix}}{{.branchURLSuffix}}{{else}}{{if $.root.TreePath}}/{{PathEscapeSegments $.root.TreePath}}{{end}}{{end}}"
|
|
|
|
data-tag-url-prefix="{{if .tagURLPrefix}}{{.tagURLPrefix}}{{else if $release}}{{$.root.RepoLink}}/compare/{{else}}{{$.root.RepoLink}}/{{if $.root.PageIsCommits}}commits{{else}}src{{end}}/tag/{{end}}"
|
|
|
|
data-tag-url-suffix="{{if .tagURLSuffix}}{{.tagURLSuffix}}{{else if $release}}...{{if $release.IsDraft}}{{PathEscapeSegments $release.Target}}{{else}}{{if $release.TagName}}{{PathEscapeSegments $release.TagName}}{{else}}{{PathEscapeSegments $release.Sha1}}{{end}}{{end}}{{else}}{{if $.root.TreePath}}/{{PathEscapeSegments $.root.TreePath}}{{end}}{{end}}">
|
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">
|
2021-05-03 17:27:48 +00:00
|
|
|
{{if $release}}
|
|
|
|
{{.root.i18n.Tr "repo.release.compare"}}
|
|
|
|
{{else}}
|
2022-02-09 20:28:55 +00:00
|
|
|
<span :class="{visible: isViewTag}" v-if="isViewTag" v-cloak>{{svg "octicon-tag"}} {{.root.i18n.Tr "repo.tag"}}:</span>
|
|
|
|
<span :class="{visible: isViewBranch}" v-if="isViewBranch" v-cloak>{{svg "octicon-git-branch"}} {{.root.i18n.Tr "repo.branch"}}:</span>
|
|
|
|
<span :class="{visible: isViewTree}" v-if="isViewTree" v-cloak>{{svg "octicon-git-branch"}} {{.root.i18n.Tr "repo.tree"}}:</span>
|
|
|
|
<strong ref="dropdownRefName">{{if and .root.IsViewTag (not .noTag)}}{{.root.TagName}}{{else if .root.IsViewBranch}}{{.root.BranchName}}{{else}}{{ShortSha .root.CommitID}}{{end}}</strong>
|
2021-05-03 17:27:48 +00:00
|
|
|
{{end}}
|
2015-12-09 06:11:41 +00:00
|
|
|
</span>
|
2020-10-31 22:15:11 +00:00
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2015-12-09 06:11:41 +00:00
|
|
|
</div>
|
2022-02-09 20:28:55 +00:00
|
|
|
<div class="data" style="display: none" data-mode="{{if or .root.IsViewTag .isTag}}tags{{else}}branches{{end}}">
|
2021-05-03 17:27:48 +00:00
|
|
|
{{if $showBranchesInDropdown}}
|
|
|
|
{{range .root.Branches}}
|
2022-02-09 20:28:55 +00:00
|
|
|
<div class="item branch {{if eq $defaultBranch .}}selected{{end}}" data-url="{{PathEscapeSegments .}}">{{.}}</div>
|
2021-05-03 17:27:48 +00:00
|
|
|
{{end}}
|
2017-10-15 19:59:24 +00:00
|
|
|
{{end}}
|
2022-02-09 20:28:55 +00:00
|
|
|
{{if (not .noTag)}}
|
|
|
|
{{range .root.Tags}}
|
|
|
|
{{if $release}}
|
|
|
|
<div class="item tag {{if eq $release.TagName .}}selected{{end}}" data-url="{{PathEscapeSegments .}}">{{.}}</div>
|
|
|
|
{{else}}
|
|
|
|
<div class="item tag {{if eq $defaultBranch .}}selected{{end}}" data-url="{{PathEscapeSegments .}}">{{.}}</div>
|
|
|
|
{{end}}
|
2021-05-03 17:27:48 +00:00
|
|
|
{{end}}
|
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" 16}}</i>
|
2022-05-04 00:48:23 +00:00
|
|
|
<input name="search" ref="searchField" autocomplete="off" v-model="searchTerm" @keydown="keydown($event)" placeholder="{{if $.noTag}}{{.root.i18n.Tr "repo.pulls.filter_branch"}}{{else if $showBranchesInDropdown}}{{.root.i18n.Tr "repo.filter_branch_and_tag"}}{{else}}{{.root.i18n.Tr "repo.find_tag"}}{{end}}...">
|
2015-12-09 06:11:41 +00:00
|
|
|
</div>
|
2021-05-03 17:27:48 +00:00
|
|
|
{{if $showBranchesInDropdown}}
|
|
|
|
<div class="header branch-tag-choice">
|
|
|
|
<div class="ui grid">
|
|
|
|
<div class="two column row">
|
|
|
|
<a class="reference column" href="#" @click="createTag = false; mode = 'branches'; focusSearchField()">
|
|
|
|
<span class="text" :class="{black: mode == 'branches'}">
|
|
|
|
{{svg "octicon-git-branch" 16 "mr-2"}}{{.root.i18n.Tr "repo.branches"}}
|
|
|
|
</span>
|
|
|
|
</a>
|
2022-02-09 20:28:55 +00:00
|
|
|
{{if not .noTag}}
|
|
|
|
<a class="reference column" href="#" @click="createTag = true; mode = 'tags'; focusSearchField()">
|
|
|
|
<span class="text" :class="{black: mode == 'tags'}">
|
|
|
|
{{svg "octicon-tag" 16 "mr-2"}}{{.root.i18n.Tr "repo.tags"}}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
{{end}}
|
2021-05-03 17:27:48 +00:00
|
|
|
</div>
|
2015-12-09 06:11:41 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-05-03 17:27:48 +00:00
|
|
|
{{end}}
|
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>
|
2021-05-03 17:27:48 +00:00
|
|
|
{{.root.i18n.Tr "repo.tag.create_tag" `${ searchTerm }` | Safe}}
|
2021-02-28 19:57:45 +00:00
|
|
|
</div>
|
|
|
|
<div v-show="!createTag">
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-git-branch"}}
|
2021-05-03 17:27:48 +00:00
|
|
|
{{.root.i18n.Tr "repo.branch.create_branch" `${ searchTerm }` | Safe}}
|
2017-10-15 19:59:24 +00:00
|
|
|
</div>
|
|
|
|
<div class="text small">
|
2021-05-03 17:27:48 +00:00
|
|
|
{{if or .root.IsViewBranch $release}}
|
|
|
|
{{.root.i18n.Tr "repo.branch.create_from" .root.BranchName}}
|
2021-11-17 23:50:17 +00:00
|
|
|
{{else if .root.IsViewTag}}
|
|
|
|
{{.root.i18n.Tr "repo.branch.create_from" .root.TagName}}
|
2017-10-15 19:59:24 +00:00
|
|
|
{{else}}
|
2021-11-17 23:50:17 +00:00
|
|
|
{{.root.i18n.Tr "repo.branch.create_from" (ShortSha .root.CommitID)}}
|
2017-10-15 19:59:24 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</a>
|
2021-11-16 18:18:25 +00:00
|
|
|
<form ref="newBranchForm" action="{{.root.RepoLink}}/branches/_new/{{.root.BranchNameSubURL}}" method="post">
|
2021-05-03 17:27:48 +00:00
|
|
|
{{.root.CsrfTokenHtml}}
|
2017-10-15 19:59:24 +00:00
|
|
|
<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>
|