summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-09-17 00:53:30 -0700
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-09-17 00:53:30 -0700
commitb5442eb5643b10a0e6539b1081ccf048d555d38a (patch)
tree1ed9acb03c944420d1c8dd4cf4887756d39ffa5e /app
parent7c7e9b13e724c622929ee62f4daf632d3c5b707f (diff)
parent465e40d3a663944b5aacf3e53a63158a7812f219 (diff)
downloadgitlab-ce-b5442eb5643b10a0e6539b1081ccf048d555d38a.tar.gz
Merge pull request #1479 from tsigo/ref_switch
Extract ref switcher into a partial
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/projects.js.coffee6
-rw-r--r--app/views/commits/_head.html.haml7
-rw-r--r--app/views/projects/_refs.html.haml3
-rw-r--r--app/views/refs/_head.html.haml5
-rw-r--r--app/views/shared/_ref_switcher.html.haml5
5 files changed, 12 insertions, 14 deletions
diff --git a/app/assets/javascripts/projects.js.coffee b/app/assets/javascripts/projects.js.coffee
index 14738e145e5..008fa8e9116 100644
--- a/app/assets/javascripts/projects.js.coffee
+++ b/app/assets/javascripts/projects.js.coffee
@@ -10,11 +10,15 @@ window.Projects = ->
$('form #project_default_branch').chosen()
disableButtonIfEmptyField '#project_name', '.project-submit'
-# Git clone panel switcher
$ ->
+ # Git clone panel switcher
scope = $ '.project_clone_holder'
if scope.length > 0
$('a, button', scope).click ->
$('a, button', scope).removeClass 'active'
$(@).addClass 'active'
$('#project_clone', scope).val $(@).data 'clone'
+
+ # Ref switcher
+ $('.project-refs-select').on 'change', ->
+ $(@).parents('form').submit()
diff --git a/app/views/commits/_head.html.haml b/app/views/commits/_head.html.haml
index 5a09d82aa61..a8111a72ed5 100644
--- a/app/views/commits/_head.html.haml
+++ b/app/views/commits/_head.html.haml
@@ -1,9 +1,5 @@
%ul.nav.nav-tabs
- %li
- = form_tag switch_project_refs_path(@project), method: :get, class: "project-refs-form" do
- = select_tag "ref", grouped_options_refs, onchange: "$(this.form).trigger('submit');", class: "project-refs-select chosen"
- = hidden_field_tag :destination, "commits"
-
+ %li= render partial: 'shared/ref_switcher', locals: {destination: 'commits'}
%li{class: "#{'active' if current_page?(project_commits_path(@project)) }"}
= link_to project_commits_path(@project) do
Commits
@@ -20,7 +16,6 @@
Tags
%span.badge= @project.repo.tag_count
-
- if current_page?(project_commits_path(@project)) && current_user.private_token
%li.right
%span.rss-icon
diff --git a/app/views/projects/_refs.html.haml b/app/views/projects/_refs.html.haml
deleted file mode 100644
index dc1f3a282d8..00000000000
--- a/app/views/projects/_refs.html.haml
+++ /dev/null
@@ -1,3 +0,0 @@
-= form_tag switch_project_refs_path(@project), method: :get, class: "project-refs-form" do
- = select_tag "ref", grouped_options_refs, onchange: "this.form.submit();", class: "project-refs-select chosen"
- = hidden_field_tag :destination, destination
diff --git a/app/views/refs/_head.html.haml b/app/views/refs/_head.html.haml
index 94603f0a42a..3592f5737ce 100644
--- a/app/views/refs/_head.html.haml
+++ b/app/views/refs/_head.html.haml
@@ -1,9 +1,6 @@
%ul.nav.nav-tabs
%li
- = form_tag switch_project_refs_path(@project), method: :get, class: "project-refs-form", remote: true do
- = select_tag "ref", grouped_options_refs, onchange: "$(this.form).trigger('submit');", class: "project-refs-select chosen"
- = hidden_field_tag :destination, "tree"
- = hidden_field_tag :path, params[:path]
+ = render partial: 'shared/ref_switcher', locals: {destination: 'tree', path: params[:path]}
%li{class: "#{'active' if (controller.controller_name == "refs") }"}
= link_to tree_project_ref_path(@project, @ref) do
Source
diff --git a/app/views/shared/_ref_switcher.html.haml b/app/views/shared/_ref_switcher.html.haml
new file mode 100644
index 00000000000..e0c89522c11
--- /dev/null
+++ b/app/views/shared/_ref_switcher.html.haml
@@ -0,0 +1,5 @@
+= form_tag switch_project_refs_path(@project), method: :get, class: "project-refs-form" do
+ = select_tag "ref", grouped_options_refs, class: "project-refs-select chosen"
+ = hidden_field_tag :destination, destination
+ - if respond_to?(:path)
+ = hidden_field_tag :path, path