Sha256: 5644668219afa059dd15ec85663f8b83c87aa8e575e34c6112e6a471ae58f5fc

Contents?: true

Size: 1.85 KB

Versions: 91

Compression:

Stored size: 1.85 KB

Contents

# frozen_string_literal: true

module ActionView
  # This class defines the interface for a renderer. Each class that
  # subclasses +AbstractRenderer+ is used by the base +Renderer+ class to
  # render a specific type of object.
  #
  # The base +Renderer+ class uses its +render+ method to delegate to the
  # renderers. These currently consist of
  #
  #   PartialRenderer - Used for rendering partials
  #   TemplateRenderer - Used for rendering other types of templates
  #   StreamingTemplateRenderer - Used for streaming
  #
  # Whenever the +render+ method is called on the base +Renderer+ class, a new
  # renderer object of the correct type is created, and the +render+ method on
  # that new object is called in turn. This abstracts the setup and rendering
  # into a separate classes for partials and templates.
  class AbstractRenderer #:nodoc:
    delegate :find_template, :find_file, :template_exists?, :any_templates?, :with_fallbacks, :with_layout_format, :formats, to: :@lookup_context

    def initialize(lookup_context)
      @lookup_context = lookup_context
    end

    def render
      raise NotImplementedError
    end

    private

      def extract_details(options) # :doc:
        @lookup_context.registered_details.each_with_object({}) do |key, details|
          value = options[key]

          details[key] = Array(value) if value
        end
      end

      def instrument(name, **options) # :doc:
        options[:identifier] ||= (@template && @template.identifier) || @path

        ActiveSupport::Notifications.instrument("render_#{name}.action_view", options) do |payload|
          yield payload
        end
      end

      def prepend_formats(formats) # :doc:
        formats = Array(formats)
        return if formats.empty? || @lookup_context.html_fallback_for_js

        @lookup_context.formats = formats | @lookup_context.formats
      end
  end
end

Version data entries

91 entries across 91 versions & 5 rubygems

Version Path
actionview-5.2.8.1 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.8 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.7.1 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.7 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.6.3 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.6.2 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.6.1 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.6 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.4.6 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.5 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.4.5 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.4.4 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.4.3 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.4.2 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.4.1 lib/action_view/renderer/abstract_renderer.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/actionview-5.2.3/lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.4 lib/action_view/renderer/abstract_renderer.rb
actionview-5.2.4.rc1 lib/action_view/renderer/abstract_renderer.rb
zuora_connect_ui-0.9.2 vendor/ruby/2.6.0/gems/actionview-5.2.3/lib/action_view/renderer/abstract_renderer.rb
zuora_connect_ui-0.9.1 vendor/ruby/2.6.0/gems/actionview-5.2.3/lib/action_view/renderer/abstract_renderer.rb