2012-02-27 13:49:34 +00:00
|
|
|
require 'singleton'
|
|
|
|
|
|
|
|
module RablFastJson
|
|
|
|
class Library
|
|
|
|
include Singleton
|
|
|
|
|
2012-03-02 13:39:20 +00:00
|
|
|
attr_accessor :view_renderer
|
|
|
|
|
2012-02-27 13:49:34 +00:00
|
|
|
def initialize
|
|
|
|
@cached_templates = {}
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_rendered_template(source, context)
|
|
|
|
path = context.instance_variable_get(:@virtual_path)
|
|
|
|
@view_renderer = context.instance_variable_get(:@view_renderer)
|
2012-03-02 10:32:11 +00:00
|
|
|
|
2012-03-27 16:35:36 +00:00
|
|
|
compiled_template = get_compiled_template(path, source)
|
2012-02-27 13:49:34 +00:00
|
|
|
compiled_template.context = context
|
2012-03-22 10:24:55 +00:00
|
|
|
body = compiled_template.render
|
|
|
|
ActiveSupport::JSON.encode(compiled_template.has_root_name? ? { compiled_template.root_name => body } : body)
|
2012-02-27 13:49:34 +00:00
|
|
|
end
|
|
|
|
|
2012-03-27 16:35:36 +00:00
|
|
|
def get_compiled_template(path, source)
|
2012-03-22 10:24:55 +00:00
|
|
|
# @cached_templates[path] ||=
|
2012-03-27 16:35:36 +00:00
|
|
|
Compiler.new.compile_source(source)
|
2012-02-27 13:49:34 +00:00
|
|
|
end
|
|
|
|
|
2012-03-27 16:35:36 +00:00
|
|
|
def get(path)
|
2012-02-27 13:49:34 +00:00
|
|
|
template = @cached_templates[path]
|
|
|
|
return template if !template.nil?
|
|
|
|
t = @view_renderer.lookup_context.find_template(path, [], false)
|
2012-03-27 16:35:36 +00:00
|
|
|
get_compiled_template(path, t.source)
|
2012-02-27 13:49:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|