Class: BlockHelpers::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/block_helpers.rb

Class Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args, &block) ⇒ Object (protected)



81
82
83
84
85
86
87
88
# File 'lib/block_helpers.rb', line 81

def method_missing(method, *args, &block)
  if helper.respond_to?(method)
    self.class_eval "def #{method}(*args, &block); helper.send('#{method}', *args, &block); end"
    self.send(method, *args, &block)
  else
    super
  end
end

Class Attribute Details

.current_helperObject

Returns the value of attribute current_helper.



56
57
58
# File 'lib/block_helpers.rb', line 56

def current_helper
  @current_helper
end

.current_parent_block_helperObject

Returns the value of attribute current_parent_block_helper.



56
57
58
# File 'lib/block_helpers.rb', line 56

def current_parent_block_helper
  @current_parent_block_helper
end

Class Method Details

.inherited(klass) ⇒ Object



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
# File 'lib/block_helpers.rb', line 7

def inherited(klass)
  # Define the helper method
  # e.g. for a class:
  #   class HelloHelper < BlockHelpers::Base
  #     #.....
  #   end
  #
  # then we define a helper method 'hello_helper'
  #
  method_name = klass.name.split('::').last.underscore
  klass.parent.class_eval %(
    def #{method_name}(*args, &block)
      
      # Get the current helper object which has all the normal helper methods
      if self.is_a?(BlockHelpers::Base) 
        top_level_helper = self.helper
        parent_block_helper = self
      else
        top_level_helper = self
        parent_block_helper = nil
      end
      
      # We need to save the current helper and parent block helper in the class so that
      # it's visible to the renderer's 'initialize' method...
      #{klass.name}.current_helper = top_level_helper
      #{klass.name}.current_parent_block_helper = parent_block_helper
      renderer = #{klass.name}.new(*args)
      # ...then set them anyway on the renderer so that renderer methods can use it
      renderer.send(:helper=, top_level_helper)
      renderer.send(:parent=, parent_block_helper)

      body = block ? capture(renderer, &block) : nil
      processed_body = renderer.display(body)
      if processed_body

        # If concat is the old rails/merb version with 2 args...
        if top_level_helper.method(:concat).arity == 2
          concat processed_body, binding
        # ...otherwise call with one arg
        else
          concat processed_body
        end
        
      end
      renderer
    end
  )
end

Instance Method Details

#display(body) ⇒ Object



60
61
62
# File 'lib/block_helpers.rb', line 60

def display(body)
  body
end

#respond_to?(method) ⇒ Boolean

Returns:

  • (Boolean)


64
65
66
# File 'lib/block_helpers.rb', line 64

def respond_to?(method)
  super or helper.respond_to?(method)
end