Class: Liquid::TableRow

Inherits:
Block show all
Defined in:
lib/liquid/htmltags.rb

Constant Summary collapse

Syntax =
/(\w+)\s+in\s+(#{QuotedFragment}+)/o

Constants inherited from Block

Block::ContentOfVariable, Block::FullToken, Block::IsTag, Block::IsVariable

Instance Attribute Summary

Attributes inherited from Tag

#context, #nodelist

Instance Method Summary collapse

Methods inherited from Block

#block_delimiter, #block_name, #create_variable, #end_tag, #parse, #unknown_tag

Methods inherited from Tag

#name, #parse

Constructor Details

#initialize(tag_name, markup, tokens, context) ⇒ TableRow

Returns a new instance of TableRow.



5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/liquid/htmltags.rb', line 5

def initialize(tag_name, markup, tokens, context)
  if markup =~ Syntax
    @variable_name = $1
    @collection_name = $2
    @attributes = {}
    markup.scan(TagAttributes) do |key, value|
      @attributes[key] = value
    end
  else
    raise SyntaxError.new("Syntax Error in 'table_row loop' - Valid syntax: table_row [item] in [collection] cols=3")
  end

  super
end

Instance Method Details

#render(context) ⇒ Object



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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/liquid/htmltags.rb', line 20

def render(context)
  collection = context[@collection_name] or return ''

  from = @attributes['offset'] ? context[@attributes['offset']].to_i : 0
  to = @attributes['limit'] ? from + context[@attributes['limit']].to_i : nil

  collection = Utils.slice_collection_using_each(collection, from, to)

  length = collection.length

  cols = context[@attributes['cols']].to_i

  row = 1
  col = 0

  result = "<tr class=\"row1\">\n"
  context.stack do

    collection.each_with_index do |item, index|
      context[@variable_name] = item
      context['tablerowloop'] = {
        'length'  => length,
        'index'   => index + 1,
        'index0'  => index,
        'col'     => col + 1,
        'col0'    => col,
        'index0'  => index,
        'rindex'  => length - index,
        'rindex0' => length - index - 1,
        'first'   => (index == 0),
        'last'    => (index == length - 1),
        'col_first' => (col == 0),
        'col_last'  => (col == cols - 1)
      }


      col += 1

      result << "<td class=\"col#{col}\">" << render_all(@nodelist, context) << '</td>'

      if col == cols and not (index == length - 1)
        col  = 0
        row += 1
        result << "</tr>\n<tr class=\"row#{row}\">"
      end

    end
  end
  result << "</tr>\n"
  result
end