Class: Stache::Mustache::Handler

Inherits:
Object
  • Object
show all
Includes:
Util.av_template_class(:Handlers)::Compilable
Defined in:
lib/stache/mustache/handler.rb

Overview

From HAML, thanks a bunch, guys! In Rails 3.1+, template handlers don’t inherit from anything. In <= 3.0, they do. To avoid messy logic figuring this out, we just inherit from whatever the ERB handler does.

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.call(template) ⇒ Object

In Rails 3.1+, #call takes the place of #compile



57
58
59
# File 'lib/stache/mustache/handler.rb', line 57

def self.call(template)
  new.compile(template)
end

Instance Method Details

#compile(template) ⇒ Object

Thanks to Mustache::Rails3 for getting us most of the way home here



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
# File 'lib/stache/mustache/handler.rb', line 14

def compile(template)
  #
  # get a custom Mustache, or the default Stache::Mustache::View
  mustache_class = mustache_class_from_template(template)

  # Return a string that will be eval'd in the context of the ActionView, ugly, but it works.
  <<-MUSTACHE
    mustache = ::#{mustache_class}.new
    mustache.view = self

    # If we are rendering an abstract Stache::View class, don't render any template.
    if #{mustache_class} == Stache::Mustache::View
      template_source = '#{template.source.gsub(/'/, "\\\\'")}'
    else
      template_name = "#{template.virtual_path.to_s}.#{template.formats.first.to_s}."+mustache.template_extension
      template_source = File.read(File.join(::Stache.template_base_path, template_name))
    end

    mustache.template = template_source
    mustache.virtual_path = '#{template.virtual_path.to_s}'
    mustache.context.update(local_assigns)
    variables = controller.instance_variable_names
    variables -= %w[@template]

    if controller.respond_to?(:protected_instance_variables)
      variables -= controller.protected_instance_variables
    end

    variables.each do |name|
      mustache.instance_variable_set(name, controller.instance_variable_get(name))
    end

    # Declaring an +attr_reader+ for each instance variable in the
    # Stache::Mustache::View subclass makes them available to your templates.
    mustache.class.class_eval do
      attr_reader *variables.map { |name| name.sub(/^@/, '').to_sym }
    end

    mustache.render.html_safe
  MUSTACHE
end

#mustache_class_from_template(template) ⇒ Object

suss out a constant name for the given template



62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/stache/mustache/handler.rb', line 62

def mustache_class_from_template(template)
  # If we don't have a source template to render, return an abstract view class.
  # This is normally used with rspec-rails. You probably never want to normally
  # render a bare Stache::View
  if template.source.empty?
    return Stache::Mustache::View
  end

  const_name = ActiveSupport::Inflector.camelize(template.virtual_path.to_s)
  const_name = "#{Stache.wrapper_module_name}::#{const_name}" if Stache.wrapper_module_name
  begin
    const_name.constantize
  rescue NameError, LoadError => e
    # Only rescue NameError/LoadError concerning our mustache_class
    if e.message.match(/#{const_name}$/)
      Stache::Mustache::View
    else
      raise e
    end
  end
end