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



66
67
68
# File 'lib/stache/mustache/handler.rb', line 66

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
55
56
57
58
59
60
61
62
63
# 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)

  # If the class is in the same directory as the template, the source of the template can be the
  # source of the class, and so we need to read the template source from the file system.
  # Matching against `module` may seem a bit hackish, but at worst it provides false positives
  # only for templates containing the word `module`, and reads the template again from the file
  # system.

  template_is_class = template.source.match(/module/) ? true : false

  # 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 #{template_is_class}
      template_name = "#{template.virtual_path.to_s}"
      file = Dir.glob(File.join(::Stache.template_base_path, template_name + "\.*" + mustache.template_extension)).first
      template_source = File.read(file)
    else
      template_source = '#{template.source.gsub(/'/, "\\\\'")}'
    end

    mustache.template = template_source
    mustache.virtual_path = '#{template.virtual_path.to_s}'
    mustache[:yield] = content_for(:layout)
    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



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/stache/mustache/handler.rb', line 71

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