Cleaner way to handle the replacement of watch links (#8071).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5320 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
1af6527e42
commit
e3dae9ddbf
@ -1,5 +1,5 @@
|
|||||||
# redMine - project management software
|
# Redmine - project management software
|
||||||
# Copyright (C) 2006-2007 Jean-Philippe Lang
|
# Copyright (C) 2006-2011 Jean-Philippe Lang
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or
|
# This program is free software; you can redistribute it and/or
|
||||||
# modify it under the terms of the GNU General Public License
|
# modify it under the terms of the GNU General Public License
|
||||||
@ -76,21 +76,13 @@ private
|
|||||||
|
|
||||||
def set_watcher(user, watching)
|
def set_watcher(user, watching)
|
||||||
@watched.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|
|
respond_to do |format|
|
||||||
format.html { redirect_to :back }
|
format.html { redirect_to :back }
|
||||||
format.js do
|
format.js do
|
||||||
render(:update) do |page|
|
render(:update) do |page|
|
||||||
replace_ids.each do |replace_id|
|
c = watcher_css(@watched)
|
||||||
page.replace_html replace_id, watcher_link(@watched, user, :replace => replace_ids)
|
page.select(".#{c}").each do |item|
|
||||||
|
page.replace_html item, watcher_link(@watched, user)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# redMine - project management software
|
# Redmine - project management software
|
||||||
# Copyright (C) 2006-2007 Jean-Philippe Lang
|
# Copyright (C) 2006-2011 Jean-Philippe Lang
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or
|
# This program is free software; you can redistribute it and/or
|
||||||
# modify it under the terms of the GNU General Public License
|
# modify it under the terms of the GNU General Public License
|
||||||
@ -17,27 +17,17 @@
|
|||||||
|
|
||||||
module WatchersHelper
|
module WatchersHelper
|
||||||
|
|
||||||
# Valid options
|
def watcher_tag(object, user, options={})
|
||||||
# * :id - the element id
|
content_tag("span", watcher_link(object, user), :class => watcher_css(object))
|
||||||
# * :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
|
end
|
||||||
|
|
||||||
# Valid options
|
def watcher_link(object, user)
|
||||||
# * :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?')
|
return '' unless user && user.logged? && object.respond_to?('watched_by?')
|
||||||
watched = object.watched_by?(user)
|
watched = object.watched_by?(user)
|
||||||
url = {:controller => 'watchers',
|
url = {:controller => 'watchers',
|
||||||
:action => (watched ? 'unwatch' : 'watch'),
|
:action => (watched ? 'unwatch' : 'watch'),
|
||||||
:object_type => object.class.to_s.underscore,
|
: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)),
|
link_to_remote((watched ? l(:button_unwatch) : l(:button_watch)),
|
||||||
{:url => url},
|
{:url => url},
|
||||||
:href => url_for(url),
|
:href => url_for(url),
|
||||||
@ -45,6 +35,11 @@ module WatchersHelper
|
|||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Returns the css class used to identify watch links for a given +object+
|
||||||
|
def watcher_css(object)
|
||||||
|
"#{object.class.to_s.underscore}-#{object.id}-watcher"
|
||||||
|
end
|
||||||
|
|
||||||
# Returns a comma separated list of users watching the given object
|
# Returns a comma separated list of users watching the given object
|
||||||
def watchers_list(object)
|
def watchers_list(object)
|
||||||
remove_allowed = User.current.allowed_to?("delete_#{object.class.name.underscore}_watchers".to_sym, object.project)
|
remove_allowed = User.current.allowed_to?("delete_#{object.class.name.underscore}_watchers".to_sym, object.project)
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
<div class="contextual">
|
<div class="contextual">
|
||||||
<%= 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_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 => 'new', :issue_id => @issue}, :class => 'icon icon-time-add' %>
|
<%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'new', :issue_id => @issue}, :class => 'icon icon-time-add' %>
|
||||||
<% replace_watcher ||= 'watcher' %>
|
<%= watcher_tag(@issue, User.current) %>
|
||||||
<%= watcher_tag(@issue, User.current, {:id => replace_watcher, :replace => ['watcher','watcher2']}) %>
|
|
||||||
<%= link_to_if_authorized l(:button_duplicate), {:controller => 'issues', :action => 'new', :project_id => @project, :copy_from => @issue }, :class => 'icon icon-duplicate' %>
|
<%= link_to_if_authorized l(:button_duplicate), {:controller => 'issues', :action => 'new', :project_id => @project, :copy_from => @issue }, :class => 'icon icon-duplicate' %>
|
||||||
<%= link_to_if_authorized l(:button_copy), {:controller => 'issue_moves', :action => 'new', :id => @issue, :copy_options => {:copy => 't'}}, :class => 'icon icon-copy' %>
|
<%= link_to_if_authorized l(:button_copy), {:controller => 'issue_moves', :action => 'new', :id => @issue, :copy_options => {:copy => 't'}}, :class => 'icon icon-copy' %>
|
||||||
<%= link_to_if_authorized l(:button_move), {:controller => 'issue_moves', :action => 'new', :id => @issue}, :class => 'icon icon-move' %>
|
<%= link_to_if_authorized l(:button_move), {:controller => 'issue_moves', :action => 'new', :id => @issue}, :class => 'icon icon-move' %>
|
||||||
|
@ -98,7 +98,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<div style="clear: both;"></div>
|
<div style="clear: both;"></div>
|
||||||
<%= render :partial => 'action_menu', :locals => {:replace_watcher => 'watcher2' } %>
|
<%= render :partial => 'action_menu' %>
|
||||||
|
|
||||||
<div style="clear: both;"></div>
|
<div style="clear: both;"></div>
|
||||||
<% if authorize_for('issues', 'edit') %>
|
<% if authorize_for('issues', 'edit') %>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Redmine - project management software
|
# Redmine - project management software
|
||||||
# Copyright (C) 2006-2008 Jean-Philippe Lang
|
# Copyright (C) 2006-2011 Jean-Philippe Lang
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or
|
# This program is free software; you can redistribute it and/or
|
||||||
# modify it under the terms of the GNU General Public License
|
# modify it under the terms of the GNU General Public License
|
||||||
@ -43,7 +43,7 @@ class WatchersControllerTest < ActionController::TestCase
|
|||||||
assert_difference('Watcher.count') do
|
assert_difference('Watcher.count') do
|
||||||
xhr :post, :watch, :object_type => 'issue', :object_id => '1'
|
xhr :post, :watch, :object_type => 'issue', :object_id => '1'
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_select_rjs :replace_html, 'watcher'
|
assert @response.body.include?('$$(".issue-1-watcher")')
|
||||||
end
|
end
|
||||||
assert Issue.find(1).watched_by?(User.find(3))
|
assert Issue.find(1).watched_by?(User.find(3))
|
||||||
end
|
end
|
||||||
@ -57,33 +57,12 @@ class WatchersControllerTest < ActionController::TestCase
|
|||||||
end
|
end
|
||||||
end
|
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
|
def test_unwatch
|
||||||
@request.session[:user_id] = 3
|
@request.session[:user_id] = 3
|
||||||
assert_difference('Watcher.count', -1) do
|
assert_difference('Watcher.count', -1) do
|
||||||
xhr :post, :unwatch, :object_type => 'issue', :object_id => '2'
|
xhr :post, :unwatch, :object_type => 'issue', :object_id => '2'
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_select_rjs :replace_html, 'watcher'
|
assert @response.body.include?('$$(".issue-2-watcher")')
|
||||||
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
|
end
|
||||||
assert !Issue.find(1).watched_by?(User.find(3))
|
assert !Issue.find(1).watched_by?(User.find(3))
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user