2017-11-20 14:48:33 -05:00
|
|
|
- show_create = local_assigns.fetch(:show_create, false)
|
|
|
|
|
2017-12-21 10:05:47 -05:00
|
|
|
- show_new_branch_form = show_new_ide? && show_create && can?(current_user, :push_code, @project)
|
2016-06-16 07:53:58 -04:00
|
|
|
- dropdown_toggle_text = @ref || @project.default_branch
|
2017-06-29 13:06:35 -04:00
|
|
|
= form_tag switch_project_refs_path(@project), method: :get, class: "project-refs-form" do
|
2012-09-16 12:07:57 -04:00
|
|
|
= hidden_field_tag :destination, destination
|
2012-09-17 13:07:17 -04:00
|
|
|
- if defined?(path)
|
2012-09-16 12:07:57 -04:00
|
|
|
= hidden_field_tag :path, path
|
2013-04-14 08:09:47 -04:00
|
|
|
- @options && @options.each do |key, value|
|
|
|
|
= hidden_field_tag key, value, id: nil
|
2016-06-07 09:40:21 -04:00
|
|
|
.dropdown
|
2017-11-06 23:32:51 -05:00
|
|
|
= dropdown_toggle dropdown_toggle_text, { toggle: "dropdown", selected: dropdown_toggle_text, ref: @ref, refs_url: refs_project_path(@project, sort: 'updated_desc'), field_name: 'ref', submit_form_on_click: true, visit: true }, { toggle_class: "js-project-refs-dropdown" }
|
2017-10-23 06:57:23 -04:00
|
|
|
.dropdown-menu.dropdown-menu-selectable.git-revision-dropdown.dropdown-menu-paging{ class: ("dropdown-menu-align-right" if local_assigns[:align_right]) }
|
|
|
|
.dropdown-page-one
|
|
|
|
= dropdown_title _("Switch branch/tag")
|
|
|
|
= dropdown_filter _("Search branches and tags")
|
|
|
|
= dropdown_content
|
|
|
|
= dropdown_loading
|
|
|
|
- if show_new_branch_form
|
|
|
|
= dropdown_footer do
|
|
|
|
%ul.dropdown-footer-list
|
|
|
|
%li
|
|
|
|
%a.dropdown-toggle-page{ href: "#" }
|
|
|
|
Create new branch
|
|
|
|
- if show_new_branch_form
|
|
|
|
.dropdown-page-two
|
|
|
|
= dropdown_title("Create new branch", options: { back: true })
|
|
|
|
= dropdown_content do
|
|
|
|
.js-new-branch-dropdown
|