From: Eric Davis Date: Thu, 3 Dec 2009 18:41:00 +0000 (+0000) Subject: Add a second action menu to IssuesController#show. (#4331) X-Git-Tag: 0.9.0~143 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e02da72947d21c85a86f49e2bdd98d06a2951939;p=redmine.git Add a second action menu to IssuesController#show. (#4331) Will have the update, log time, watch, copy, etc buttons. Had to rework how the watchers button works since it requires a unique DOM id for the Ajax response. Also modified the WatchersController to be able to replace multiple sections of the page, e.g. two Watch links. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3119 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/controllers/watchers_controller.rb b/app/controllers/watchers_controller.rb index 3d4ed54dd..694718e28 100644 --- a/app/controllers/watchers_controller.rb +++ b/app/controllers/watchers_controller.rb @@ -72,9 +72,24 @@ private def set_watcher(user, watching) @watched.set_watcher(user, watching) + if params[:replace].present? + if params[:replace].is_a? Array + replace_ids = params[:replace] + else + replace_ids = [params[:replace]] + end + else + replace_ids = 'watcher' + end respond_to do |format| format.html { redirect_to :back } - format.js { render(:update) {|page| page.replace_html 'watcher', watcher_link(@watched, user)} } + format.js do + render(:update) do |page| + replace_ids.each do |replace_id| + page.replace_html replace_id, watcher_link(@watched, user, :replace => replace_ids) + end + end + end end rescue ::ActionController::RedirectBackError render :text => (watching ? 'Watcher added.' : 'Watcher removed.'), :layout => true diff --git a/app/helpers/watchers_helper.rb b/app/helpers/watchers_helper.rb index 333b0d299..3529b8e00 100644 --- a/app/helpers/watchers_helper.rb +++ b/app/helpers/watchers_helper.rb @@ -16,17 +16,28 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. module WatchersHelper - def watcher_tag(object, user) - content_tag("span", watcher_link(object, user), :id => 'watcher') + + # Valid options + # * :id - the element id + # * :replace - a string or array of element ids that will be + # replaced + def watcher_tag(object, user, options={:replace => 'watcher'}) + id = options[:id] + id ||= options[:replace] if options[:replace].is_a? String + content_tag("span", watcher_link(object, user, options), :id => id) end - def watcher_link(object, user) + # Valid options + # * :replace - a string or array of element ids that will be + # replaced + def watcher_link(object, user, options={:replace => 'watcher'}) return '' unless user && user.logged? && object.respond_to?('watched_by?') watched = object.watched_by?(user) url = {:controller => 'watchers', :action => (watched ? 'unwatch' : 'watch'), :object_type => object.class.to_s.underscore, - :object_id => object.id} + :object_id => object.id, + :replace => options[:replace]} link_to_remote((watched ? l(:button_unwatch) : l(:button_watch)), {:url => url}, :href => url_for(url), diff --git a/app/views/issues/_action_menu.rhtml b/app/views/issues/_action_menu.rhtml new file mode 100644 index 000000000..390488e6d --- /dev/null +++ b/app/views/issues/_action_menu.rhtml @@ -0,0 +1,9 @@ +
+<%= link_to_if_authorized(l(:button_update), {:controller => 'issues', :action => 'edit', :id => @issue }, :onclick => 'showAndScrollTo("update", "notes"); return false;', :class => 'icon icon-edit', :accesskey => accesskey(:edit)) %> +<%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'edit', :issue_id => @issue}, :class => 'icon icon-time-add' %> +<% replace_watcher ||= 'watcher' %> +<%= watcher_tag(@issue, User.current, {:id => replace_watcher, :replace => ['watcher','watcher2']}) %> +<%= link_to_if_authorized l(:button_copy), {:controller => 'issues', :action => 'new', :project_id => @project, :copy_from => @issue }, :class => 'icon icon-copy' %> +<%= link_to_if_authorized l(:button_move), {:controller => 'issues', :action => 'move', :id => @issue }, :class => 'icon icon-move' %> +<%= link_to_if_authorized l(:button_delete), {:controller => 'issues', :action => 'destroy', :id => @issue}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %> +
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index 73262bef6..914e55729 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -1,11 +1,4 @@ -
-<%= link_to_if_authorized(l(:button_update), {:controller => 'issues', :action => 'edit', :id => @issue }, :onclick => 'showAndScrollTo("update", "notes"); return false;', :class => 'icon icon-edit', :accesskey => accesskey(:edit)) %> -<%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'edit', :issue_id => @issue}, :class => 'icon icon-time-add' %> -<%= watcher_tag(@issue, User.current) %> -<%= link_to_if_authorized l(:button_copy), {:controller => 'issues', :action => 'new', :project_id => @project, :copy_from => @issue }, :class => 'icon icon-copy' %> -<%= link_to_if_authorized l(:button_move), {:controller => 'issues', :action => 'move', :id => @issue }, :class => 'icon icon-move' %> -<%= link_to_if_authorized l(:button_delete), {:controller => 'issues', :action => 'destroy', :id => @issue}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %> -
+<%= render :partial => 'action_menu' %>

<%= @issue.tracker.name %> #<%= @issue.id %>

@@ -93,6 +86,9 @@ <%= render :partial => 'history', :locals => { :journals => @journals } %> <% end %> + +<%= render :partial => 'action_menu', :locals => {:replace_watcher => 'watcher2' } %> +
<% if authorize_for('issues', 'edit') %> diff --git a/test/functional/watchers_controller_test.rb b/test/functional/watchers_controller_test.rb index d36f7831c..cf977887e 100644 --- a/test/functional/watchers_controller_test.rb +++ b/test/functional/watchers_controller_test.rb @@ -47,6 +47,16 @@ class WatchersControllerTest < ActionController::TestCase end assert Issue.find(1).watched_by?(User.find(3)) end + + def test_watch_with_multiple_replacements + @request.session[:user_id] = 3 + assert_difference('Watcher.count') do + xhr :post, :watch, :object_type => 'issue', :object_id => '1', :replace => ['watch_item_1','watch_item_2'] + assert_response :success + assert_select_rjs :replace_html, 'watch_item_1' + assert_select_rjs :replace_html, 'watch_item_2' + end + end def test_unwatch @request.session[:user_id] = 3 @@ -57,7 +67,18 @@ class WatchersControllerTest < ActionController::TestCase end assert !Issue.find(1).watched_by?(User.find(3)) end - + + def test_unwatch_with_multiple_replacements + @request.session[:user_id] = 3 + assert_difference('Watcher.count', -1) do + xhr :post, :unwatch, :object_type => 'issue', :object_id => '2', :replace => ['watch_item_1', 'watch_item_2'] + assert_response :success + assert_select_rjs :replace_html, 'watch_item_1' + assert_select_rjs :replace_html, 'watch_item_2' + end + assert !Issue.find(1).watched_by?(User.find(3)) + end + def test_new_watcher @request.session[:user_id] = 2 assert_difference('Watcher.count') do