Class: ActionView::Renderer
- Inherits:
-
Object
- Object
- ActionView::Renderer
- Defined in:
- lib/action_view/renderer/renderer.rb
Overview
This is the main entry point for rendering. It basically delegates to other objects like TemplateRenderer and PartialRenderer which actually renders the template.
The Renderer will parse the options from the render
or render_body
method and render a partial or a template based on the options. The TemplateRenderer
and PartialRenderer
objects are wrappers which do all the setup and logic necessary to render a view and a new object is created each time render
is called.
Instance Attribute Summary collapse
-
#lookup_context ⇒ Object
Returns the value of attribute lookup_context.
Instance Method Summary collapse
-
#cache_hits ⇒ Object
:nodoc:.
-
#initialize(lookup_context) ⇒ Renderer
constructor
A new instance of Renderer.
-
#render(context, options) ⇒ Object
Main render entry point shared by Action View and Action Controller.
-
#render_body(context, options) ⇒ Object
Render but returns a valid Rack body.
-
#render_partial(context, options, &block) ⇒ Object
Direct access to partial rendering.
-
#render_partial_to_object(context, options, &block) ⇒ Object
:nodoc:.
-
#render_template(context, options) ⇒ Object
Direct access to template rendering.
-
#render_template_to_object(context, options) ⇒ Object
:nodoc:.
-
#render_to_object(context, options) ⇒ Object
:nodoc:.
Constructor Details
#initialize(lookup_context) ⇒ Renderer
Returns a new instance of Renderer.
16 17 18 |
# File 'lib/action_view/renderer/renderer.rb', line 16 def initialize(lookup_context) @lookup_context = lookup_context end |
Instance Attribute Details
#lookup_context ⇒ Object
Returns the value of attribute lookup_context.
14 15 16 |
# File 'lib/action_view/renderer/renderer.rb', line 14 def lookup_context @lookup_context end |
Instance Method Details
#cache_hits ⇒ Object
:nodoc:
56 57 58 |
# File 'lib/action_view/renderer/renderer.rb', line 56 def cache_hits # :nodoc: @cache_hits ||= {} end |
#render(context, options) ⇒ Object
Main render entry point shared by Action View and Action Controller.
21 22 23 |
# File 'lib/action_view/renderer/renderer.rb', line 21 def render(context, ) render_to_object(context, ).body end |
#render_body(context, options) ⇒ Object
Render but returns a valid Rack body. If fibers are defined, we return a streaming body that renders the template piece by piece.
Note that partials are not supported to be rendered with streaming, so in such cases, we just wrap them in an array.
38 39 40 41 42 43 44 |
# File 'lib/action_view/renderer/renderer.rb', line 38 def render_body(context, ) if .key?(:partial) [render_partial(context, )] else StreamingTemplateRenderer.new(@lookup_context).render(context, ) end end |
#render_partial(context, options, &block) ⇒ Object
Direct access to partial rendering.
52 53 54 |
# File 'lib/action_view/renderer/renderer.rb', line 52 def render_partial(context, , &block) #:nodoc: render_partial_to_object(context, , &block).body end |
#render_partial_to_object(context, options, &block) ⇒ Object
:nodoc:
64 65 66 |
# File 'lib/action_view/renderer/renderer.rb', line 64 def render_partial_to_object(context, , &block) #:nodoc: PartialRenderer.new(@lookup_context).render(context, , block) end |
#render_template(context, options) ⇒ Object
Direct access to template rendering.
47 48 49 |
# File 'lib/action_view/renderer/renderer.rb', line 47 def render_template(context, ) #:nodoc: render_template_to_object(context, ).body end |
#render_template_to_object(context, options) ⇒ Object
:nodoc:
60 61 62 |
# File 'lib/action_view/renderer/renderer.rb', line 60 def render_template_to_object(context, ) #:nodoc: TemplateRenderer.new(@lookup_context).render(context, ) end |
#render_to_object(context, options) ⇒ Object
:nodoc:
25 26 27 28 29 30 31 |
# File 'lib/action_view/renderer/renderer.rb', line 25 def render_to_object(context, ) # :nodoc: if .key?(:partial) render_partial_to_object(context, ) else render_template_to_object(context, ) end end |