mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-07 22:15:51 +01:00
63 lines
2.4 KiB
HTML
63 lines
2.4 KiB
HTML
@(branch: String = "",
|
|
repository: service.RepositoryService.RepositoryInfo,
|
|
hasWritePermission: Boolean)(body: Html)(implicit context: app.Context)
|
|
@import context._
|
|
@import view.helpers._
|
|
@helper.html.dropdown(
|
|
value = if(branch.length == 40) branch.substring(0, 10) else branch,
|
|
prefix = if(branch.length == 40) "tree" else if(repository.branchList.contains(branch)) "branch" else "tree",
|
|
mini = true
|
|
) {
|
|
<li><div id="branch-control-title">Switch branches<button id="branch-control-close" class="pull-right">×</button></div></li>
|
|
<li><input id="branch-control-input" type="text" placeholder="Find or create branch ..."/></li>
|
|
@body
|
|
@if(hasWritePermission) {
|
|
<li id="create-branch" style="display: none;">
|
|
<a><form action="@url(repository)/branches" method="post" style="margin: 0;">
|
|
<span class="new-branch-name">Create branch: <span class="new-branch"></span></span>
|
|
<br><span style="padding-left: 17px;">from '@branch'</span>
|
|
<input type="hidden" name="new">
|
|
<input type="hidden" name="from" value="@branch">
|
|
</form></a>
|
|
</li>
|
|
}
|
|
}
|
|
<script>
|
|
$(function(){
|
|
$('#branch-control-input').parent().click(function(e) {
|
|
e.stopPropagation();
|
|
});
|
|
$('#branch-control-close').click(function() {
|
|
$('[data-toggle="dropdown"]').parent().removeClass('open');
|
|
});
|
|
$('#branch-control-input').keyup(function() {
|
|
var inputVal = $('#branch-control-input').val();
|
|
$.each($('#branch-control-input').parent().parent().find('a'), function(index, elem) {
|
|
if (!inputVal || !elem.text.trim() || elem.text.trim().lastIndexOf(inputVal, 0) >= 0) {
|
|
$(elem).parent().show();
|
|
} else {
|
|
$(elem).parent().hide();
|
|
}
|
|
});
|
|
@if(hasWritePermission) {
|
|
if (inputVal) {
|
|
$('#create-branch').parent().find('li:last-child').show().find('.new-branch').text(inputVal);
|
|
} else {
|
|
$('#create-branch').parent().find('li:last-child').hide();
|
|
}
|
|
}
|
|
});
|
|
@if(hasWritePermission) {
|
|
$('#create-branch').click(function() {
|
|
$(this).find('input[name="new"]').val($('.dropdown-menu input').val())
|
|
$(this).find('form').submit()
|
|
});
|
|
}
|
|
$('.btn-group').click(function() {
|
|
$('#branch-control-input').val('');
|
|
$('.dropdown-menu li').show();
|
|
$('#create-branch').hide();
|
|
});
|
|
});
|
|
</script>
|