Fix some errors

This commit is contained in:
ccocchi 2012-03-27 17:07:30 +02:00
parent 35ba212214
commit d9e93b2c53
3 changed files with 17 additions and 8 deletions

View File

@ -71,10 +71,10 @@ module RablFastJson
@template.merge!(t.source)
end
def object(data)
return if data === false
def object(data, options = {})
data, name = extract_data_and_name(data)
@template.data, @template.root_name = data, name
@template.data = data
@template.root_name = options[:root] || name
end
protected

View File

@ -9,6 +9,13 @@ module RablFastJson
@source = {}
end
#
# def data=(symbol)
# raise "Data passed directly to template should be a symbol" if !symbol.is_a?(Symbol)
# @data = symbol
# end
#
def get_object_from_context
@object = @context.instance_variable_get(@data) if @data
end
@ -29,8 +36,9 @@ module RablFastJson
def partial(template_path, options = {})
raise "No object was given to partial" if options[:object].blank?
object = options[:object]
template = Library.instance.get(template_path, @context)
template.render_resource(options[:object])
object.respond_to?(:each) ? template.render_collection(object) : template.render_resource(object)
end
def render
@ -52,7 +60,7 @@ module RablFastJson
when Proc
instance_exec data, &value # node
when Array # node with condition
next output if !value.first.call(data)
next output if !instance_exec data, &(value.first) #value.first.call(data)
instance_exec data, &(value.last)
when Hash
current_value = value.dup
@ -77,5 +85,6 @@ module RablFastJson
collection ||= @object
collection.inject([]) { |output, o| output << render_resource(o, source) }
end
end
end

View File

@ -139,6 +139,6 @@ class CompilerTest < ActiveSupport::TestCase
})
assert_equal({ :user => { :_data => :@user, :id => :id } }, t.source)
assert_nil t.data
assert_equal false, t.data
end
end