Class: Redmine::Views::Builders::Structure

Inherits:
BlankSlate
  • Object
show all
Defined in:
lib/redmine/views/builders/structure.rb

Direct Known Subclasses

Json

Instance Method Summary collapse

Constructor Details

#initializeStructure

Returns a new instance of Structure.



24
25
26
# File 'lib/redmine/views/builders/structure.rb', line 24

def initialize
  @struct = [{}]
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(sym, *args, &block) ⇒ Object



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
# File 'lib/redmine/views/builders/structure.rb', line 36

def method_missing(sym, *args, &block)
  if args.any?
    if args.first.is_a?(Hash)
      if @struct.last.is_a?(Array)
        @struct.last << args.first unless block
      else
        @struct.last[sym] = args.first
      end
    else
      if @struct.last.is_a?(Array)
        @struct.last << (args.last || {}).merge(:value => args.first)
      else
        @struct.last[sym] = args.first
      end
    end
  end
  
  if block
    @struct << (args.first.is_a?(Hash) ? args.first : {})
    block.call(self)
    ret = @struct.pop
    if @struct.last.is_a?(Array)
      @struct.last << ret
    else
      if @struct.last.has_key?(sym) && @struct.last[sym].is_a?(Hash)
        @struct.last[sym].merge! ret
      else
        @struct.last[sym] = ret
      end
    end
  end
end

Instance Method Details

#array(tag, options = {}, &block) ⇒ Object



28
29
30
31
32
33
34
# File 'lib/redmine/views/builders/structure.rb', line 28

def array(tag, options={}, &block)
  @struct << []
  block.call(self)
  ret = @struct.pop
  @struct.last[tag] = ret
  @struct.last.merge!(options) if options
end

#outputObject



69
70
71
# File 'lib/redmine/views/builders/structure.rb', line 69

def output
  raise "Need to implement #{self.class.name}#output"
end