Class: SimpleTable::Row

Inherits:
Tag
  • Object
show all
Defined in:
lib/simple_table/row.rb

Instance Attribute Summary collapse

Attributes inherited from Tag

#options, #parent

Instance Method Summary collapse

Methods inherited from Tag

#add_class, #collection_class, #collection_name, #head?, #table

Constructor Details

#initialize(parent, record = nil, options = {}) {|[self, record].compact| ... } ⇒ Row

Returns a new instance of Row.

Yields:

  • ([self, record].compact)


8
9
10
11
12
13
14
# File 'lib/simple_table/row.rb', line 8

def initialize(parent, record = nil, options = {}, &block)
  @parent = parent
  @options = options
  @cells = []

  yield(*[self, record].compact) if block_given?
end

Instance Attribute Details

#cellsObject (readonly)

Returns the value of attribute cells.



6
7
8
# File 'lib/simple_table/row.rb', line 6

def cells
  @cells
end

Instance Method Details

#cell(*contents) ⇒ Object



16
17
18
19
20
21
22
23
24
25
# File 'lib/simple_table/row.rb', line 16

def cell(*contents)
  options = contents.last.is_a?(Hash) ? contents.pop : {}
  if parent.is_a?(Body)
    add_class!(options, current_column_class)
    add_header!(options, current_column_id)
  end
  contents.each do |content|
    cells << Cell.new(self, content, options)
  end
end

#renderObject



27
28
29
# File 'lib/simple_table/row.rb', line 27

def render
  super(cells.map(&:render))
end