summaryrefslogtreecommitdiff
path: root/app/views/shared/_ref_switcher.html.haml
blob: 6d7c9633913791810a510d0035f7069bfb0d28ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- show_new_branch_form = show_new_repo? && show_create && can?(current_user, :push_code, @project)
- dropdown_toggle_text = @ref || @project.default_branch
= form_tag switch_project_refs_path(@project), method: :get, class: "project-refs-form" do
  = hidden_field_tag :destination, destination
  - if defined?(path)
    = hidden_field_tag :path, path
  - @options && @options.each do |key, value|
    = hidden_field_tag key, value, id: nil
  .dropdown
    = dropdown_toggle dropdown_toggle_text, { toggle: "dropdown", selected: dropdown_toggle_text, ref: @ref, refs_url: refs_project_path(@project), field_name: 'ref', submit_form_on_click: true, visit: true }, { toggle_class: "js-project-refs-dropdown" }
    .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