Module: Osheet::Associations::ClassMethods

Defined in:
lib/osheet/associations.rb

Instance Method Summary collapse

Instance Method Details

#hm(collection) ⇒ Object

A has many esque association helper

- will provide a collection reader
- will define a 'singular' item method for adding to the collection
- will support adding to the collection both by black and template


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/osheet/associations.rb', line 13

def hm(collection)
  unless collection.to_s =~ /s$/
    raise ArgumentError, "association item names must end in 's'"
  end
  plural = collection.to_s
  singular = plural.to_s.sub(/s$/, '')
  klass = Osheet.const_get(singular.capitalize)

  # define collection reader
  self.send(:define_method, plural, Proc.new do
    set_ivar(plural, []) if get_ivar(plural).nil?
    get_ivar(plural)
  end)

  # define collection item writer
  self.send(:define_method, singular) do |*args, &block|
    set_ivar(plural, []) if get_ivar(plural).nil?
    push_ivar(plural, if self.respond_to?(:workbook)
      # on: worksheet, column, row
      # creating: column, row, cell
      worksheet = self.respond_to?(:worksheet) ? self.worksheet : self
      if self.workbook && (template = self.workbook.templates.get(singular, args.first))
        # add by template
        klass.new(self.workbook, worksheet, *args[1..-1], &template)
      else
        # add by block
        klass.new(self.workbook, worksheet, &block)
      end
    else
      # on: workbook
      # creating: worksheet
      if (template = self.templates.get(singular, args.first))
        # add by template
        klass.new(self, *args[1..-1], &template)
      else
        # add by block
        klass.new(self, &block)
      end
    end)
  end

end