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 71 72 73 74 75 76 77 78 79 80 81 82 83
|
# TILT Template
if defined?(Tilt)
class RablTemplate < Tilt::Template
def initialize_engine
return if defined?(::Rabl)
require_template_library 'rabl'
end
def prepare
#left empty so each invocation has a new hash of options and new rabl engine for thread safety
end
def evaluate(context_scope, locals, &block)
options = @options.merge(:source_location => file)
::Rabl::Engine.new(data, options).apply(context_scope, locals, &block).render
end
end
Tilt.register 'rabl', RablTemplate
end
# Rails 2.X Template
if defined?(ActionView) && defined?(Rails) && Rails.respond_to?(:version) && Rails.version.to_s =~ /^2/
require 'action_view/base'
require 'action_view/template'
module ActionView
module TemplateHandlers
class RablHandler < TemplateHandler
include Compilable
def compile(template) %{
::Rabl::Engine.new(#{template.source.inspect}, { :format => #{template.format.inspect} }).
render(self, assigns.merge(local_assigns))
} end
end
end
end
ActionView::Template.register_template_handler :rabl, ActionView::TemplateHandlers::RablHandler
end
# Rails 3.X / 4.X / 5.X Template
if defined?(ActionView) && defined?(Rails) && Rails.respond_to?(:version) && Rails.version.to_s =~ /^[345]/
module ActionView
module Template::Handlers
class Rabl
class_attribute :default_format
self.default_format = Mime[:json]
def self.call(template)
source = template.source
%{ ::Rabl::Engine.new(#{source.inspect}).
apply(self, assigns.merge(local_assigns)).
render }
end # call
end # rabl class
end # handlers
end
ActionView::Template.register_template_handler :rabl, ActionView::Template::Handlers::Rabl
end
# Rails 6.X / 7.X / 8.X Template
if defined?(ActionView) && defined?(Rails) && Rails.respond_to?(:version) && Rails.version.to_s =~ /^[678]/
module ActionView
module Template::Handlers
class Rabl
class_attribute :default_format
self.default_format = :json
def self.call(template, source)
%{ ::Rabl::Engine.new(#{source.inspect}).
apply(self, assigns.merge(local_assigns)).
render }
end # call
end # rabl class
end # handlers
end
ActionView::Template.register_template_handler :rabl, ActionView::Template::Handlers::Rabl
end
|