mirror of
https://github.com/redmine/redmine.git
synced 2025-11-03 11:56:18 +01:00
Ability to render multiple partials with view hook (#17763).
git-svn-id: http://svn.redmine.org/redmine/trunk@13449 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -99,14 +99,22 @@ module Redmine
|
||||
{:only_path => true }
|
||||
end
|
||||
|
||||
# Helper method to directly render a partial using the context:
|
||||
# Helper method to directly render using the context,
|
||||
# render_options must be valid #render options.
|
||||
#
|
||||
# class MyHook < Redmine::Hook::ViewListener
|
||||
# render_on :view_issues_show_details_bottom, :partial => "show_more_data"
|
||||
# end
|
||||
#
|
||||
def self.render_on(hook, options={})
|
||||
# class MultipleHook < Redmine::Hook::ViewListener
|
||||
# render_on :view_issues_show_details_bottom,
|
||||
# {:partial => "show_more_data"},
|
||||
# {:partial => "show_even_more_data"}
|
||||
# end
|
||||
#
|
||||
def self.render_on(hook, *render_options)
|
||||
define_method hook do |context|
|
||||
render_options.map do |options|
|
||||
if context[:hook_caller].respond_to?(:render)
|
||||
context[:hook_caller].send(:render, {:locals => context}.merge(options))
|
||||
elsif context[:controller].is_a?(ActionController::Base)
|
||||
@@ -116,6 +124,7 @@ module Redmine
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def controller
|
||||
nil
|
||||
|
||||
@@ -45,6 +45,14 @@ class HookTest < ActionController::IntegrationTest
|
||||
VIEW
|
||||
end
|
||||
|
||||
class SingleRenderOn < Redmine::Hook::ViewListener
|
||||
render_on :view_welcome_index_left, :inline => 'SingleRenderOn 1'
|
||||
end
|
||||
|
||||
class MultipleRenderOn < Redmine::Hook::ViewListener
|
||||
render_on :view_welcome_index_left, {:inline => 'MultipleRenderOn 1'}, {:inline => 'MultipleRenderOn 2'}
|
||||
end
|
||||
|
||||
# Hooks that stores the call context
|
||||
class ContextTestHook < Redmine::Hook::ViewListener
|
||||
cattr_accessor :context
|
||||
@@ -105,4 +113,11 @@ VIEW
|
||||
assert_kind_of Hash, context[:request].params
|
||||
assert_kind_of AccountController, context[:hook_caller]
|
||||
end
|
||||
|
||||
def test_multiple_hooks
|
||||
Redmine::Hook.add_listener(SingleRenderOn)
|
||||
Redmine::Hook.add_listener(MultipleRenderOn)
|
||||
get '/'
|
||||
assert_equal 1, response.body.scan("SingleRenderOn 1 MultipleRenderOn 1 MultipleRenderOn 2").size
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user