Class: Fortitude::Rails::Renderer

Inherits:
Object
  • Object
show all
Defined in:
lib/fortitude/rails/renderer.rb

Class Method Summary collapse

Class Method Details

.render(widget_class, template_handler, local_assigns, is_partial, &block) ⇒ Object

TODO: Refactor this and render :widget => … support into one method somewhere.



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/fortitude/rails/renderer.rb', line 14

def render(widget_class, template_handler, local_assigns, is_partial, &block)
  if ::Fortitude::Erector.is_erector_widget_class?(widget_class)
    return ::Erector::Rails.render(widget_class, template_handler, local_assigns, is_partial, &block)
  end

  total_assigns = template_handler.assigns.symbolize_keys.merge(local_assigns.symbolize_keys)

  needed_assigns = if widget_class.extra_assigns == :use
    total_assigns
  else
    widget_class.extract_needed_assigns_from(total_assigns)
  end

  widget = widget_class.new(needed_assigns)
  template_handler.with_output_buffer do
    rendering_context = template_handler.controller.fortitude_rendering_context_for(template_handler, block)

    # TODO: Refactor this -- both passing it into the constructor and setting yield_block here is gross.
    #
    # We need to call #with_yield_block here, because we can actually be invoked with different yield blocks
    # in the case of "partial layouts" (which most people probably don't even realize exist); we use the same
    # RC for both the initial view rendering and for the partial layout, but they need different yield blocks.
    # Yuck, but this does the job.
    rendering_context.with_yield_block(block) do
      widget.render_to(rendering_context)
    end
    rendering_context.flush!
  end
end