2017-07-23 11:36:41 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2011-05-01 04:33:30 -04:00
|
|
|
module ActionView
|
|
|
|
# This is the main entry point for rendering. It basically delegates
|
|
|
|
# to other objects like TemplateRenderer and PartialRenderer which
|
|
|
|
# actually renders the template.
|
2013-04-18 14:39:04 -04:00
|
|
|
#
|
|
|
|
# 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.
|
2011-05-01 04:33:30 -04:00
|
|
|
class Renderer
|
2011-05-03 18:12:11 -04:00
|
|
|
attr_accessor :lookup_context
|
2011-05-01 04:33:30 -04:00
|
|
|
|
2011-05-03 18:12:11 -04:00
|
|
|
def initialize(lookup_context)
|
2011-05-01 04:33:30 -04:00
|
|
|
@lookup_context = lookup_context
|
|
|
|
end
|
|
|
|
|
2015-11-15 00:00:20 -05:00
|
|
|
# Main render entry point shared by Action View and Action Controller.
|
2011-05-03 10:51:08 -04:00
|
|
|
def render(context, options)
|
2019-02-13 20:59:21 -05:00
|
|
|
render_to_object(context, options).body
|
|
|
|
end
|
|
|
|
|
|
|
|
def render_to_object(context, options) # :nodoc:
|
2011-05-03 10:51:08 -04:00
|
|
|
if options.key?(:partial)
|
2019-02-13 20:59:21 -05:00
|
|
|
render_partial_to_object(context, options)
|
2011-05-03 10:51:08 -04:00
|
|
|
else
|
2019-02-13 20:59:21 -05:00
|
|
|
render_template_to_object(context, options)
|
2011-05-03 10:51:08 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-01 04:33:30 -04:00
|
|
|
# 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.
|
2011-05-01 06:37:57 -04:00
|
|
|
def render_body(context, options)
|
2011-05-01 04:33:30 -04:00
|
|
|
if options.key?(:partial)
|
2011-05-01 06:56:04 -04:00
|
|
|
[render_partial(context, options)]
|
2011-05-01 04:33:30 -04:00
|
|
|
else
|
2011-05-03 18:12:11 -04:00
|
|
|
StreamingTemplateRenderer.new(@lookup_context).render(context, options)
|
2011-05-01 04:33:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-03-26 15:24:17 -04:00
|
|
|
# Direct access to template rendering.
|
2011-05-01 06:56:04 -04:00
|
|
|
def render_template(context, options) #:nodoc:
|
2019-02-13 20:59:21 -05:00
|
|
|
render_template_to_object(context, options).body
|
2011-05-01 04:33:30 -04:00
|
|
|
end
|
|
|
|
|
2011-05-01 06:56:04 -04:00
|
|
|
# Direct access to partial rendering.
|
|
|
|
def render_partial(context, options, &block) #:nodoc:
|
2019-02-13 20:59:21 -05:00
|
|
|
render_partial_to_object(context, options, &block).body
|
2011-05-01 04:33:30 -04:00
|
|
|
end
|
2017-06-07 16:17:34 -04:00
|
|
|
|
|
|
|
def cache_hits # :nodoc:
|
|
|
|
@cache_hits ||= {}
|
|
|
|
end
|
2019-02-13 20:59:21 -05:00
|
|
|
|
|
|
|
def render_template_to_object(context, options) #:nodoc:
|
|
|
|
TemplateRenderer.new(@lookup_context).render(context, options)
|
|
|
|
end
|
|
|
|
|
|
|
|
def render_partial_to_object(context, options, &block) #:nodoc:
|
|
|
|
PartialRenderer.new(@lookup_context).render(context, options, block)
|
|
|
|
end
|
2011-05-01 04:33:30 -04:00
|
|
|
end
|
2011-05-03 18:12:11 -04:00
|
|
|
end
|