aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/partial_template.rb
blob: 0cf996ca0464a1c516deb9e5d2276dd1d2a46202 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
module ActionView #:nodoc:
  class PartialTemplate < Template #:nodoc:
    attr_reader :variable_name, :object

    def initialize(view, partial_path, object = nil, locals = {})
      @view_controller = view.controller if view.respond_to?(:controller)
      set_path_and_variable_name!(partial_path)
      super(view, @path, true, locals)
      add_object_to_local_assigns!(object)

      # This is needed here in order to compile template with knowledge of 'counter'
      initialize_counter!

      # Prepare early. This is a performance optimization for partial collections
      prepare!
    end

    def render
      ActionController::Base.benchmark("Rendered #{@path.path_without_format_and_extension}", Logger::DEBUG, false) do
        @handler.render(self)
      end
    end

    def render_member(object)
      @locals[:object] = @locals[@variable_name] = object

      template = render_template
      @locals[@counter_name] += 1
      @locals.delete(@variable_name)
      @locals.delete(:object)

      template
    end

    def counter=(num)
      @locals[@counter_name] = num
    end

    private
      def add_object_to_local_assigns!(object)
        @locals[:object] ||=
          @locals[@variable_name] ||=
            if object.is_a?(ActionView::Base::ObjectWrapper)
              object.value
            else
              object
            end || @view_controller.instance_variable_get("@#{variable_name}")
      end

      def set_path_and_variable_name!(partial_path)
        if partial_path.include?('/')
          @variable_name = File.basename(partial_path)
          @path = "#{File.dirname(partial_path)}/_#{@variable_name}"
        elsif @view_controller
          @variable_name = partial_path
          @path = "#{@view_controller.class.controller_path}/_#{@variable_name}"
        else
          @variable_name = partial_path
          @path = "_#{@variable_name}"
        end

        @variable_name = @variable_name.sub(/\..*$/, '').to_sym
      end

      def initialize_counter!
        @counter_name ||= "#{@variable_name}_counter".to_sym
        @locals[@counter_name] = 0
      end
  end
end