Class: Liquid::Cycle
Overview
Cycle is usually used within a loop to alternate between values, like colors or DOM classes.
{% for item in items %}
<div class="{% cycle 'red', 'green', 'blue' %}"> {{ item }} </div>
{% end %}
<div class="red"> Item one </div>
<div class="green"> Item two </div>
<div class="blue"> Item three </div>
<div class="red"> Item four </div>
<div class="green"> Item five</div>
Constant Summary collapse
- SimpleSyntax =
/^#{QuotedFragment}+/
- NamedSyntax =
/^(#{QuotedFragment})\s*\:\s*(.*)/
Instance Attribute Summary
Attributes inherited from Tag
Instance Method Summary collapse
-
#initialize(tag_name, markup, tokens) ⇒ Cycle
constructor
A new instance of Cycle.
- #render(context) ⇒ Object
Methods inherited from Tag
Constructor Details
#initialize(tag_name, markup, tokens) ⇒ Cycle
Returns a new instance of Cycle.
19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/liquid/tags/cycle.rb', line 19 def initialize(tag_name, markup, tokens) case markup when NamedSyntax @variables = variables_from_string($2) @name = $1 when SimpleSyntax @variables = variables_from_string(markup) @name = "'#{@variables.to_s}'" else raise SyntaxError.new("Syntax Error in 'cycle' - Valid syntax: cycle [name :] var [, var2, var3 ...]") end super end |
Instance Method Details
#render(context) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/liquid/tags/cycle.rb', line 33 def render(context) context.registers[:cycle] ||= Hash.new(0) context.stack do key = context[@name] iteration = context.registers[:cycle][key] result = context[@variables[iteration]] iteration += 1 iteration = 0 if iteration >= @variables.size context.registers[:cycle][key] = iteration result end end |