Class: Aureus::Components::Row
Instance Method Summary
collapse
Methods inherited from Renderable
#compact, #compact_render, #content_tag, #init
Constructor Details
#initialize(&block) ⇒ Row
Returns a new instance of Row.
7
8
9
10
11
|
# File 'lib/aureus/components/row.rb', line 7
def initialize &block
init_haml_helpers
@columns = Array.new
@content = capture_haml self, &block
end
|
Instance Method Details
#column(width, &block) ⇒ Object
13
14
15
|
# File 'lib/aureus/components/row.rb', line 13
def column width, &block
@columns << RowColumn.new(width,capture_haml(&block))
end
|
#divider ⇒ Object
21
22
23
|
# File 'lib/aureus/components/row.rb', line 21
def divider
tag 'hr'
end
|
#render ⇒ Object
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
|
# File 'lib/aureus/components/row.rb', line 25
def render
if @columns.empty?
content_tag 'div', @content, class: 'row'
elsif @columns.length == 1
content_tag 'div', @columns.first.content, class: 'row'
else
total_width = @columns.inject 0 do |sum, n|
sum + n.width
end
out = String.new.html_safe
@columns.each_with_index do |c,i|
left = 0.5
right = 0.5
width = (100.0 / total_width * c.width).round
if i == 0
left = 0
width -= 0.5
elsif i == @columns.length-1
right = 0
width -= 0.5
else
width -= 1
end
out += content_tag 'div', c.render, class: :column, style: "width: #{width}%; margin-left: #{left}%; margin-right: #{right}%"
end
content_tag 'div', out, class: 'row'
end
end
|
#space(width) ⇒ Object
17
18
19
|
# File 'lib/aureus/components/row.rb', line 17
def space width
@columns << RowColumn.new(width,'')
end
|