提交 f055bc05 编写于 作者: J José Valim

Optimize the code added in fa99de0b

上级 c5537c11
......@@ -241,16 +241,21 @@ def render_collection
end
def collection_with_template(template = @template)
segments, locals, as, template = [], @locals, @options[:as] || @template.variable_name, @template
segments, locals, template = [], @locals, @template
counter_name = template.counter_name
locals[counter_name] = -1
if @options[:as]
as = @options[:as]
counter = "#{as}_counter".to_sym
else
as = template.variable_name
counter = template.counter_name
end
locals[counter] = -1
@collection.each do |object|
locals[counter_name] += 1
locals["#{as.to_s}_counter".to_sym] = locals[counter_name] if as
locals[counter] += 1
locals[as] = object
segments << template.render(@view, locals)
end
......@@ -258,13 +263,18 @@ def collection_with_template(template = @template)
end
def collection_without_template(collection_paths = @collection_paths)
segments, locals, as = [], @locals, @options[:as]
index, template = -1, nil
segments, locals = [], @locals
index, template = -1, nil
if @options[:as]
as = @options[:as]
counter = "#{as}_counter"
end
@collection.each_with_index do |object, i|
template = find_template(collection_paths[i])
locals[template.counter_name] = (index += 1)
locals[as || template.variable_name] = object
locals[counter || template.counter_name] = (index += 1)
segments << template.render(@view, locals)
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册